Update dependencies, buildTypes & version.
This commit is contained in:
parent
f663b00e3e
commit
b9aad61d5f
2 changed files with 11 additions and 15 deletions
|
|
@ -18,20 +18,28 @@ android {
|
||||||
applicationId = "com.pixelized.chocolate"
|
applicationId = "com.pixelized.chocolate"
|
||||||
minSdk = 26
|
minSdk = 26
|
||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = 1
|
versionCode = 2
|
||||||
versionName = "1.0"
|
versionName = "1.0.1"
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
debug {
|
||||||
|
applicationIdSuffix = ".debug"
|
||||||
isMinifyEnabled = false
|
isMinifyEnabled = false
|
||||||
proguardFiles(
|
proguardFiles(
|
||||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
"proguard-rules.pro"
|
"proguard-rules.pro"
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
release {
|
||||||
|
isMinifyEnabled = true
|
||||||
|
proguardFiles(
|
||||||
|
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||||
|
"proguard-rules.pro"
|
||||||
|
)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|
@ -66,12 +74,6 @@ dependencies {
|
||||||
implementation("androidx.compose.material3:material3-window-size-class:1.4.0")
|
implementation("androidx.compose.material3:material3-window-size-class:1.4.0")
|
||||||
implementation("androidx.compose.material3.adaptive:adaptive-layout:1.1.0")
|
implementation("androidx.compose.material3.adaptive:adaptive-layout:1.1.0")
|
||||||
|
|
||||||
// Navigation
|
|
||||||
implementation("androidx.navigation3:navigation3-runtime:1.0.0-alpha11")
|
|
||||||
implementation("androidx.navigation3:navigation3-ui:1.0.0-alpha11")
|
|
||||||
implementation("androidx.compose.material3.adaptive:adaptive-navigation3:1.0.0-SNAPSHOT")
|
|
||||||
implementation("androidx.lifecycle:lifecycle-viewmodel-navigation3:1.0.0-SNAPSHOT")
|
|
||||||
|
|
||||||
// Injection
|
// Injection
|
||||||
implementation("androidx.hilt:hilt-navigation-compose:1.3.0")
|
implementation("androidx.hilt:hilt-navigation-compose:1.3.0")
|
||||||
implementation("com.google.dagger:hilt-android:2.57.2")
|
implementation("com.google.dagger:hilt-android:2.57.2")
|
||||||
|
|
|
||||||
|
|
@ -9,9 +9,6 @@ pluginManagement {
|
||||||
}
|
}
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
gradlePluginPortal()
|
gradlePluginPortal()
|
||||||
maven {
|
|
||||||
url = uri("https://androidx.dev/snapshots/builds/13617490/artifacts/repository")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -20,9 +17,6 @@ dependencyResolutionManagement {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
maven {
|
|
||||||
url = uri("https://androidx.dev/snapshots/builds/13617490/artifacts/repository")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue