git-touch-android-ios-app/android/app/build.gradle

64 lines
1.7 KiB
Groovy
Raw Normal View History

2018-04-18 14:38:28 +02: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.")
}
2018-12-27 15:31:02 +01:00
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
2018-04-18 14:38:28 +02:00
apply plugin: 'com.android.application'
2019-09-23 14:59:34 +02:00
apply plugin: 'kotlin-android'
2018-04-18 14:38:28 +02:00
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
2020-10-05 13:26:59 +02:00
compileSdkVersion 29
2018-04-18 14:38:28 +02:00
2019-09-23 14:59:34 +02:00
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
2018-04-18 14:38:28 +02:00
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "io.github.pd4d10.gittouch"
2018-04-18 14:38:28 +02:00
minSdkVersion 16
2020-10-05 13:26:59 +02:00
targetSdkVersion 29
2018-12-27 15:31:02 +01:00
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
2018-04-18 14:38:28 +02:00
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
2019-09-23 14:59:34 +02:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
2018-04-18 14:38:28 +02:00
}