fedilab-Android-App/app/build.gradle

144 lines
5.8 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
2019-08-03 10:35:04 +02:00
compileSdkVersion 29
2019-08-13 18:41:37 +02:00
buildToolsVersion "29.0.2"
defaultConfig {
2019-10-12 12:50:01 +02:00
minSdkVersion 19
2019-08-03 10:35:04 +02:00
targetSdkVersion 29
2019-12-08 18:52:22 +01:00
versionCode 343
versionName "2.27.1"
2018-12-11 19:17:14 +01:00
multiDexEnabled true
2019-05-05 19:01:07 +02:00
renderscriptTargetApi 28 as int
renderscriptSupportModeEnabled true
2019-11-08 18:53:57 +01:00
}
2018-12-11 19:27:21 +01:00
dexOptions {
javaMaxHeapSize "4g"
}
2017-10-26 16:19:56 +02:00
flavorDimensions "default"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
2018-01-03 15:25:35 +01:00
debug {
pseudoLocalesEnabled true
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2018-08-22 09:04:43 +02:00
lintOptions {
checkReleaseBuilds false
abortOnError false
}
2017-08-26 17:53:13 +02:00
productFlavors {
2017-08-26 18:47:52 +02:00
fdroid {
2019-05-18 11:10:30 +02:00
applicationId "fr.gouv.etalab.mastodon"
buildConfigField "boolean", "DONATIONS", "true"
2017-08-26 17:53:13 +02:00
}
2017-12-09 18:16:20 +01:00
playstore {
2019-05-18 11:10:30 +02:00
applicationId "app.fedilab.android"
buildConfigField "boolean", "DONATIONS", "false"
2017-08-26 17:53:13 +02:00
}
}
2019-01-08 18:11:40 +01:00
packagingOptions {
exclude 'META-INF/proguard/androidx-annotations.pro'
}
}
allprojects {
repositories {
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com"}
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
}
2019-12-14 10:16:10 +01:00
2019-12-14 14:18:46 +01:00
2019-12-14 10:16:10 +01:00
task copyAllReleaseNotes(type: Copy) {
from "$buildDir/../src/main/assets/changelogs/"
include "*.txt"
into "$buildDir/../../fastlane/metadata/android/en-US/changelogs/"
2019-12-14 16:40:04 +01:00
}
task gitPushReleaseNotes(type: Exec, dependsOn: 'copyAllReleaseNotes') {
2019-12-14 14:18:46 +01:00
['sh', '-c', "git add $buildDir/../../fastlane/metadata/android/en-US/changelogs/*"].execute().text.trim()
['sh', '-c', "git commit -m 'copy release notes'"].execute().text.trim()
['sh', '-c', "git push"].execute().text.trim()
}
2019-08-13 18:41:37 +02:00
ext.supportLibraryVersion = '29.0.2'
2019-07-22 23:03:58 +02:00
ext.glideLibraryVersion = '4.9.0'
2019-10-31 16:18:12 +01:00
ext.conscryptLibraryVersion = '2.2.1'
2019-11-13 15:59:50 +01:00
ext.evernoteLibraryVersion = '1.4.2'
ext.gsonLibraryVersion = '2.8.2'
ext.guavaLibraryVersion = '24.1-android'
2019-10-10 17:50:01 +02:00
ext.photoViewLibraryVersion = '2.3.0'
ext.ratethisappLibraryVersion = '1.2.0'
2019-06-06 15:42:24 +02:00
ext.uploadServiceVersion = "3.5.2"
2019-01-18 14:48:42 +01:00
ext.torrentstreamVersion = "2.5.0"
2019-01-16 15:06:21 +01:00
2019-06-12 08:05:36 +02:00
ext.netCipherVersion = "2.0.0-alpha1"
2019-07-19 21:52:04 +02:00
ext.acraVersion = "5.4.0"
dependencies {
2019-11-08 18:05:35 +01:00
implementation 'com.android.support:appcompat-v7:29.0.2'
2019-09-12 18:29:47 +02:00
implementation 'androidx.appcompat:appcompat:1.1.0'
2019-06-11 19:38:26 +02:00
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2019-11-27 18:25:42 +01:00
implementation 'androidx.recyclerview:recyclerview:1.1.0'
2019-06-11 19:38:26 +02:00
implementation 'androidx.browser:browser:1.0.0'
2019-11-27 18:25:42 +01:00
implementation 'androidx.exifinterface:exifinterface:1.1.0'
2019-06-11 19:38:26 +02:00
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation "com.github.bumptech.glide:glide:$glideLibraryVersion"
annotationProcessor "com.github.bumptech.glide:compiler:$glideLibraryVersion"
2019-06-11 19:38:26 +02:00
annotationProcessor 'com.android.support:support-annotations:28.0.0'
implementation "org.conscrypt:conscrypt-android:$conscryptLibraryVersion"
implementation "com.evernote:android-job:$evernoteLibraryVersion"
implementation "com.google.code.gson:gson:$gsonLibraryVersion"
implementation "com.google.guava:guava:$guavaLibraryVersion"
implementation "com.github.chrisbanes:PhotoView:$photoViewLibraryVersion"
2019-10-31 16:15:15 +01:00
implementation 'com.r0adkll:slidableactivity:2.1.0'
2018-06-08 20:45:47 +02:00
implementation 'com.github.stom79:country-picker-android:1.2.0'
2019-11-24 16:07:36 +01:00
implementation 'com.github.stom79:mytransl:2.0'
2019-11-06 17:24:38 +01:00
implementation 'com.github.stom79:SparkButton:1.0.13'
2018-10-13 15:59:15 +02:00
implementation "com.koushikdutta.async:androidasync:2.+"
2019-04-25 19:15:52 +02:00
implementation 'com.vanniktech:emoji-one:0.6.0'
2018-11-04 16:00:44 +01:00
implementation 'com.oguzdev:CircularFloatingActionMenu:1.0.2'
2018-11-24 18:56:12 +01:00
implementation 'com.github.franmontiel:LocaleChanger:0.9.2'
2019-08-20 09:55:39 +02:00
implementation 'com.github.GrenderG:Toasty:1.4.2'
2018-12-11 19:17:14 +01:00
implementation 'com.elconfidencial.bubbleshowcase:bubbleshowcase:1.3.1'
2019-06-11 19:38:26 +02:00
implementation 'androidx.multidex:multidex:2.0.1'
2019-10-31 16:15:15 +01:00
implementation 'com.google.android.exoplayer:exoplayer:2.10.6'
2019-01-25 11:41:39 +01:00
implementation 'org.apache.poi:poi:3.16'
2019-01-08 10:50:43 +01:00
implementation 'com.github.mabbas007:TagsEditText:1.0.5'
2019-02-14 17:46:38 +01:00
implementation "com.tonyodev.fetch2:fetch2:2.3.6"
2019-11-03 14:16:08 +01:00
implementation 'com.github.stom79:horizontalbargraph:1.6'
2019-05-05 19:01:07 +02:00
implementation 'jp.wasabeef:glide-transformations:4.0.0'
playstoreImplementation "io.github.kobakei:ratethisapp:$ratethisappLibraryVersion"
2019-08-04 11:22:49 +02:00
implementation 'ja.burhanrashid52:photoeditor:0.4.0'
2019-08-24 16:39:53 +02:00
api 'com.theartofdev.edmodo:android-image-cropper:2.8.+'
2019-06-12 08:05:36 +02:00
2019-06-12 10:04:52 +02:00
implementation "net.gotev:uploadservice:$uploadServiceVersion"
implementation "net.gotev:uploadservice-okhttp:$uploadServiceVersion"
2019-06-12 08:05:36 +02:00
implementation "info.guardianproject.netcipher:netcipher:$netCipherVersion"
implementation "info.guardianproject.netcipher:netcipher-okhttp3:$netCipherVersion"
2019-06-26 11:00:59 +02:00
implementation 'com.github.adrielcafe:AndroidAudioRecorder:0.3.0'
implementation 'yogesh.firzen:MukkiyaSevaigal:1.0.6'
2019-09-21 10:45:17 +02:00
implementation 'com.iceteck.silicompressorr:silicompressor:2.2.2'
2019-07-19 15:55:28 +02:00
implementation "ch.acra:acra-mail:$acraVersion"
implementation "ch.acra:acra-limiter:$acraVersion"
implementation "ch.acra:acra-notification:$acraVersion"
2019-07-23 11:15:35 +02:00
implementation 'com.github.stom79:Android-WYSIWYG-Editor:3.2.1'
2019-07-20 17:44:44 +02:00
implementation 'com.github.duanhong169:colorpicker:1.1.6'
2019-09-12 18:29:47 +02:00
implementation 'com.github.penfeizhou.android.animation:apng:1.1.0'
implementation 'com.github.penfeizhou.android.animation:gif:1.1.0'
2019-07-28 15:55:25 +02:00
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
2019-09-28 10:16:47 +02:00
implementation 'com.github.smarteist:autoimageslider:1.3.2'
2019-08-20 14:50:24 +02:00
//debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.0-beta-2'
2019-11-08 18:05:35 +01:00
implementation 'com.jaredrummler:cyanea:1.0.2'
}