Skip to content

Commit

Permalink
Update to latest Compose version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rob Orgiu committed Sep 10, 2024
1 parent fe89cf6 commit 23b716f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
20 changes: 10 additions & 10 deletions CanonicalLayouts/list-detail-compose/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,22 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2024.08.00')
def composeBom = platform('androidx.compose:compose-bom:2024.09.00')
implementation(composeBom)

implementation "com.google.accompanist:accompanist-adaptive:0.32.0"
implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.4'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.5'
implementation 'androidx.activity:activity-compose:1.9.2'
implementation "androidx.compose.foundation:foundation:1.6.8"
implementation "androidx.compose.ui:ui:1.6.8"
implementation "androidx.compose.foundation:foundation:1.7.0"
implementation "androidx.compose.ui:ui:1.7.0"
implementation "androidx.compose.ui:ui-tooling-preview"
implementation "androidx.window:window:1.3.0"
implementation 'androidx.compose.material3:material3:1.3.0-rc01'
implementation 'androidx.compose.material3.adaptive:adaptive:1.1.0-alpha01'
implementation 'androidx.compose.material3.adaptive:adaptive-layout:1.1.0-alpha01'
implementation 'androidx.compose.material3.adaptive:adaptive-navigation:1.1.0-alpha01'
implementation "androidx.compose.material3:material3-window-size-class:1.3.0-rc01"
implementation "androidx.compose.animation:animation:1.7.0-rc01"
implementation 'androidx.compose.material3:material3:1.3.0'
implementation 'androidx.compose.material3.adaptive:adaptive:1.1.0-alpha02'
implementation 'androidx.compose.material3.adaptive:adaptive-layout:1.1.0-alpha02'
implementation 'androidx.compose.material3.adaptive:adaptive-navigation:1.1.0-alpha02'
implementation "androidx.compose.material3:material3-window-size-class:1.3.0"
implementation "androidx.compose.animation:animation:1.7.0"
testImplementation 'junit:junit:4.13.2'
}
16 changes: 8 additions & 8 deletions CanonicalLayouts/supporting-pane-compose/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,19 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2024.08.00')
def composeBom = platform('androidx.compose:compose-bom:2024.09.00')
implementation(composeBom)

implementation 'androidx.core:core-ktx:1.13.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.4'
implementation 'androidx.activity:activity-compose:1.9.1'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.5'
implementation 'androidx.activity:activity-compose:1.9.2'
implementation "androidx.compose.ui:ui"
implementation "androidx.compose.ui:ui-tooling-preview"
implementation "androidx.window:window:1.3.0"
implementation 'androidx.compose.material3:material3:1.3.0-rc01'
implementation 'androidx.compose.material3.adaptive:adaptive:1.1.0-alpha01'
implementation 'androidx.compose.material3.adaptive:adaptive-layout:1.1.0-alpha01'
implementation 'androidx.compose.material3.adaptive:adaptive-navigation:1.1.0-alpha01'
implementation "androidx.compose.material3:material3-window-size-class:1.3.0-rc01"
implementation 'androidx.compose.material3:material3:1.3.0'
implementation 'androidx.compose.material3.adaptive:adaptive:1.1.0-alpha02'
implementation 'androidx.compose.material3.adaptive:adaptive-layout:1.1.0-alpha02'
implementation 'androidx.compose.material3.adaptive:adaptive-navigation:1.1.0-alpha02'
implementation "androidx.compose.material3:material3-window-size-class:1.3.0"
testImplementation 'junit:junit:4.13.2'
}

0 comments on commit 23b716f

Please sign in to comment.