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

127 lines
3.4 KiB
Groovy
Raw Permalink 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'
2022-03-10 16:28:21 +00:00
apply plugin: 'kotlin-android'
2019-04-21 08:34:27 +00:00
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 {
compileSdkVersion flutter.compileSdkVersion
2019-04-21 08:34:27 +00:00
2020-04-19 13:15:07 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
2022-03-10 16:28:21 +00:00
}
kotlinOptions {
jvmTarget = '1.8'
}
2020-04-19 13:15:07 +00:00
2022-03-10 16:28:21 +00:00
sourceSets {
main.java.srcDirs += 'src/main/java'
2020-04-19 13:15:07 +00:00
}
2022-03-10 16:28:21 +00:00
2019-04-21 08:34:27 +00:00
lintOptions {
disable 'InvalidPackage'
2021-12-28 18:03:37 +00:00
// TODO remove this fix to use Gradle plugin 4 ASAP
checkReleaseBuilds false
2019-04-21 08:34:27 +00:00
}
defaultConfig {
applicationId "org.communiquons.comunic"
2022-06-11 13:04:11 +00:00
minSdkVersion 23
targetSdkVersion flutter.targetSdkVersion
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']
}
forezRelease {
keyAlias keystoreProperties['forezKeyAlias']
keyPassword keystoreProperties['forezKeyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
2019-06-24 16:28:11 +00:00
}
2019-04-21 08:34:27 +00:00
buildTypes {
release {
2020-04-23 15:59:11 +00:00
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 {
signingConfig signingConfigs.release
2019-06-10 08:19:01 +00:00
}
beta {
signingConfig signingConfigs.release
2019-06-10 08:19:01 +00:00
applicationId "org.communiquons.beta"
}
2021-04-23 10:13:39 +00:00
forez {
signingConfig signingConfigs.forezRelease
2021-04-23 10:13:39 +00:00
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 {
2022-03-10 16:28:21 +00:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2021-04-14 16:34:03 +00:00
implementation 'com.neovisionaries:nv-websocket-client:2.14'
2021-12-28 18:03:37 +00:00
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
2019-04-21 08:34:27 +00:00
}
2021-04-15 11:34:49 +00:00
apply plugin: 'com.google.gms.google-services'