| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- apply plugin: 'com.android.application'
- apply plugin: 'kotlin-android'
- apply from: "../flutter.gradle"
- android {
- compileSdkVersion 29
- buildToolsVersion "29.0.3"
- defaultConfig {
- minSdkVersion 24
- targetSdkVersion 29
- applicationId "app.yakka.fluroexample"
- versionCode 1
- versionName "1.6.0"
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- 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
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- // kotlin
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.61"
- // google
- 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'
- // testing
- androidTestImplementation 'androidx.annotation:annotation:1.1.0'
- androidTestImplementation 'androidx.test.ext:junit:1.1.1'
- androidTestImplementation 'androidx.test:rules:1.2.0'
- }
|