Feature Request P3
Status Update
Comments
ag...@chromium.org <ag...@chromium.org> #2
I notice the same issue and LogCat shows the following message:
Google Play services out of date. Requires 3159100 but found 3136130
Google Play services out of date. Requires 3159100 but found 3136130
nt...@chromium.org <nt...@chromium.org> #3
Same here.
"Google Play services out of date. Requires 3159100 but found 3136130"
"Google Play services out of date. Requires 3159100 but found 3136130"
ag...@google.com <ag...@google.com> #4
me as well....
Google Play services out of date. Requires 3159100 but found 3136130
Google Play services out of date. Requires 3159100 but found 3136130
nt...@chromium.org <nt...@chromium.org> #5
I was hopeful that the release of API 18 (4.3) would have created a solution to this, unfortunately it includes version 3158130
nt...@chromium.org <nt...@chromium.org> #6
Having the same issue:
07-25 00:03:54.998: W/GooglePlayServicesUtil(27293): Google Play services out of date. Requires 3159100 but found 3158130
07-25 00:03:54.998: W/GooglePlayServicesUtil(27293): Google Play services out of date. Requires 3159100 but found 3158130
nt...@chromium.org <nt...@chromium.org> #7
same
nt...@chromium.org <nt...@chromium.org> #8
SAME ! - Google can't do sth working in 100 percent?
bu...@chops-service-accounts.iam.gserviceaccount.com <bu...@chops-service-accounts.iam.gserviceaccount.com> #9
same issue - Google Play services out of date. Requires 3159100 but found 3158130
nt...@chromium.org <nt...@chromium.org> #10
Having the same issure:
07-26 03:14:00.731: W/GooglePlayServicesUtil(2566): Google Play services out of date. Requires 3159100 but found 3136130
07-26 03:14:00.731: W/GooglePlayServicesUtil(2566): Google Play services out of date. Requires 3159100 but found 3136130
[Deleted User] <[Deleted User]> #11
API 18 (4.3) same issue
07-26 03:54:03.303: W/GooglePlayServicesUtil(1207): Google Play services out of date. Requires 3159100 but found 3158130
07-26 03:54:03.303: W/GooglePlayServicesUtil(1207): Google Play services out of date. Requires 3159100 but found 3158130
nt...@chromium.org <nt...@chromium.org> #12
Same issue here.
[Deleted User] <[Deleted User]> #13
Same issue here. How can i fix this bug?
hy...@google.com <hy...@google.com> #14
We're working on this. I don't have an ETA yet other than the maddeningly vague "soon".
is...@google.com <is...@google.com> #15
Thanks for the update @sbarta. It is good that you are keeping us informed. This is a very critical and blocking bug for anyone developing with maps.
Description
The Generated Wrapper Scripts [1] are super cool for clank, but I think there's room for improvement when building WebView. I tried them out today, and here's some feedback:
* /bin/system_webview_google_apk install: on N+, this should also set the webview provider
* /bin/system_webview_google_apk argv: I'm pleasantly surprised this uses WebView's CLI file--great!
* /bin/system_webview_google_apk launch: understandably, this fails with "APK does not support launching with URLs." But, a nice default might be to launch WebView shell instead?
* /bin/system_webview_google_apk {logcat,ps,mem-usage}:
- The common issue is that these don't respect WebView's browser process
- For ps/mem-usage, it means we're missing some information
- Logcat filtering strips browser process logs, which essentially requires using the "--verbose" flag
- Bright side: all of these correctly handle OOP renderers on O+
Some of these issues are mitigated by switching to /bin/system_webview_shell_apk instead, but then it has new problems:
* /bin/system_webview_shell_apk install: installs the shell, which is the right thing in this case
* /bin/system_webview_shell_apk argv: doesn't work
* /bin/system_webview_shell_apk launch: this works!
* /bin/system_webview_shell_apk {logcat,ps,mem-usage}: these see the browser process, but not the renderer process
---
It'd be great to have one wrapper which has the best of both (and also sets webview provider). I'm not sure how feasible this is, but I thought I'd share my experience.
[1]