Skip to content

Commit

Permalink
Build(deps): Bump androidx.core:core-splashscreen from 1.2.0-alpha01 …
Browse files Browse the repository at this point in the history
…to 1.2.0-alpha02 (#133)

* Build(deps): Bump androidx.core:core-splashscreen

Bumps androidx.core:core-splashscreen from 1.2.0-alpha01 to 1.2.0-alpha02.

---
updated-dependencies:
- dependency-name: androidx.core:core-splashscreen
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* feat: Update compile and target sdk to 35

* fix: Change LocalLifecycleOwner deprecated package for current lifecycleOwner collect process

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Marlon López <[email protected]>
  • Loading branch information
dependabot[bot] and marlonlom authored Sep 8, 2024
1 parent 8bd8b28 commit b68bc30
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
4 changes: 2 additions & 2 deletions apps/mobile/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ plugins {

android {
namespace = "dev.marlonlom.mocca"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "dev.marlonlom.mocca"
minSdk = 24
//noinspection OldTargetApi
targetSdk = 34
targetSdk = 35
versionCode = 341100
versionName = "1.0.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fun SettingsRoute(
}

val userPreferences by settingsViewModel.settingsUiState.collectAsStateWithLifecycle(
lifecycleOwner = androidx.compose.ui.platform.LocalLifecycleOwner.current
lifecycleOwner = androidx.lifecycle.compose.LocalLifecycleOwner.current
)

val horizontalPadding = getSettingsContentHorizontalPadding(windowSizeInfo)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class MainActivity : ComponentActivity() {
val configuration = LocalConfiguration.current
val windowSizeClass = calculateWindowSizeClass(activity = this)
val devicePostureState by devicePostureFlow.collectAsStateWithLifecycle(
lifecycleOwner = androidx.compose.ui.platform.LocalLifecycleOwner.current
lifecycleOwner = androidx.lifecycle.compose.LocalLifecycleOwner.current
)
val windowSizeInfo = WindowSizeInfo(
windowSizeClass = windowSizeClass,
Expand Down
4 changes: 2 additions & 2 deletions apps/smartwatch/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ plugins {

android {
namespace = "dev.marlonlom.mocca"
compileSdk = 34
compileSdk = 35

defaultConfig {
applicationId = "dev.marlonlom.mocca"
minSdk = 30
targetSdk = 34
targetSdk = 35
versionCode = 342101
versionName = "1.0.1"

Expand Down
5 changes: 3 additions & 2 deletions benchmarks/macro/mobile/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {

android {
namespace = "dev.marlonlom.mocca.macrobenchmarks.mobile"
compileSdk = 34
compileSdk = 35

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
Expand All @@ -25,7 +25,8 @@ android {

defaultConfig {
minSdk = 24
targetSdk = 34
//noinspection OldTargetApi
targetSdk = 35
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down
5 changes: 3 additions & 2 deletions benchmarks/macro/smartwatch/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins {

android {
namespace = "dev.marlonlom.mocca.macrobenchmarks.smartwatch"
compileSdk = 34
compileSdk = 35

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
Expand All @@ -25,7 +25,8 @@ android {

defaultConfig {
minSdk = 24
targetSdk = 34
//noinspection OldTargetApi
targetSdk = 35

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ androidx-activity-compose = "androidx.activity:activity-compose:1.9.2"
androidx-appcompat = "androidx.appcompat:appcompat:1.7.0"
androidx-browser = "androidx.browser:browser:1.8.0"
androidx-core-ktx = "androidx.core:core-ktx:1.13.1"
androidx-core-splashscreen = "androidx.core:core-splashscreen:1.2.0-alpha01"
androidx-core-splashscreen = "androidx.core:core-splashscreen:1.2.0-alpha02"
androidx-datastore-preferences = "androidx.datastore:datastore-preferences:1.1.1"
androidx-lifecycle-runtime-compose = "androidx.lifecycle:lifecycle-runtime-compose:2.8.5"
androidx-lifecycle-runtime-ktx = "androidx.lifecycle:lifecycle-runtime-ktx:2.8.5"
Expand Down

0 comments on commit b68bc30

Please sign in to comment.