Skip to content

Commit

Permalink
updated agp
Browse files Browse the repository at this point in the history
updated activity libs
minor refactors
  • Loading branch information
yamin8000 committed Jun 1, 2023
1 parent 3c25658 commit e979267
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ android {
applicationId "io.github.yamin8000.dooz"
minSdk 24
targetSdk 33
versionCode 10
versionName "1.0.10"
versionCode 11
versionName "1.0.11"
vectorDrawables {
useSupportLibrary true
}
Expand Down Expand Up @@ -99,7 +99,7 @@ dependencies {
implementation("androidx.compose.material:material:$compose_libs_version")
implementation("androidx.compose.ui:ui-tooling-preview:$compose_ui_libs_version")
debugImplementation("androidx.compose.ui:ui-tooling:$compose_ui_libs_version")
implementation("androidx.activity:activity-compose:1.7.1")
implementation("androidx.activity:activity-compose:1.7.2")
implementation("androidx.compose.material3:material3:$material3_version")
implementation("androidx.compose.material3:material3-window-size-class:$material3_version")
implementation("androidx.compose.material:material-icons-extended:$compose_libs_version")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import io.github.yamin8000.dooz.ui.composables.ScaffoldWithTitle

@OptIn(ExperimentalMaterial3Api::class)
@Composable
fun AboutContent(onBackClick: () -> Unit) {
internal fun AboutContent(onBackClick: () -> Unit) {
ScaffoldWithTitle(
title = stringResource(R.string.about),
onBackClick = onBackClick,
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ buildscript {

// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '8.0.1' apply false
id 'com.android.library' version '8.0.1' apply false
id 'com.android.application' version '8.0.2' apply false
id 'com.android.library' version '8.0.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
}

Expand Down
5 changes: 2 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,5 @@ kotlin.code.style=official
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true
android.nonFinalResIds=true
android.enableR8.fullMode=false
android.enableR8.fullMode=false
android.enableBuildConfigAsBytecode = true

0 comments on commit e979267

Please sign in to comment.