ComunicAndroid/app/build.gradle

40 lines
1.3 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
versionCode 1
versionName "1.0"
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/\""
buildConfigField "String", "api_service_name", "\"testService\""
buildConfigField "String", "api_service_token", "\"testPasswd\""
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'
}
}
}
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'
}