info_tren/android/app/build.gradle

81 lines
2.2 KiB
Groovy
Raw Normal View History

2019-07-23 16:56:51 +03: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 plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2022-08-03 03:51:58 +03:00
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}
2019-07-23 16:56:51 +03:00
android {
compileSdkVersion 31
2019-07-23 16:56:51 +03:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
2019-07-23 16:56:51 +03:00
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
2019-07-23 16:56:51 +03:00
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
2022-08-03 02:23:22 +03:00
applicationId "ro.dcdev.infotren"
2019-07-23 16:56:51 +03:00
minSdkVersion 16
targetSdkVersion 31
2019-07-23 16:56:51 +03:00
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}
2022-08-03 03:51:58 +03:00
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
2019-07-23 16:56:51 +03:00
buildTypes {
release {
2022-08-03 03:51:58 +03:00
signingConfig signingConfigs.release
2019-07-23 16:56:51 +03:00
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}