-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
442 changed files
with
440 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,12 @@ | ||
[submodule "syncthing"] | ||
path = syncthing/src/github.com/syncthing/syncthing | ||
[submodule "ext/syncthing/src/github.com/syncthing/syncthing"] | ||
path = ext/syncthing/src/github.com/syncthing/syncthing | ||
url = https://github.com/syncthing/syncthing.git | ||
ignore = dirty | ||
[submodule "ext/golang/go"] | ||
path = ext/golang/go | ||
url = https://github.com/golang/go.git | ||
ignore = dirty | ||
[submodule "ext/golang/go1.4"] | ||
path = ext/golang/go1.4 | ||
url = https://github.com/golang/go.git | ||
ignore = dirty |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,109 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
|
||
buildscript { | ||
repositories { | ||
jcenter() | ||
|
||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:2.3.3' | ||
classpath 'me.tatarka:gradle-retrolambda:3.7.0' | ||
classpath 'com.github.triplet.gradle:play-publisher:1.2.0' | ||
classpath 'com.github.ben-manes:gradle-versions-plugin:0.15.0' | ||
classpath 'com.github.triplet.gradle:play-publisher:1.2.0' | ||
classpath 'me.tatarka:gradle-retrolambda:3.7.0' | ||
} | ||
} | ||
|
||
apply plugin: 'com.android.application' | ||
apply plugin: 'com.github.ben-manes.versions' | ||
apply plugin: 'com.github.triplet.play' | ||
apply plugin: 'me.tatarka.retrolambda' | ||
|
||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
repositories { | ||
jcenter() | ||
maven { | ||
url "https://maven.google.com" | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
jcenter() | ||
maven { | ||
url "https://maven.google.com" | ||
dependencies { | ||
compile 'eu.chainfire:libsuperuser:1.0.0.201704021214' | ||
compile 'com.android.support:design:26.1.0' | ||
compile 'com.google.zxing:android-integration:3.3.0' | ||
compile 'com.google.code.gson:gson:2.8.2' | ||
compile 'org.mindrot:jbcrypt:0.4' | ||
compile 'com.google.guava:guava:20.0' | ||
compile 'com.annimon:stream:1.1.9' | ||
compile 'com.android.volley:volley:1.0.0' | ||
compile 'com.android.support.constraint:constraint-layout:1.0.2' | ||
compile "com.google.dagger:dagger:2.11" | ||
annotationProcessor "com.google.dagger:dagger-compiler:2.11" | ||
androidTestCompile 'com.android.support.test:rules:1.0.1' | ||
androidTestCompile 'com.android.support:support-annotations:26.1.0' | ||
} | ||
|
||
android { | ||
compileSdkVersion 26 | ||
buildToolsVersion "26.0.2" | ||
buildTypes.debug.applicationIdSuffix ".debug" | ||
dataBinding.enabled = true | ||
|
||
playAccountConfigs { | ||
defaultAccountConfig { | ||
jsonFile = file('keys.json') | ||
} | ||
} | ||
defaultConfig { | ||
applicationId "com.nutomic.syncthingandroid" | ||
minSdkVersion 14 | ||
targetSdkVersion 26 | ||
versionCode 4126 | ||
versionName "0.9.16" | ||
testApplicationId 'com.nutomic.syncthingandroid.test' | ||
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner' | ||
playAccountConfig = playAccountConfigs.defaultAccountConfig | ||
} | ||
|
||
signingConfigs { | ||
release { | ||
storeFile file(RELEASE_STORE_FILE) | ||
storePassword System.getenv("SIGNING_PASSWORD") ?: "" | ||
keyAlias RELEASE_KEY_ALIAS | ||
keyPassword System.getenv("SIGNING_PASSWORD") ?: "" | ||
} | ||
} | ||
buildTypes { | ||
release { | ||
signingConfig signingConfigs.release | ||
} | ||
} | ||
|
||
compileOptions { | ||
sourceCompatibility JavaVersion.VERSION_1_8 | ||
targetCompatibility JavaVersion.VERSION_1_8 | ||
} | ||
} | ||
|
||
task buildNative(type: Exec) { | ||
outputs.upToDateWhen { false } | ||
executable = './make-all.bash' | ||
} | ||
|
||
task cleanNative(type: Delete) { | ||
delete 'src/main/jniLibs/' | ||
delete 'ext/syncthing/bin/' | ||
delete 'ext/syncthing/pkg/' | ||
} | ||
|
||
play { | ||
jsonFile = file('keys.json') | ||
uploadImages = false | ||
track = 'production' | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
/** | ||
* Some languages are not supported by Google Play, so we ignore them. | ||
*/ | ||
task deleteUnsupportedPlayTranslations(type: Delete) { | ||
delete 'src/main/play/nn' | ||
delete 'src/main/play/el-EL' | ||
delete 'src/main/play/nb' | ||
delete 'src/main/play/en/' | ||
} |
1 change: 1 addition & 0 deletions
1
ext/syncthing/src/github.com/syncthing/syncthing
File renamed without changes.
Oops, something went wrong.