Skip to content

Commit c3d0771

Browse files
Nudge users less about Play Services
1 parent 287a016 commit c3d0771

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

app/src/google/kotlin/app/fyreplace/fyreplace/SecureActivity.kt

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ import com.google.android.gms.common.GoogleApiAvailability
77
import com.google.android.gms.security.ProviderInstaller
88

99
abstract class SecureActivity : ComponentActivity(), ProviderInstaller.ProviderInstallListener {
10+
private var hasShownWarning = false
11+
1012
override fun onPostResume() {
1113
super.onPostResume()
12-
ProviderInstaller.installIfNeededAsync(this, this)
14+
15+
if (!hasShownWarning) {
16+
ProviderInstaller.installIfNeededAsync(this, this)
17+
}
1318
}
1419

1520
override fun onProviderInstallFailed(errorCode: Int, recoveryIntent: Intent?) {
@@ -27,6 +32,7 @@ abstract class SecureActivity : ComponentActivity(), ProviderInstaller.ProviderI
2732
override fun onProviderInstalled() = Unit
2833

2934
private fun warnUser() {
35+
hasShownWarning = true
3036
AlertDialog.Builder(this)
3137
.setTitle(R.string.secure_warning_title)
3238
.setMessage(R.string.secure_warning_description)

0 commit comments

Comments
 (0)