ComunicAndroid/app/build.gradle

65 lines
2.7 KiB
Groovy
Raw Normal View History

2017-10-29 13:52:15 +00:00
apply plugin: 'com.android.application'
android {
2018-07-30 13:17:56 +00:00
compileSdkVersion 28
2017-10-29 13:52:15 +00:00
defaultConfig {
applicationId "org.communiquons.android.comunic.client"
minSdkVersion 21
2018-07-30 13:17:56 +00:00
targetSdkVersion 28
2018-08-30 15:44:53 +00:00
versionCode 7
versionName "1.6"
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
2018-08-07 08:56:25 +00:00
//Links to Comunic pages
buildConfigField "String", "comunic_terms_url", "\"http://devweb.local:4000/about/terms/\""
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\""
2018-07-19 06:00:59 +00:00
//Connexion to PDF viewer
buildConfigField "String", "pdf_view_url", "\"http://devweb.local/pdfviewer/?file=\""
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
2018-08-20 15:48:08 +00:00
//Links to Comunic pages
buildConfigField "String", "comunic_terms_url", "\"https://about.comunic.io/about/terms/\""
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\""
2018-08-20 15:48:08 +00:00
//Connexion to PDF viewer
buildConfigField "String", "pdf_view_url", "\"https://pdfviewer.communiquons.org/?file=\""
2017-10-29 13:52:15 +00:00
}
}
}
dependencies {
2018-07-30 13:17:56 +00:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2018-08-21 07:08:33 +00:00
implementation 'com.android.support:appcompat-v7:28.0.0-rc01'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation 'com.android.support:design:28.0.0-rc01'
implementation 'com.android.support:support-v4:28.0.0-rc01'
2018-07-30 13:17:56 +00:00
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
2017-10-29 13:52:15 +00:00
}