Skip to content
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

Webview: Fix the exception after multi-process access #2684

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion firebase-auth/core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

<application>
<service android:name="org.microg.gms.firebase.auth.FirebaseAuthService">
<service
android:name="org.microg.gms.firebase.auth.FirebaseAuthService"
android:process=":ui">
<intent-filter>
<action android:name="com.google.firebase.auth.api.gms.service.START" />
</intent-filter>
Expand Down
1 change: 1 addition & 0 deletions vending-app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@

<activity
android:name="org.microg.vending.billing.ui.PlayWebViewActivity"
android:process=":ui"
android:exported="false" />

<service
Expand Down
Loading