Skip to content

Commit

Permalink
Merge branch 'LawnchairLauncher:14-dev' into trunk
Browse files Browse the repository at this point in the history
  • Loading branch information
Goooler authored Jul 25, 2024
2 parents 7b12a67 + 60e6d50 commit 755c0a0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -351,11 +351,11 @@ dependencies {
implementation "androidx.compose.material:material"
implementation "androidx.compose.runtime:runtime-livedata"
implementation 'androidx.compose.material3:material3:1.3.0-beta04'
implementation 'androidx.compose.material3:material3-window-size-class:1.3.0-beta04'
implementation 'androidx.compose.material3:material3-window-size-class:1.3.0-beta05'
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
implementation "androidx.activity:activity-compose:1.9.0"
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.3"
implementation "androidx.navigation:navigation-compose:2.8.0-beta05"
implementation "androidx.activity:activity-compose:1.9.1"
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.8.4"
implementation "androidx.navigation:navigation-compose:2.8.0-beta06"
implementation "androidx.palette:palette-ktx:1.0.0"
implementation "androidx.slice:slice-core:1.1.0-alpha02"
def accompanistVersion = '0.34.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,11 @@ public void onUserUnlocked() {
mTaskAnimationManager, mTaskbarManager::getCurrentActivityContext);
}
mInputConsumer = InputConsumerController.getRecentsAnimationInputConsumer();
mInputConsumer.registerInputConsumer();
try {
mInputConsumer.registerInputConsumer();
} catch (Exception e) {
Log.e(TAG, "Failure registering InputConsumer", e);
}
onSystemUiFlagsChanged(mDeviceState.getSystemUiStateFlags());
onAssistantVisibilityChanged();

Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pluginManagement {

// https://docs.gradle.com/enterprise/gradle-plugin/
plugins {
id "com.gradle.develocity" version "3.17.5"
id "com.gradle.develocity" version "3.17.6"
}

def isCI = providers.environmentVariable('CI').present
Expand Down
2 changes: 1 addition & 1 deletion systemUnFold/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,6 @@ dependencies {
ksp "com.google.dagger:hilt-compiler:$daggerVersion"

implementation "androidx.concurrent:concurrent-futures:1.2.0"
implementation "androidx.lifecycle:lifecycle-common:2.8.3"
implementation "androidx.lifecycle:lifecycle-common:2.8.4"
implementation "androidx.dynamicanimation:dynamicanimation:1.0.0"
}

0 comments on commit 755c0a0

Please sign in to comment.