Skip to content

Commit

Permalink
* update libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
rahbadev committed Sep 17, 2023
1 parent b22824d commit ac8535b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions BtechUtils/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ android {
viewBinding true
}
composeOptions {
kotlinCompilerExtensionVersion compose_version
kotlinCompilerExtensionVersion compose_compiler_version
}
}

dependencies {
def composeBom = platform('androidx.compose:compose-bom:2023.06.01')
def composeBom = platform("androidx.compose:compose-bom:$compose_bom_version")
// Compose
implementation(composeBom)
androidTestImplementation(composeBom)
Expand Down
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
buildscript {
ext {
compose_version = '1.5.2'
kotlin_version = '1.9.0'
gradle_version = '8.1.1'
kotlin_version = '1.9.10'
compose_bom_version = '2023.09.00'
compose_compiler_version = '1.5.3'
}
}

plugins {
id 'com.android.application' version '8.1.1' apply false
id 'com.android.library' version '8.1.1' apply false
id 'com.android.application' version "$gradle_version" apply false
id 'com.android.library' version "$gradle_version" apply false
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
}

1 change: 0 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ pluginManagement {
google()
mavenCentral()
gradlePluginPortal()
maven { url 'https://jitpack.io' }
}
}
dependencyResolutionManagement {
Expand Down
2 changes: 1 addition & 1 deletion simple_app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ android {

dependencies {

implementation 'androidx.core:core-ktx:1.10.1'
// implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
Expand Down

0 comments on commit ac8535b

Please sign in to comment.