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

99 lines
2.5 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 {
2020-03-24 13:37:00 +00:00
compileSdkVersion 29
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 {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "org.communiquons.comunic"
2020-04-19 13:15:07 +00:00
minSdkVersion 18
2020-03-24 12:17:51 +00:00
targetSdkVersion 29
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
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"
}
}
2019-04-21 08:34:27 +00:00
}
flutter {
source '../..'
}
dependencies {
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
}