build.gradle 603 Bytes
Newer Older
Ian Hickson's avatar
Ian Hickson committed
1 2 3 4
// 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.

5 6 7
apply plugin: 'com.android.application'

android {
8
    compileSdkVersion 31
9 10

    compileOptions {
11 12
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
13 14 15 16 17
    }

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

dependencies {
    implementation project(':flutter')
}