fluro/example/android/app/build.gradle

42 lines
1.1 KiB
Groovy
Raw Normal View History

2017-05-14 00:28:28 -04:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
2018-03-23 11:53:23 -04:00
apply from: "../flutter.gradle"
2017-05-14 00:28:28 -04:00
android {
2020-02-08 11:34:09 -05:00
compileSdkVersion 29
buildToolsVersion "29.0.3"
2018-03-23 11:53:23 -04:00
defaultConfig {
2020-02-08 11:34:09 -05:00
minSdkVersion 24
targetSdkVersion 29
applicationId "app.yakka.fluroexample"
versionCode 1
versionName "1.6.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2018-03-23 11:53:23 -04:00
}
lintOptions {
disable 'InvalidPackage'
}
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
}
}
2017-05-14 00:28:28 -04:00
}
dependencies {
2019-01-24 12:27:12 -05:00
implementation fileTree(dir: 'libs', include: ['*.jar'])
2018-03-23 11:53:23 -04:00
// kotlin
2020-02-08 11:34:09 -05:00
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61"
2018-03-23 11:53:23 -04:00
// google
2020-02-08 11:34:09 -05:00
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2018-03-23 11:53:23 -04:00
// testing
2020-02-08 11:34:09 -05:00
androidTestImplementation 'androidx.annotation:annotation:1.1.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test:rules:1.2.0'
}