Skip to content

Commit

Permalink
dependency: Updated a few depends.
Browse files Browse the repository at this point in the history
Updated org.apache.commons:commons-text
Updated androidx.activity:activity-compose
CreativeCodeCat committed May 6, 2024
1 parent d049709 commit f822278
Showing 2 changed files with 4 additions and 7 deletions.
6 changes: 4 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -23,12 +23,14 @@ android {
isShrinkResources = false
isDebuggable = true
applicationIdSuffix = ".debug"
proguardFiles (getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
resValue("string", "app_name", "mLauncher Debug")
}

getByName("release") {
isMinifyEnabled = false
isShrinkResources = false
proguardFiles (getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
resValue("string", "app_name", "mLauncher")
}
}
@@ -98,13 +100,13 @@ dependencies {
implementation("androidx.constraintlayout:constraintlayout-compose:1.0.1")

// Text similarity
implementation("org.apache.commons:commons-text:1.11.0")
implementation("org.apache.commons:commons-text:1.12.0")
implementation("com.google.code.gson:gson:2.10.1")

// JETPACK
// Integration with activities
//noinspection GradleDependency
implementation("androidx.activity:activity-compose:1.8.2")
implementation("androidx.activity:activity-compose:1.9.0")
// Compose Material Design
implementation("androidx.compose.material:material:$androidxTestKotlin")
implementation("com.github.SmartToolFactory:Compose-Colorful-Sliders:1.2.0")
Original file line number Diff line number Diff line change
@@ -208,11 +208,6 @@ class MainActivity : AppCompatActivity() {
super.onUserLeaveHint()
}

override fun onNewIntent(intent: Intent?) {
backToHomeScreen()
super.onNewIntent(intent)
}

override fun onConfigurationChanged(newConfig: Configuration) {
super.onConfigurationChanged(newConfig)
recreate()

0 comments on commit f822278

Please sign in to comment.