build.gradle 542 Bytes
Newer Older
1 2 3
apply plugin: 'com.android.application'

android {
4
    compileSdkVersion 28
5 6 7 8 9 10

    compileOptions {
        sourceCompatibility 1.8
        targetCompatibility 1.8
    }

11 12 13
    defaultConfig {
        applicationId "io.flutter.add2app"
        minSdkVersion 16
14
        targetSdkVersion 28
15 16 17 18 19 20 21 22 23 24
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
}

dependencies {
    implementation project(':flutter')
    implementation 'com.android.support:appcompat-v7:27.1.1'
}