fedilab-Android-App/app/build.gradle

55 lines
1.7 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
2017-11-08 17:37:50 +01:00
compileSdkVersion 27
2017-12-12 07:28:47 +01:00
buildToolsVersion "27.0.2"
defaultConfig {
applicationId "fr.gouv.etalab.mastodon"
2017-08-01 10:33:50 +02:00
minSdkVersion 15
2017-11-08 17:37:50 +01:00
targetSdkVersion 27
2018-02-18 18:43:39 +01:00
versionCode 114
versionName "1.8.2"
}
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
}
}
2017-08-26 17:53:13 +02:00
productFlavors {
2017-08-26 18:47:52 +02:00
fdroid {
2017-08-26 17:53:13 +02:00
}
2017-12-09 18:16:20 +01:00
playstore {
2017-08-26 17:53:13 +02:00
}
}
}
allprojects {
repositories {
maven { url "https://jitpack.io" }
maven { url "https://maven.google.com"}
}
}
dependencies {
2017-12-08 18:18:01 +01:00
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'
implementation 'com.android.support:support-v4:27.0.2'
implementation 'com.android.support:recyclerview-v7:27.0.2'
2018-01-16 18:07:26 +01:00
implementation 'com.github.bumptech.glide:glide:4.5.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.5.0'
implementation 'com.evernote:android-job:1.2.2'
implementation 'com.github.chrisbanes:PhotoView:2.0.0'
2017-11-05 17:53:16 +01:00
implementation 'com.github.stom79:country-picker-android:1.2.0'
implementation 'com.github.stom79:mytransl:1.4'
2017-12-09 18:16:20 +01:00
playstoreImplementation 'io.github.kobakei:ratethisapp:1.2.0'
2017-12-14 07:26:37 +01:00
implementation 'org.conscrypt:conscrypt-android:1.0.0.RC13'
2017-12-15 18:03:06 +01:00
implementation 'com.google.code.gson:gson:2.8.2'
implementation 'com.google.guava:guava:23.6-android'
implementation 'com.gongwen:swipeback:1.0.2'
2018-02-09 16:44:18 +01:00
implementation 'com.android.support:customtabs:27.0.2'
}