From 00819dec5cb57f181564f7a159bbae2594d4739f Mon Sep 17 00:00:00 2001 From: Saeed Noshadi Date: Fri, 10 Jun 2022 12:33:17 +0430 Subject: [PATCH] fix build --- build.gradle.kts | 1 + .../samples/apps/nowinandroid/feature/author/AuthorScreen.kt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 052e34df4..1e3328c81 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -26,5 +26,6 @@ buildscript { classpath(libs.kotlin.serializationPlugin) classpath(libs.hilt.gradlePlugin) classpath(libs.secrets.gradlePlugin) + classpath("com.android.tools.build:gradle:7.2.1") } } diff --git a/feature-author/src/main/java/com/google/samples/apps/nowinandroid/feature/author/AuthorScreen.kt b/feature-author/src/main/java/com/google/samples/apps/nowinandroid/feature/author/AuthorScreen.kt index 869089162..74c72624d 100644 --- a/feature-author/src/main/java/com/google/samples/apps/nowinandroid/feature/author/AuthorScreen.kt +++ b/feature-author/src/main/java/com/google/samples/apps/nowinandroid/feature/author/AuthorScreen.kt @@ -211,7 +211,7 @@ private fun AuthorToolbar( IconButton(onClick = { onBackClick() }) { Icon( imageVector = Filled.ArrowBack, - contentDescription = stringResource(id = string.back) + contentDescription = stringResource(id = R.string.back) ) } val selected = uiState.isFollowed