fedilab-Android-App/app/build.gradle

50 lines
1.5 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
2017-11-08 17:37:50 +01:00
compileSdkVersion 27
2017-11-19 14:20:44 +01:00
buildToolsVersion "27.0.1"
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
2017-12-09 14:59:05 +01:00
versionCode 86
versionName "1.6.5.1"
}
2017-10-26 16:19:56 +02:00
flavorDimensions "default"
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
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-08-26 18:47:52 +02:00
safetynet {
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'
2017-12-02 11:02:25 +01:00
implementation 'com.github.bumptech.glide:glide:4.3.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
2017-12-02 08:39:01 +01:00
implementation 'com.evernote:android-job:1.2.1'
implementation 'com.github.chrisbanes:PhotoView:2.0.0'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'org.jsoup:jsoup:1.10.3'
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-08 18:18:01 +01:00
safetynetImplementation 'com.google.android.gms:play-services-safetynet:11.6.2'
safetynetImplementation 'io.github.kobakei:ratethisapp:1.2.0'
}