Skip to content

Commit

Permalink
Package name
Browse files Browse the repository at this point in the history
  • Loading branch information
boswelja committed Nov 14, 2024
1 parent 79f9ca3 commit f0e948d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ import com.imashnake.animite.features.theme.AnimiteTheme
import com.imashnake.animite.profile.Profile
import com.imashnake.animite.profile.ProfileScreen
import com.imashnake.animite.profile.dev.internal.ANILIST_AUTH_DEEPLINK
import com.imashnake.animite.rslash.RSlash
import com.imashnake.animite.rslash.RSlashScreen
import com.imashnake.animite.social.RSlash
import com.imashnake.animite.social.RSlashScreen
import dagger.hilt.android.AndroidEntryPoint

@AndroidEntryPoint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ enum class NavigationBarPaths(
) {
RSlash(
navigateTo = {
it.navigate(com.imashnake.animite.rslash.RSlash) {
it.navigate(com.imashnake.animite.social.RSlash) {
popUpTo(id = it.graph.findStartDestination().id) {
saveState = true
}
launchSingleTop = true
}
},
matchesDestination = {
it.destination.hierarchy.any { it.hasRoute(com.imashnake.animite.rslash.RSlash::class) }
it.destination.hierarchy.any { it.hasRoute(com.imashnake.animite.social.RSlash::class) }
},
icon = {
Icon(ImageVector.vectorResource(R.drawable.rslash), contentDescription = stringResource(R.string.rslash))
Expand Down
2 changes: 1 addition & 1 deletion rslash/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
}
composeCompiler.enableStrongSkippingMode = true

namespace = "com.imashnake.animite.rslash"
namespace = "com.imashnake.animite.social"
}

kotlin {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.imashnake.animite.rslash
package com.imashnake.animite.social

import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Arrangement
Expand Down

0 comments on commit f0e948d

Please sign in to comment.