1apply plugin: 'com.android.application' 2 3android { 4 compileSdkVersion 28 5 6 defaultConfig { 7 applicationId "com.example.android.shortcutsample" 8 minSdkVersion 25 9 targetSdkVersion 28 10 } 11 12 compileOptions { 13 sourceCompatibility JavaVersion.VERSION_1_8 14 targetCompatibility JavaVersion.VERSION_1_8 15 } 16 17 buildTypes { 18 release { 19 minifyEnabled false 20 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 21 } 22 } 23} 24