You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: firebase-appdistribution/src/test/java/com/google/firebase/appdistribution/impl/TesterApiHttpClientTest.java
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -252,7 +252,6 @@ public void makePostRequest_whenConnectionFails_throwsError() throws Exception {
Copy file name to clipboardExpand all lines: firebase-appdistribution/test-app/src/main/java/com/googletest/firebase/appdistribution/testapp/MainActivity.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ class MainActivity : AppCompatActivity() {
Copy file name to clipboardExpand all lines: firebase-appdistribution/test-app/src/main/java/com/googletest/firebase/appdistribution/testapp/ScreenshotDetectionFeedbackTrigger.java
@@ -75,28 +80,23 @@ public ScreenshotDetectionFeedbackTrigger(
75
80
if (isGranted) {
76
81
maybeStartFeedbackForScreenshot(currentUri);
77
82
} else {
78
-
newAlertDialog.Builder(context)
79
-
.setMessage(
80
-
"Without storage access, screenshots taken while in the app will not be able to automatically start the feedback flow. To enable this feature, grant the app storage access in Settings.")
81
-
.setPositiveButton(
82
-
"OK",
83
-
(a, b) -> {
84
-
/* do nothing */
85
-
})
86
-
.show();
83
+
Log.i(TAG, "Permission not granted");
84
+
// TODO: Ideally we would show a message indicating the impact of not enabling the
85
+
// permission, but there's no way to know if they've permanently denied the
86
+
// permission, and we don't want to show them a message on every screenshot.
0 commit comments