mirror of
https://github.com/iruletheworldmo/strawberry.git
synced 2024-08-13 23:12:55 -05:00
47 lines
1.1 KiB
Text
47 lines
1.1 KiB
Text
|
plugins {
|
||
|
alias(libs.plugins.android.application)
|
||
|
}
|
||
|
|
||
|
android {
|
||
|
namespace = "straw.berry"
|
||
|
compileSdk = 34
|
||
|
|
||
|
defaultConfig {
|
||
|
applicationId = "straw.berry"
|
||
|
minSdk = 24
|
||
|
targetSdk = 34
|
||
|
versionCode = 1
|
||
|
versionName = "1.0"
|
||
|
|
||
|
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)
|
||
|
}
|