• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'com.android.application'
2
3android {
4    compileSdkVersion 28
5    compileOptions {
6        sourceCompatibility JavaVersion.VERSION_1_8
7        targetCompatibility JavaVersion.VERSION_1_8
8    }
9    defaultConfig {
10        applicationId "dev.flutter.scenarios"
11        minSdkVersion 16
12        targetSdkVersion 28
13        versionCode 1
14        versionName "1.0"
15        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
16    }
17    buildTypes {
18        release {
19            minifyEnabled false
20            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
21        }
22    }
23}
24
25dependencies {
26    implementation fileTree(dir: 'libs', include: ['*.jar'])
27    implementation 'com.android.support:appcompat-v7:28.0.0'
28    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
29    implementation 'com.android.support:design:28.0.0'
30    implementation 'android.arch.lifecycle:common-java8:1.1.0'
31    testImplementation 'junit:junit:4.12'
32    androidTestImplementation 'com.android.support.test:runner:1.0.2'
33    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
34}
35