-
Notifications
You must be signed in to change notification settings - Fork 71
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
lineageos: allow prebuilt webview #268
Conversation
Hm, this builds just fine for cheeseburger but it fails on the FP4:
Is it becoming too large perhaps? |
Yeah I think that's it :( How is our image so large as to become too large for the device when you add a chromium? |
When I tried applying it as an
So it might be the contents of the vendor partition? |
|
Found what's going wrong here: The APK exists twice. That's too much of course; one chromium is large enough as is. We have to not use robotnix' webview handling at all for LOS' webview or stop LOS from installing theirs at the same time. |
We don't have a working webview which would mean you'd need to install one yourself at runtime. LOS ships a prebuilt webview, let's simply use that. Fixes nix-community#246
This is required by LOS webview which is just plain chromium, so other modern Chromiums probably need this too.
This works and is required for #271 |
We don't have a working webview which would mean you'd need to install one
yourself at runtime. LOS ships a prebuilt webview, let's simply use that.
Fixes #246