ComunicAndroid/app/build.gradle

53 lines
2.1 KiB
Groovy
Raw Normal View History

2017-10-29 13:52:15 +00:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "org.communiquons.android.comunic.client"
minSdkVersion 21
targetSdkVersion 26
2018-05-01 08:13:13 +00:00
versionCode 5
versionName "1.4"
2017-10-29 13:52:15 +00:00
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
2017-10-31 08:48:28 +00:00
debug {
//Connexion to the internal API of Comunic
2017-10-31 08:48:28 +00:00
buildConfigField "String", "api_url", "\"http://devweb.local/comunic/api/\""
2018-01-02 16:54:51 +00:00
buildConfigField "String", "api_service_name", "\"ComunicAndroid\""
buildConfigField "String", "api_service_token", "\"5eQ8WGAeDTTyY\""
2018-04-13 15:11:23 +00:00
//Connexion to Crash Reporter
buildConfigField "String", "crash_reporter_url", "\"http://devweb.local/CrashReporterWeb/project/api/v1/push\""
buildConfigField "String", "crash_reporter_key", "\"KSyqOzkfJasDTxE0wrXYnUPl8dV1veBc\""
2017-10-31 08:48:28 +00:00
}
2017-10-29 13:52:15 +00:00
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2018-01-05 10:13:54 +00:00
//Connexion to the web API of Comunic
buildConfigField "String", "api_url", "\"https://api.communiquons.org/\""
buildConfigField "String", "api_service_name", "\"ComunicAndroid\""
buildConfigField "String", "api_service_token", "\"cWHlmMS5A1\""
2018-04-13 15:11:23 +00:00
//Connexion to Crash Reporter
buildConfigField "String", "crash_reporter_url", "\"https://crashreporter.communiquons.org/api/v1/push\""
buildConfigField "String", "crash_reporter_key", "\"z38jtULRuKHb2BOyvG4VTXDhn9gwelZ1\""
2017-10-29 13:52:15 +00:00
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
2017-10-30 10:38:39 +00:00
compile 'com.android.support:design:26.+'
2017-10-29 13:52:15 +00:00
testCompile 'junit:junit:4.12'
}