mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.3 KiB
43 lines
1.3 KiB
5 years ago
|
apply plugin: 'com.android.application'
|
||
|
|
||
|
apply plugin: 'kotlin-android'
|
||
|
|
||
|
apply plugin: 'kotlin-android-extensions'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 28
|
||
|
defaultConfig {
|
||
5 years ago
|
applicationId "dev.flutter.example.androidfullscreen"
|
||
5 years ago
|
minSdkVersion 19
|
||
|
targetSdkVersion 28
|
||
|
versionCode 1
|
||
|
versionName "1.0"
|
||
5 years ago
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||
5 years ago
|
multiDexEnabled true
|
||
5 years ago
|
}
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
}
|
||
|
}
|
||
5 years ago
|
compileOptions {
|
||
|
sourceCompatibility 1.8
|
||
|
targetCompatibility 1.8
|
||
|
}
|
||
5 years ago
|
}
|
||
|
|
||
|
dependencies {
|
||
5 years ago
|
implementation 'androidx.multidex:multidex:2.0.1'
|
||
5 years ago
|
implementation project(':flutter')
|
||
5 years ago
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||
5 years ago
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
||
|
implementation 'androidx.core:core-ktx:1.1.0'
|
||
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
||
5 years ago
|
testImplementation 'junit:junit:4.12'
|
||
5 years ago
|
androidTestImplementation project(':espresso')
|
||
|
androidTestImplementation "com.google.truth:truth:0.42"
|
||
|
androidTestImplementation 'androidx.test:runner:1.1.1'
|
||
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
|
||
|
api 'androidx.test:core:1.2.0'
|
||
5 years ago
|
}
|