-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #142 from arcao/dev
Release app version 3.0.11
- Loading branch information
Showing
25 changed files
with
114 additions
and
19 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 12 additions & 11 deletions
23
app/src/main/java/com/arcao/geocaching4locus/dashboard/DashboardAction.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
package com.arcao.geocaching4locus.dashboard | ||
|
||
sealed class DashboardAction { | ||
object SearchNearest : DashboardAction() | ||
object ImportGcCode : DashboardAction() | ||
object ImportBookmarks : DashboardAction() | ||
object DownloadLiveMapGeocaches : DashboardAction() | ||
object UsersGuide : DashboardAction() | ||
object Preferences : DashboardAction() | ||
object NavigationBack : DashboardAction() | ||
object LocusMapNotInstalled : DashboardAction() | ||
object SignIn : DashboardAction() | ||
object WarnPowerSaveActive : DashboardAction() | ||
sealed interface DashboardAction { | ||
object SearchNearest : DashboardAction | ||
object ImportGcCode : DashboardAction | ||
object ImportBookmarks : DashboardAction | ||
object DownloadLiveMapGeocaches : DashboardAction | ||
object UsersGuide : DashboardAction | ||
object Preferences : DashboardAction | ||
object NavigationBack : DashboardAction | ||
object LocusMapNotInstalled : DashboardAction | ||
object SignIn : DashboardAction | ||
object WarnPowerSaveActive : DashboardAction | ||
object RequestPostNotificationPermission : DashboardAction | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...ao/geocaching4locus/dashboard/fragment/NoPostNotificationPermissionErrorDialogFragment.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.arcao.geocaching4locus.dashboard.fragment | ||
|
||
import com.arcao.geocaching4locus.R | ||
import com.arcao.geocaching4locus.base.fragment.AbstractErrorDialogFragment | ||
|
||
class NoPostNotificationPermissionErrorDialogFragment : AbstractErrorDialogFragment() { | ||
companion object { | ||
fun newInstance() = NoPostNotificationPermissionErrorDialogFragment().apply { | ||
prepareDialog( | ||
message = R.string.error_no_post_notification_permission | ||
) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.