fedilab-Android-App/app/build.gradle

50 lines
1.6 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
android {
2017-11-08 17:37:50 +01:00
compileSdkVersion 27
buildToolsVersion "27.0.0"
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-11-08 17:50:14 +01:00
versionCode 69
versionName "1.5.9"
}
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-11-08 17:37:50 +01:00
implementation 'com.android.support:appcompat-v7:27.0.0'
implementation 'com.android.support:design:27.0.0'
implementation 'com.android.support:support-v4:27.0.0'
implementation 'com.android.support:recyclerview-v7:27.0.0'
implementation 'com.loopj.android:android-async-http:1.4.9'
implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
implementation 'com.evernote:android-job:1.2.0'
implementation 'com.github.chrisbanes:PhotoView:2.0.0'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'org.jsoup:jsoup:1.10.3'
implementation 'de.hdodenhof:circleimageview:2.2.0'
2017-11-05 17:53:16 +01:00
implementation 'com.github.stom79:country-picker-android:1.2.0'
safetynetImplementation 'com.google.android.gms:play-services-safetynet:11.4.2'
safetynetImplementation 'io.github.kobakei:ratethisapp:1.2.0'
}