-
Notifications
You must be signed in to change notification settings - Fork 627
FAD fixing file provider path bug #2972
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Coverage ReportAffected SDKs
Test Logs
NotesHTML coverage reports can be produced locally with Head commit (22e4402e) is created by Prow via merging commits: 41715ed 4f2c3dd. |
Binary Size ReportAffected SDKs
Test Logs
NotesHead commit (22e4402e) is created by Prow via merging commits: 41715ed 4f2c3dd. |
@@ -44,12 +44,12 @@ | |||
|
|||
<provider | |||
android:name="androidx.core.content.FileProvider" | |||
android:authorities="${applicationId}.provider" | |||
android:authorities="${applicationId}.appdistro.fileprovider" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for the late review, but I think we should change this to firebaseappdistribution.fileprovider
because we don't use appdistro
externally, and the firebase prefix helps customers quickly identify this authority as part of the Firebase ecosystem (and aligns with the name of the main folder for this SDK)
android:exported="false" | ||
android:grantUriPermissions="true"> | ||
<meta-data | ||
android:name="android.support.FILE_PROVIDER_PATHS" | ||
android:resource="@xml/provider_paths" /> | ||
android:resource="@xml/appdistro_provider_paths" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same thing here, I think this should be firebase_app_distribution_provider_path
No description provided.