android13/developers/samples/android/system/AppShortcuts/app/build.gradle

24 lines
528 B
Groovy
Raw Normal View History

2024-06-22 08:45:49 -04:00
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.android.shortcutsample"
minSdkVersion 25
targetSdkVersion 28
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}