mirror of
https://github.com/flutter/flutter.git
synced 2025-06-03 00:51:18 +00:00
19 lines
449 B
Groovy
19 lines
449 B
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 27
|
|
defaultConfig {
|
|
applicationId "io.flutter.add2app"
|
|
minSdkVersion 16
|
|
targetSdkVersion 27
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':flutter')
|
|
implementation 'com.android.support:appcompat-v7:27.1.1'
|
|
}
|