syncthing-android/build.gradle

92 lines
2.5 KiB
Groovy
Raw Normal View History

2014-05-12 16:54:26 +00:00
buildscript {
repositories {
jcenter()
}
dependencies {
2017-04-11 04:17:39 +00:00
classpath 'com.android.tools.build:gradle:2.3.1'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.14.0'
classpath 'com.github.triplet.gradle:play-publisher:1.2.0'
classpath 'me.tatarka:gradle-retrolambda:3.6.0'
}
2014-05-12 16:54:26 +00:00
}
2014-07-27 20:00:07 +00:00
apply plugin: 'com.android.application'
apply plugin: 'com.github.ben-manes.versions'
apply plugin: 'com.github.triplet.play'
2016-10-20 10:49:35 +00:00
apply plugin: 'me.tatarka.retrolambda'
2014-05-12 16:54:26 +00:00
repositories {
2015-11-10 22:24:02 +00:00
jcenter()
}
2016-09-27 01:38:40 +00:00
dependencies {
2017-04-11 04:17:39 +00:00
compile 'eu.chainfire:libsuperuser:1.0.0.201704021214'
compile 'com.android.support:design:25.3.1'
compile 'com.google.zxing:android-integration:3.3.0'
2016-12-12 06:25:29 +00:00
compile 'com.google.code.gson:gson:2.8.0'
2017-04-11 04:17:39 +00:00
compile 'org.mindrot:jbcrypt:0.4'
2016-12-12 06:25:29 +00:00
compile 'com.google.guava:guava:20.0'
2017-04-11 04:17:39 +00:00
compile 'com.annimon:stream:1.1.7'
compile 'com.android.volley:volley:1.0.0'
Added support for all versioning types in the app UI. Addressing #718 (#896) * Merge branch 'Fix718' Merged fixes for issues #718, added functionality for all the file versioning types in the app UI. * Basic theme is working * GOt dialog working with setREsult. * Addressed issues raised and fixed orientation change bug. Adressed issues radied by nutomic: - Changed the String concatenation so it uses String.format. - Made members variables private that were not previously private by mistake. - Changed name from FolderPathTextView to FolderPathTextViewFragment. - Fixed typo in NumberPickerFragment - Now uses TImeUnit for time conversion - Changed from DialogFragment to a dialog themed Activity inorder to have correct themeing. About the orientation change bug. When the dialog themed activity was open and the orientation was changed, it would cause the background activity(The FolderActivity) to recreate itself. In the process of recreating itself it would reset the mFolder variable and then reinitialise it in the OnApiChange listener. However the result from the Dialog was returned before the mFolder had been reinitialised and was still null, so inbetween the result being returned and the mFolder variable being reinitialised the new file versioning configuration had to be stored and then applied to the mFolder variable in the onApiChange listener. The file versioning configuration is temporarily stored in the mVersioning variable which is an instance of Folder.versioning. This error only occurred when using an Activity as a dialog and using the startActivityForResult method for initialisling the activity. Before when using a dialogfragment and an interface to callback to the parent activity, everything happend in the correct order. * Fixed versioning dialog lag. The initial updateFragmentView() is called in onCreate() and the fragment is only updated when a new file versioning type is selected. * Removed FolderPathTextViewFragment The fragment is removed, and a helper method has been added to FolderPickerActivity to create an intent to the the FolderPickerActivity for result.
2017-06-15 08:44:44 +00:00
compile 'com.android.support.constraint:constraint-layout:1.0.2'
androidTestCompile 'com.android.support.test:rules:0.5'
2017-04-11 04:17:39 +00:00
androidTestCompile 'com.android.support:support-annotations:25.3.1'
}
2014-05-12 16:54:26 +00:00
android {
2016-10-20 09:18:23 +00:00
compileSdkVersion 25
2016-12-16 07:26:30 +00:00
buildToolsVersion "25.0.2"
2016-10-21 07:57:20 +00:00
buildTypes.debug.applicationIdSuffix ".debug"
2016-12-17 14:26:06 +00:00
dataBinding.enabled = true
defaultConfig {
2015-06-28 15:43:43 +00:00
applicationId "com.nutomic.syncthingandroid"
minSdkVersion 11
2016-10-20 09:18:23 +00:00
targetSdkVersion 25
2017-05-30 07:59:42 +00:00
versionCode 4120
versionName "0.9.10"
testApplicationId 'com.nutomic.syncthingandroid.test'
2016-10-10 07:13:39 +00:00
testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2014-05-12 16:54:26 +00:00
}
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')
2016-02-25 13:49:35 +00:00
uploadImages = false
}
/**
* Some languages are not supported by Google Play, so we ignore them.
*/
task deleteUnsupportedPlayTranslations(type: Delete) {
delete 'src/main/play/en/'
delete 'src/main/play/da_DK'
delete 'src/main/play/el-EL'
delete 'src/main/play/es_EC'
delete 'src/main/play/es_MX'
delete 'src/main/play/fr_FR'
delete 'src/main/play/no_NO'
delete 'src/main/play/zh_TW'
delete 'src/main/play/zh_CN'
delete 'src/main/play/pt_BR'
delete 'src/main/play/pl_PL'
delete 'src/main/play/nb'
delete 'src/main/play/nn'
2016-04-23 15:37:28 +00:00
}