2017-07-27 19:31:24 +02:00
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
|
|
|
|
android {
|
2017-10-01 10:32:51 +02:00
|
|
|
compileSdkVersion 26
|
|
|
|
buildToolsVersion "26.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-10-01 10:32:51 +02:00
|
|
|
targetSdkVersion 26
|
2017-11-04 08:22:13 +01:00
|
|
|
versionCode 67
|
|
|
|
versionName "1.5.7"
|
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'
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
2017-07-27 19:31:24 +02:00
|
|
|
}
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
maven { url "https://maven.google.com"}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
2017-10-27 20:00:04 +02:00
|
|
|
implementation 'com.android.support:appcompat-v7:26.1.0'
|
|
|
|
implementation 'com.android.support:design:26.1.0'
|
|
|
|
implementation 'com.android.support:support-v4:26.1.0'
|
|
|
|
implementation 'com.android.support:recyclerview-v7:26.1.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-01 13:27:40 +01:00
|
|
|
implementation 'com.github.stom79:country-picker-android:1.2.0-beta-1'
|
2017-10-27 20:00:04 +02:00
|
|
|
safetynetImplementation 'com.google.android.gms:play-services-safetynet:11.4.2'
|
|
|
|
safetynetImplementation 'io.github.kobakei:ratethisapp:1.2.0'
|
2017-07-27 19:31:24 +02:00
|
|
|
}
|