apply plugin: 'com.android.application' android { compileSdkVersion 28 compileOptions { sourceCompatibility 1.8 targetCompatibility 1.8 } defaultConfig { applicationId "org.communiquons.android.comunic.client" minSdkVersion 21 targetSdkVersion 28 versionCode 8 versionName "1.7" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { debug { //Connexion to the internal API of Comunic buildConfigField "String", "api_url", "\"http://devweb.local/comunic/api/\"" buildConfigField "String", "api_service_name", "\"ComunicAndroid\"" buildConfigField "String", "api_service_token", "\"5eQ8WGAeDTTyY\"" //Links to Comunic pages buildConfigField "String", "comunic_terms_url", "\"http://devweb.local:4000/about/terms/\"" //Connexion to Crash Reporter buildConfigField "String", "crash_reporter_url", "\"http://devweb.local/CrashReporterWeb/project/api/v1/push\"" buildConfigField "String", "crash_reporter_key", "\"KSyqOzkfJasDTxE0wrXYnUPl8dV1veBc\"" //Connexion to PDF viewer buildConfigField "String", "pdf_view_url", "\"http://devweb.local/pdfviewer/?file=\"" } release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' //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\"" //Links to Comunic pages buildConfigField "String", "comunic_terms_url", "\"https://about.comunic.io/about/terms/\"" //Connexion to Crash Reporter buildConfigField "String", "crash_reporter_url", "\"https://crashreporter.communiquons.org/api/v1/push\"" buildConfigField "String", "crash_reporter_key", "\"z38jtULRuKHb2BOyvG4VTXDhn9gwelZ1\"" //Connexion to PDF viewer buildConfigField "String", "pdf_view_url", "\"https://pdfviewer.communiquons.org/?file=\"" } } flavorDimensions "versions" productFlavors { // "Normal" version of the application normal { } // Version with video calls features videoCalls {} } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' implementation 'com.android.support:design:28.0.0' implementation 'com.android.support:preference-v7:28.0.0' implementation 'com.android.support:support-v4:28.0.0' // Library required to make video calls videoCallsImplementation 'com.squareup.okhttp3:okhttp:3.12.1' videoCallsImplementation 'org.whispersystems:webrtc-android:M71' //Test 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' }