2017-07-27 19:31:24 +02:00
|
|
|
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"
|
2017-07-27 19:31:24 +02:00
|
|
|
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-01-07 08:20:12 +01:00
|
|
|
versionCode 102
|
|
|
|
versionName "1.7.2"
|
2017-07-27 19:31:24 +02:00
|
|
|
}
|
2017-10-26 16:19:56 +02:00
|
|
|
flavorDimensions "default"
|
2017-07-27 19:31:24 +02:00
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
2018-01-03 15:25:35 +01:00
|
|
|
debug {
|
|
|
|
pseudoLocalesEnabled true
|
|
|
|
}
|
2017-07-27 19:31:24 +02:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
2017-07-27 19:31:24 +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'
|
2017-12-25 12:06:35 +01:00
|
|
|
implementation 'com.github.bumptech.glide:glide:4.4.0'
|
|
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.4.0'
|
2017-12-02 08:39:01 +01:00
|
|
|
implementation 'com.evernote:android-job:1.2.1'
|
2017-10-27 20:00:04 +02:00
|
|
|
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'
|
2017-12-03 14:17:57 +01:00
|
|
|
implementation 'com.github.stom79:mytransl:1.2'
|
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'
|
2017-07-27 19:31:24 +02:00
|
|
|
}
|