Skip to content

Commit

Permalink
release: v2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
iamr0s committed Oct 8, 2024
1 parent d4cd734 commit dd76471
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions app/src/main/java/com/rosan/dhizuku/ui/theme/DhizukuTheme.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.toArgb
import androidx.compose.ui.platform.LocalContext
import androidx.compose.ui.platform.LocalView
import androidx.core.view.ViewCompat
import androidx.core.view.WindowCompat
import androidx.core.view.WindowInsetsCompat

private val DarkColorScheme = darkColorScheme(
primary = Purple80,
Expand Down Expand Up @@ -74,6 +76,8 @@ fun DhizukuTheme(

WindowCompat.setDecorFitsSystemWindows(window, false)

WindowCompat.getInsetsController(window,window.decorView)

window.statusBarColor = Color.Transparent.toArgb()
WindowCompat.getInsetsController(window, view).isAppearanceLightStatusBars =
!darkTheme
Expand Down
12 changes: 6 additions & 6 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
# https://androidx.dev/storage/compose-compiler/repository/

[versions]
agp = "8.5.2"
agp = "8.6.1"
kotlin = "2.0.0"
compose = "1.7.0-beta07"
compose = "1.7.3"
room = "2.6.1"
accompanist = "0.34.0"
rikka-shizuku = "13.1.5"
Expand All @@ -33,14 +33,14 @@ ksp = { id = "com.google.devtools.ksp", version = "2.0.0-1.0.23" }
[libraries]
androidx-annotation = { module = "androidx.annotation:annotation", version = "1.8.2" }
androidx-core = { group = "androidx.core", name = "core-ktx", version = "1.13.1" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version = "1.9.1" }
androidx-lifecycle = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version = "2.8.4" }
androidx-activity-compose = { group = "androidx.activity", name = "activity-compose", version = "1.9.2" }
androidx-lifecycle = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version = "2.8.6" }
compose-ui = { group = "androidx.compose.ui", name = "ui", version.ref = "compose" }
compose-material = { group = "androidx.compose.material", name = "material", version.ref = "compose" }
compose-material3 = { group = "androidx.compose.material3", name = "material3", version = "1.3.0-beta05" }
compose-material3 = { group = "androidx.compose.material3", name = "material3", version = "1.3.0" }
compose-uiToolingPreview = { group = "androidx.compose.ui", name = "ui-tooling", version.ref = "compose" }

compose-navigation = { group = "androidx.navigation", name = "navigation-compose", version = "2.7.7" }
compose-navigation = { group = "androidx.navigation", name = "navigation-compose", version = "2.8.2" }
compose-materialIcons = { group = "androidx.compose.material", name = "material-icons-extended", version.ref = "compose" }

room-runtime = { group = "androidx.room", name = "room-runtime", version.ref = "room" }
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
versionCode=12
versionCode=13
versionName=2.9

0 comments on commit dd76471

Please sign in to comment.