Skip to content

Commit af2e5d0

Browse files
author
Mihai-Cristian Condrea
committed
refactor: Updated UI for settings and removed ads
- Updated App Core to use BaseCoreManager. - Updated UI of settings to be more tablet friendly. - Updated the settings composables to use a shared list and detail view. - Added animations for settings detail view. - Removed unused SuppressLint annotations.
1 parent 50515bc commit af2e5d0

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/kotlin/com/d4rk/androidtutorials/ui/components/navigation

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/d4rk/androidtutorials/ui/components/navigation/TopAppBar.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ fun TopAppBarScaffoldWithBackButtonAndActions(
152152
DropdownMenuItem(modifier = Modifier.bounceClick() , text = { Text(text = stringResource(id = com.d4rk.android.libs.apptoolkit.R.string.oss_license_title)) } , onClick = {
153153
view.playSoundEffect(SoundEffectConstants.CLICK)
154154
IntentsHelper.openLicensesScreen(
155-
context = context , eulaHtmlString = eulaHtmlString , changelogHtmlString = changelogHtmlString , appName = R.string.app_name.toString() , appVersion = BuildConfig.VERSION_NAME , appVersionCode = BuildConfig.VERSION_CODE , appShortDescription = R.string.app_short_description
155+
context = context , eulaHtmlString = eulaHtmlString , changelogHtmlString = changelogHtmlString , appName = context.getString(R.string.app_name) , appVersion = BuildConfig.VERSION_NAME , appVersionCode = BuildConfig.VERSION_CODE , appShortDescription = R.string.app_short_description
156156
)
157157
})
158158
}

0 commit comments

Comments
 (0)