Skip to content

Commit

Permalink
[android] Fix missing function in AndroidMobileSystemFacade
Browse files Browse the repository at this point in the history
Co-authored-by: jug <[email protected]>
Co-authored-by: arm <[email protected]>
  • Loading branch information
3 people committed Dec 3, 2024
1 parent 5ae627f commit c4d1b27
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,4 +174,8 @@ class AndroidMobileSystemFacade(
override suspend fun getInstallationDate(): String {
return SystemUtils.getInstallationDate(activity.packageManager, activity.packageName)
}

override suspend fun requestInAppRating() {
TODO("Not yet implemented")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -200,4 +200,8 @@ class AndroidMobileSystemFacade(
override suspend fun getInstallationDate(): String {
return SystemUtils.getInstallationDate(activity.packageManager, activity.packageName)
}

override suspend fun requestInAppRating() {
TODO("Not yet implemented")
}
}

0 comments on commit c4d1b27

Please sign in to comment.