Skip to content

Commit

Permalink
Set minSdk = 30 (i.e. Android 11)
Browse files Browse the repository at this point in the history
  • Loading branch information
bingzheung committed Jul 9, 2024
1 parent ebb7cc5 commit 221685c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
compileSdk = 34
defaultConfig {
applicationId = "org.jyutping.jyutping"
minSdk = 33
minSdk = 30
targetSdk = 34
versionCode = 7
versionName = "0.7.0"
Expand Down
6 changes: 6 additions & 0 deletions app/src/main/java/org/jyutping/jyutping/ui/home/HomeScreen.kt
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ fun HomeScreen(navController: NavHostController) {
GwongWanView(gwongWanEntries.value)
}
}
/*
item {
TextCard(
heading = stringResource(id = R.string.home_heading_tone_input),
Expand All @@ -126,12 +127,14 @@ fun HomeScreen(navController: NavHostController) {
shouldContentMonospaced = true
)
}
*/
item {
TextCard(
heading = stringResource(id = R.string.home_heading_pinyin_reverse_lookup),
content = stringResource(id = R.string.home_content_pinyin_reverse_lookup)
)
}
/*
item {
TextCard(
heading = stringResource(id = R.string.home_heading_cangjie_reverse_lookup),
Expand All @@ -151,19 +154,22 @@ fun HomeScreen(navController: NavHostController) {
shouldContentMonospaced = true
)
}
*/
item {
TextCard(
heading = stringResource(id = R.string.home_heading_compose_reverse_lookup),
content = stringResource(id = R.string.home_content_compose_reverse_lookup)
)
}
/*
item {
DisableSelection {
NavigationLabel(icon = Icons.Outlined.Info, text = stringResource(id = R.string.home_label_more_introductions)) {
navController.navigate(route = Screen.Introductions.route)
}
}
}
*/
}
}
}

0 comments on commit 221685c

Please sign in to comment.