2023-07-28 00:46:14 +00:00
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
id("org.jetbrains.kotlin.android")
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2023-08-10 14:13:45 +00:00
|
|
|
namespace = "com.example.satworth"
|
2023-07-28 00:46:14 +00:00
|
|
|
compileSdk = 33
|
|
|
|
|
|
|
|
defaultConfig {
|
2023-08-10 14:13:45 +00:00
|
|
|
applicationId = "com.example.satworth"
|
2023-07-28 00:46:14 +00:00
|
|
|
minSdk = 24
|
|
|
|
targetSdk = 33
|
2023-08-11 17:27:50 +00:00
|
|
|
versionCode = 6
|
|
|
|
versionName = "0.1.62"
|
2023-07-28 00:46:14 +00: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
|
|
|
|
}
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
2023-08-11 17:26:23 +00:00
|
|
|
implementation("androidx.core:core-ktx:1.10.1")
|
2023-07-28 00:46:14 +00:00
|
|
|
implementation("androidx.appcompat:appcompat:1.6.1")
|
2023-08-11 17:26:23 +00:00
|
|
|
implementation("com.google.android.material:material:1.9.0")
|
2023-07-28 00:46:14 +00:00
|
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
|
|
|
testImplementation("junit:junit:4.13.2")
|
|
|
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
|
|
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
|
|
}
|