Skip to content

Commit

Permalink
version 28
Browse files Browse the repository at this point in the history
Bug Fixes !
  • Loading branch information
xectrone committed Sep 7, 2024
1 parent f9e3bea commit 18f36ff
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
9 changes: 7 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "com.xectrone.quickmark"
minSdk 26
targetSdk 34
versionCode 9
versionName "1.1.4"
versionCode 10
versionName "1.1.5"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand All @@ -22,6 +22,11 @@ android {
}

buildTypes {

debug {
applicationIdSuffix ".debug"
}

release {
shrinkResources true
minifyEnabled true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ fun HomeScreen(
Text(text = stringResource(id = R.string.app_name), style = CustomTypography.h2)
},

navigationIcon = {
IconButton(
onClick =
{
// scope.launch { scaffoldState.drawerState.open() }
}
)
{ Icon(imageVector = Icons.Rounded.Menu, contentDescription = Constants.Labels.HomeScreen.MENU) }
},
// navigationIcon = {
// IconButton(
// onClick =
// {
//// scope.launch { scaffoldState.drawerState.open() }
// }
// )
// { Icon(imageVector = Icons.Rounded.Menu, contentDescription = Constants.Labels.HomeScreen.MENU) }
// },
actions = {
if(selectionMode) {
IconButton(
Expand Down

0 comments on commit 18f36ff

Please sign in to comment.