50 lines
1.2 KiB
Kotlin
50 lines
1.2 KiB
Kotlin
/*
|
|
* SPDX-FileCopyrightText: 2023 The LineageOS Project
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
plugins {
|
|
id("com.android.application")
|
|
id("org.jetbrains.kotlin.android")
|
|
}
|
|
|
|
android {
|
|
compileSdk = 33
|
|
namespace = "com.google.android.apps.googlecamera.fishfood"
|
|
|
|
defaultConfig {
|
|
applicationId = "com.google.android.apps.googlecamera.fishfood"
|
|
minSdk = 26
|
|
targetSdk = 33
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
getByName("release") {
|
|
// Enables code shrinking, obfuscation, and optimization.
|
|
isMinifyEnabled = true
|
|
|
|
// Enables resource shrinking.
|
|
isShrinkResources = true
|
|
|
|
// Includes the default ProGuard rules files.
|
|
setProguardFiles(
|
|
listOf(
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
"proguard-rules.pro"
|
|
)
|
|
)
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|