Skip to content

Commit

Permalink
Gradle commit
Browse files Browse the repository at this point in the history
  • Loading branch information
BharathVishal committed Dec 7, 2022
1 parent 98620d1 commit 16eff1b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
vectorDrawables.useSupportLibrary = true
minSdkVersion 23
targetSdkVersion 33
versionCode 73
versionName "2.8"
versionCode 74
versionName "2.9"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

}
Expand Down Expand Up @@ -58,24 +58,24 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation 'com.google.android.material:material:1.8.0-alpha02'
implementation 'com.google.android.material:material:1.8.0-alpha03'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
implementation 'com.github.bumptech.glide:glide:4.14.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2'
implementation 'androidx.cardview:cardview:1.0.0'
androidTestImplementation 'androidx.test:runner:1.4.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation 'androidx.test:runner:1.5.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'

implementation 'androidx.compose.material3:material3:1.1.0-alpha01'
implementation "androidx.compose.material3:material3-window-size-class:1.1.0-alpha01"
implementation 'androidx.compose.material3:material3:1.1.0-alpha02'
implementation "androidx.compose.material3:material3-window-size-class:1.1.0-alpha02"
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
implementation 'androidx.activity:activity-compose:1.6.1'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.3.0"
androidTestImplementation "androidx.compose.ui:ui-test-junit4:1.3.1"
implementation 'androidx.core:core-splashscreen:1.0.0'
debugImplementation 'androidx.compose.ui:ui-tooling:1.3.0'
implementation 'androidx.compose.material:material-icons-extended:1.4.0-alpha01'
implementation "androidx.compose.ui:ui-tooling-preview:1.3.0"
debugImplementation 'androidx.compose.ui:ui-tooling:1.3.1'
implementation 'androidx.compose.material:material-icons-extended:1.4.0-alpha02'
implementation "androidx.compose.ui:ui-tooling-preview:1.3.1"
implementation "com.google.accompanist:accompanist-systemuicontroller:0.26.1-alpha"
implementation("io.coil-kt:coil-compose:2.2.2")
}
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ class MainActivityCompose : AppCompatActivity(), CoroutineScope by MainScope() {
fun TopAppBarMain() {
TopAppBar(
title = { Text("App Manager - Compose Activity") },
colors = TopAppBarDefaults.smallTopAppBarColors(
colors = TopAppBarDefaults.topAppBarColors(
titleContentColor = MaterialTheme.colorScheme.onSurfaceVariant,
containerColor = MaterialTheme.colorScheme.surface
)
Expand Down

0 comments on commit 16eff1b

Please sign in to comment.