Skip to content

Commit

Permalink
Update Compose BOM (#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
simona-anomis authored Aug 10, 2023
1 parent 8b7bc8a commit b49018a
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions AccessibilityCodelab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

android {
compileSdkVersion 33
compileSdkVersion 34
namespace 'com.example.jetnews'
defaultConfig {
applicationId 'com.example.jetnews'
Expand Down Expand Up @@ -73,7 +73,7 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2023.06.00')
def composeBom = platform('androidx.compose:compose-bom:2023.08.00')
implementation(composeBom)
testImplementation(composeBom)
androidTestImplementation(composeBom)
Expand Down
4 changes: 2 additions & 2 deletions AdaptiveUiCodelab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

android {
compileSdk 33
compileSdk 34
namespace "com.example.reply"

defaultConfig {
Expand Down Expand Up @@ -65,7 +65,7 @@ android {
dependencies {


def composeBom = platform('androidx.compose:compose-bom:2023.06.00')
def composeBom = platform('androidx.compose:compose-bom:2023.08.00')
implementation(composeBom)
androidTestImplementation(composeBom)

Expand Down
4 changes: 2 additions & 2 deletions AdvancedStateAndSideEffectsCodelab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if (rootProject.file("local.properties").exists()) {
}

android {
compileSdkVersion 33
compileSdkVersion 34
namespace "androidx.compose.samples.crane"
defaultConfig {
applicationId "androidx.compose.samples.crane"
Expand Down Expand Up @@ -110,7 +110,7 @@ dependencies {
implementation "androidx.activity:activity-compose:1.7.2"
implementation "androidx.appcompat:appcompat:1.6.1"

def composeBom = platform('androidx.compose:compose-bom:2023.06.00')
def composeBom = platform('androidx.compose:compose-bom:2023.08.00')
implementation(composeBom)
androidTestImplementation(composeBom)
implementation "androidx.compose.runtime:runtime"
Expand Down
4 changes: 2 additions & 2 deletions BasicLayoutsCodelab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

android {
compileSdk 33
compileSdk 34
namespace "com.codelab.basiclayouts"

defaultConfig {
Expand Down Expand Up @@ -63,7 +63,7 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2023.06.00')
def composeBom = platform('androidx.compose:compose-bom:2023.08.00')
implementation(composeBom)
androidTestImplementation(composeBom)

Expand Down
4 changes: 2 additions & 2 deletions MigrationCodelab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ apply plugin: 'kotlin-kapt'
apply plugin: 'androidx.navigation.safeargs.kotlin'

android {
compileSdkVersion 33
compileSdkVersion 34
namespace "com.google.samples.apps.sunflower"
defaultConfig {
applicationId "com.google.samples.apps.sunflower"
Expand Down Expand Up @@ -61,7 +61,7 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2023.06.00')
def composeBom = platform('androidx.compose:compose-bom:2023.08.00')
implementation(composeBom)
androidTestImplementation(composeBom)

Expand Down
4 changes: 2 additions & 2 deletions NavigationCodelab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

android {
compileSdkVersion 33
compileSdkVersion 34
namespace "com.example.compose.rally"

defaultConfig {
Expand Down Expand Up @@ -80,7 +80,7 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2023.06.00')
def composeBom = platform('androidx.compose:compose-bom:2023.08.00')
implementation(composeBom)
androidTestImplementation(composeBom)

Expand Down
4 changes: 2 additions & 2 deletions TestingCodelab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ plugins {
}

android {
compileSdkVersion 33
compileSdkVersion 34

namespace "com.example.compose.rally"
defaultConfig {
Expand Down Expand Up @@ -87,7 +87,7 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2023.06.00')
def composeBom = platform('androidx.compose:compose-bom:2023.08.00')
implementation(composeBom)
androidTestImplementation(composeBom)

Expand Down
2 changes: 1 addition & 1 deletion TestingCodelab/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ buildscript {
// Define versions in a single place
ext {
// Sdk and tools
compileSdkVersion = 33
compileSdkVersion = 34
minSdkVersion = 21
targetSdkVersion = 33

Expand Down
4 changes: 2 additions & 2 deletions ThemingCodelab/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ plugins {

android {
namespace "com.example.reply"
compileSdkVersion 33
compileSdkVersion 34
defaultConfig {
applicationId 'com.example.reply'
minSdkVersion 21
Expand Down Expand Up @@ -90,7 +90,7 @@ android {
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2023.06.00')
def composeBom = platform('androidx.compose:compose-bom:2023.08.00')
implementation(composeBom)
testImplementation(composeBom)
androidTestImplementation(composeBom)
Expand Down

0 comments on commit b49018a

Please sign in to comment.