diff --git a/feature/bookmarks/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/bookmarks/BookmarksScreenTest.kt b/feature/bookmarks/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/bookmarks/BookmarksScreenTest.kt
index b2c61a4a2..81f070de7 100644
--- a/feature/bookmarks/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/bookmarks/BookmarksScreenTest.kt
+++ b/feature/bookmarks/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/bookmarks/BookmarksScreenTest.kt
@@ -36,7 +36,6 @@ import androidx.lifecycle.compose.LocalLifecycleOwner
import androidx.lifecycle.testing.TestLifecycleOwner
import com.google.samples.apps.nowinandroid.core.testing.data.userNewsResourcesTestData
import com.google.samples.apps.nowinandroid.core.ui.NewsFeedUiState
-import com.google.samples.apps.nowinandroid.feature.bookmarks.impl.R
import kotlinx.coroutines.test.runTest
import org.junit.Rule
import org.junit.Test
diff --git a/feature/foryou/src/main/res/values/strings.xml b/feature/foryou/src/main/res/values/strings.xml
index f0595944f..f4c08bd67 100644
--- a/feature/foryou/src/main/res/values/strings.xml
+++ b/feature/foryou/src/main/res/values/strings.xml
@@ -21,4 +21,5 @@
Navigate up
What are you interested in?
Updates from topics you follow will appear here. Follow some things to get started.
-
\ No newline at end of file
+ Now in Android
+
diff --git a/feature/interests/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/interests/InterestsScreenTest.kt b/feature/interests/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/interests/InterestsScreenTest.kt
index 4217ce8fd..9e91ebf46 100644
--- a/feature/interests/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/interests/InterestsScreenTest.kt
+++ b/feature/interests/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/interests/InterestsScreenTest.kt
@@ -29,7 +29,7 @@ import org.junit.Before
import org.junit.Rule
import org.junit.Test
import com.google.samples.apps.nowinandroid.core.ui.R as CoreUiR
-import com.google.samples.apps.nowinandroid.feature.interests.api.R as InterestsR
+import com.google.samples.apps.nowinandroid.feature.interests.R as InterestsR
/**
* UI test for checking the correct behaviour of the Interests screen;
diff --git a/feature/interests/src/test/kotlin/com/google/samples/apps/nowinandroid/interests/InterestsListDetailScreenTest.kt b/feature/interests/src/test/kotlin/com/google/samples/apps/nowinandroid/interests/InterestsListDetailScreenTest.kt
index b8ed5cc3b..64271a80a 100644
--- a/feature/interests/src/test/kotlin/com/google/samples/apps/nowinandroid/interests/InterestsListDetailScreenTest.kt
+++ b/feature/interests/src/test/kotlin/com/google/samples/apps/nowinandroid/interests/InterestsListDetailScreenTest.kt
@@ -38,11 +38,11 @@ import com.google.samples.apps.nowinandroid.core.model.data.Topic
import com.google.samples.apps.nowinandroid.core.navigation.Navigator
import com.google.samples.apps.nowinandroid.core.navigation.rememberNavigationState
import com.google.samples.apps.nowinandroid.core.navigation.toEntries
-import com.google.samples.apps.nowinandroid.feature.interests.impl.R
-import com.google.samples.apps.nowinandroid.feature.interests.navigation.InterestsNavKey
import com.google.samples.apps.nowinandroid.feature.interests.LIST_PANE_TEST_TAG
-import com.google.samples.apps.nowinandroid.feature.interests.navigation.interestsEntry
-import com.google.samples.apps.nowinandroid.feature.topic.impl.navigation.topicEntry
+import com.google.samples.apps.nowinandroid.feature.interests.R
+import com.google.samples.apps.nowinandroid.feature.interests.navigation.InterestsNavKey
+import com.google.samples.apps.nowinandroid.navigation.interests.interestsEntry
+import com.google.samples.apps.nowinandroid.navigation.topic.topicEntry
import com.google.samples.apps.nowinandroid.uitesthiltmanifest.HiltComponentActivity
import dagger.hilt.android.testing.HiltAndroidRule
import dagger.hilt.android.testing.HiltAndroidTest
diff --git a/feature/search/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/search/SearchScreenTest.kt b/feature/search/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/search/SearchScreenTest.kt
index e3890e8dc..01bd9f0e8 100644
--- a/feature/search/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/search/SearchScreenTest.kt
+++ b/feature/search/src/androidTest/kotlin/com/google/samples/apps/nowinandroid/feature/search/SearchScreenTest.kt
@@ -35,7 +35,6 @@ import com.google.samples.apps.nowinandroid.core.model.data.UserData
import com.google.samples.apps.nowinandroid.core.model.data.UserNewsResource
import com.google.samples.apps.nowinandroid.core.testing.data.followableTopicTestData
import com.google.samples.apps.nowinandroid.core.testing.data.newsResourcesTestData
-import com.google.samples.apps.nowinandroid.feature.search.impl.R
import org.junit.Before
import org.junit.Rule
import org.junit.Test
@@ -70,8 +69,10 @@ class SearchScreenTest {
@Before
fun setup() {
composeTestRule.activity.apply {
- clearSearchContentDesc = getString(R.string.feature_search_api_clear_search_text_content_desc)
- clearRecentSearchesContentDesc = getString(R.string.feature_search_api_clear_recent_searches_content_desc)
+ clearSearchContentDesc =
+ getString(R.string.feature_search_api_clear_search_text_content_desc)
+ clearRecentSearchesContentDesc =
+ getString(R.string.feature_search_api_clear_recent_searches_content_desc)
followButtonContentDesc =
getString(com.google.samples.apps.nowinandroid.core.ui.R.string.core_ui_interests_card_follow_button_content_desc)
unfollowButtonContentDesc =
diff --git a/feature/topic/src/main/kotlin/com/google/samples/apps/nowinandroid/feature/topic/navigation/TopicNavKey.kt b/feature/topic/src/main/kotlin/com/google/samples/apps/nowinandroid/feature/topic/navigation/TopicNavKey.kt
index 330beec73..6cf4dd5fb 100644
--- a/feature/topic/src/main/kotlin/com/google/samples/apps/nowinandroid/feature/topic/navigation/TopicNavKey.kt
+++ b/feature/topic/src/main/kotlin/com/google/samples/apps/nowinandroid/feature/topic/navigation/TopicNavKey.kt
@@ -14,7 +14,7 @@
* limitations under the License.
*/
-package com.google.samples.apps.nowinandroid.feature.topic.api.navigation
+package com.google.samples.apps.nowinandroid.feature.topic.navigation
import androidx.navigation3.runtime.NavKey
import kotlinx.serialization.Serializable