Skip to content

Commit

Permalink
aniflow integration
Browse files Browse the repository at this point in the history
  • Loading branch information
DatL4g committed Mar 21, 2024
1 parent e5dca2a commit 6b5b187
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions app/android/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

<queries>
<package android:name="dev.datlag.pulz" />
<package android:name="dev.datlag.aniflow" />
</queries>

<uses-feature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ sealed interface Project {
val googlePlay: String?
val github: String?

data object PULZ : Project {
data object PulZ : Project {
override val icon: ImageResource = SharedRes.images.PulZ
override val title: StringResource = SharedRes.strings.pulz
override val subTitle: StringResource = SharedRes.strings.pulz_subtitle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ fun SponsorScreen(component: SponsorComponent) {
)
}
item {
ProjectCard(Project.PULZ, modifier = Modifier.fillParentMaxWidth())
ProjectCard(Project.PulZ, modifier = Modifier.fillParentMaxWidth())
}
item {
ProjectCard(Project.AniFlow, modifier = Modifier.fillParentMaxWidth())
Expand Down

0 comments on commit 6b5b187

Please sign in to comment.