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