build.gradle 619 Bytes
Newer Older
1 2 3 4 5 6 7
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

apply plugin: 'com.android.application'

android {
8
    compileSdkVersion 30
9 10 11 12 13 14 15 16 17

    compileOptions {
        sourceCompatibility 1.8
        targetCompatibility 1.8
    }

    defaultConfig {
        applicationId "io.flutter.add2app"
        minSdkVersion 16
18
        targetSdkVersion 30
19 20 21 22 23 24 25 26 27
        versionCode 1
        versionName "1.0"
    }
}

dependencies {
    implementation project(':flutter')
    implementation 'androidx.appcompat:appcompat:1.1.0'
}