1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/android/app/build.gradle

112 lines
2.8 KiB
Groovy
Raw Normal View History

2019-04-21 08:34:27 +00:00
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2019-06-24 16:28:11 +00:00
// To sign packages
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
2019-04-21 08:34:27 +00:00
android {
2021-02-07 16:09:08 +00:00
compileSdkVersion 30
2019-04-21 08:34:27 +00:00
2020-04-19 13:15:07 +00:00
compileOptions {
// Required to use WebRTC
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2019-04-21 08:34:27 +00:00
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
applicationId "org.communiquons.comunic"
2021-02-07 16:09:08 +00:00
minSdkVersion 21
targetSdkVersion 30
2019-04-21 08:34:27 +00:00
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2019-04-21 08:34:27 +00:00
}
2019-06-24 16:28:11 +00:00
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
2019-04-21 08:34:27 +00:00
buildTypes {
release {
2019-06-24 16:28:11 +00:00
signingConfig signingConfigs.release
2020-04-23 15:59:11 +00:00
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2019-04-21 08:34:27 +00:00
}
}
2019-06-10 08:19:01 +00:00
flavorDimensions "version"
productFlavors {
stable {
}
beta {
applicationId "org.communiquons.beta"
}
2021-04-23 10:13:39 +00:00
forez {
applicationId "org.communiquons.forez"
}
2019-06-10 08:19:01 +00:00
}
2020-04-23 15:59:11 +00:00
packagingOptions {
exclude 'META-INF/proguard/androidx-annotations.pro'
}
2019-04-21 08:34:27 +00:00
}
flutter {
source '../..'
}
dependencies {
2021-04-14 16:34:03 +00:00
implementation 'com.neovisionaries:nv-websocket-client:2.14'
2019-04-21 08:34:27 +00:00
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
2020-03-24 13:37:00 +00:00
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
2019-04-21 08:34:27 +00:00
}
2021-04-15 11:34:49 +00:00
apply plugin: 'com.google.gms.google-services'