2024-08-10 02:23:51 -05:00
|
|
|
plugins {
|
|
|
|
alias(libs.plugins.android.application)
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
namespace = "straw.berry"
|
|
|
|
compileSdk = 34
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "straw.berry"
|
|
|
|
minSdk = 24
|
|
|
|
targetSdk = 34
|
2024-08-10 02:53:13 -05:00
|
|
|
versionCode = 8142
|
|
|
|
versionName = "81.42"
|
2024-08-10 02:23:51 -05:00
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
isMinifyEnabled = false
|
|
|
|
proguardFiles(
|
|
|
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
|
|
|
"proguard-rules.pro"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
buildFeatures {
|
|
|
|
viewBinding = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
|
|
|
implementation(libs.appcompat)
|
|
|
|
implementation(libs.material)
|
|
|
|
implementation(libs.constraintlayout)
|
|
|
|
implementation(libs.navigation.fragment)
|
|
|
|
implementation(libs.navigation.ui)
|
|
|
|
testImplementation(libs.junit)
|
|
|
|
androidTestImplementation(libs.ext.junit)
|
|
|
|
androidTestImplementation(libs.espresso.core)
|
|
|
|
}
|