Closed milne-dev closed 4 years ago
Any update on this? I have a similar issue when I try to open a dropdown/select pop up dialog. At least in my case, this is an Android issue only, IOS works fine.
I also have this similar issue. any update on this?
+1
+1
same issue its works in IOS but android crash.
Same issue on Android.
Have the same issue on Samsung 8.
It happen when you tap on html page with
W/System.err(25302): at android.view.Window.setWindowManager(Window.java:766)
W/System.err(25302): at android.view.Window.setWindowManager(Window.java:747)
W/System.err(25302): at android.app.Dialog.
W/System.err(25302): at android.app.AlertDialog.
W/System.err(25302): at android.app.AlertDialog$Builder.create(AlertDialog.java:1123)
W/System.err(25302): at uK2.a(PG:3)
W/System.err(25302): at rs2.
W/System.err(25302): at org.chromium.content.browser.input.SelectPopup.show(PG:12)
W/System.err(25302): at android.os.MessageQueue.nativePollOnce(Native Method)
W/System.err(25302): at android.os.MessageQueue.next(MessageQueue.java:326)
W/System.err(25302): at android.os.Looper.loop(Looper.java:181)
W/System.err(25302): at android.app.ActivityThread.main(ActivityThread.java:7050)
W/System.err(25302): at java.lang.reflect.Method.invoke(Native Method)
W/System.err(25302): at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:493)
W/System.err(25302): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:965)
F/chromium(25302): [FATAL:jni_android.cc(249)] Please include Java exception stack in crash report
Same issue on Android.
Related to #34248
Same issue on Android.
Same issue, to reproduce:
Set the initial url to: https://m.youtube.com
play any video
click on the "Setting" icon on the video, try to select a different resolution and the app will crash.
Connected Device: Xiao Mi 9 Android Version: 9.0
Flutter Doctor:
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel beta, v1.15.17, on Linux, locale zh_CN.UTF-8)
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.3)
[✓] Android Studio (version 3.6)
[✓] VS Code (version 1.43.2)
[✓] Connected device (1 available)
• No issues found!
Error Message:
W/System.err(16551): java.lang.ClassCastException: $Proxy1 cannot be cast to android.view.WindowManagerImpl
W/System.err(16551): at android.view.Window.setWindowManager(Window.java:766)
W/System.err(16551): at android.view.Window.setWindowManager(Window.java:747)
W/System.err(16551): at android.app.Dialog.<init>(Dialog.java:194)
W/System.err(16551): at android.app.AlertDialog.<init>(AlertDialog.java:201)
W/System.err(16551): at android.app.AlertDialog$Builder.create(AlertDialog.java:1099)
W/System.err(16551): at Tz.<init>(PG:6)
W/System.err(16551): at org.chromium.content.browser.input.SelectPopup.show(PG:12)
W/System.err(16551): at android.os.MessageQueue.nativePollOnce(Native Method)
W/System.err(16551): at android.os.MessageQueue.next(MessageQueue.java:326)
W/System.err(16551): at android.os.Looper.loop(Looper.java:165)
W/System.err(16551): at android.app.ActivityThread.main(ActivityThread.java:6815)
W/System.err(16551): at java.lang.reflect.Method.invoke(Native Method)
W/System.err(16551): at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:547)
W/System.err(16551): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:873)
F/chromium(16551): [FATAL:jni_android.cc(249)] Please include Java exception stack in crash report
F/libc (16551): Fatal signal 5 (SIGTRAP), code -6 (SI_TKILL) in tid 16551 (bot.v2rayuser01), pid 16551 (bot.v2rayuser01)
*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
Build fingerprint: 'Xiaomi/cepheus/cepheus:9/PKQ1.181121.001/V10.2.35.0.PFACNXM:user/release-keys'
Revision: '0'
ABI: 'arm64'
pid: 16551, tid: 16551, name: bot.v2rayuser01 >>> com.bigaibot.v2rayuser01 <<<
signal 5 (SIGTRAP), code -6 (SI_TKILL), fault addr --------
Abort message: '[FATAL:jni_android.cc(249)] Please include Java exception stack in crash report
'
x0 0000000000000000 x1 0000000000000081 x2 000000007fffffff x3 0000000000000000
x4 0000000000000000 x5 0000000000000000 x6 0000000000000000 x7 7f7f7f7fffff7f7f
x8 0000000000000000 x9 0000000000000000 x10 0000000000000001 x11 0000000000000000
x12 0000007985ef1fc0 x13 ffffffffffffffff x14 ffffffffff000000 x15 ffffffffffffffff
x16 0000007a41026220 x17 0000007a40f36250 x18 0000000000000010 x19 0000007ff4f962a0
x20 0000007ff4f962a8 x21 0000007ff4f962b0 x22 000000000000004f x23 0000007a410283c0
x24 00000079a8abe000 x25 0000007a427005e0 x26 000000799fb00858 x27 0000007ff4f95df0
x28 0000000000000070 x29 0000007ff4f96240
sp 0000007ff4f95de0 lr 00000079a67fd9b8 pc 00000079a67fdba0
backtrace:
#00 pc 000000000208dba0 /data/app/com.google.android.webview-9gBu1_rpkkFaHnLsSnRgcg==/lib/arm64/libwebviewchromium.so
Got it working this way. I was getting the cash using the webview plugin, but it might still apply with modifications:
In FlutterWebView.java, change this:
webView = new InputAwareWebView(activityContext, containerView);
To this:
Context activityContext = context; Context appContext = context.getApplicationContext(); if (appContext instanceof FlutterApplication) { Activity currentActivity = ((FlutterApplication) appContext).getCurrentActivity(); if (currentActivity != null) { activityContext = currentActivity; } } webView = new InputAwareWebView(activityContext, containerView);
Important!
And if you are overriding FlutterApplication, you have to implement ActivityLifecycleCallbacks, and call setCurrentActivity from the onActivityCreated callback, or else currentActivity will be null.
Now the select dialogs are showing for me.
Got it working this way. I was getting the cash using the webview plugin, but it might still apply with modifications:
In FlutterWebView.java, change this:
webView = new InputAwareWebView(activityContext, containerView);
To this:
Context activityContext = context; Context appContext = context.getApplicationContext(); if (appContext instanceof FlutterApplication) { Activity currentActivity = ((FlutterApplication) appContext).getCurrentActivity(); if (currentActivity != null) { activityContext = currentActivity; } } webView = new InputAwareWebView(activityContext, containerView);
Important!
And if you are overriding FlutterApplication, you have to implement ActivityLifecycleCallbacks, and call setCurrentActivity from the onActivityCreated callback, or else currentActivity will be null.
Now the select dialogs are showing for me.
I'm getting this error when I try your changes
error: cannot find symbol
Activity currentActivity = ((FlutterApplication) appContext).getCurrentActivity();
Any update about this issue ? i'm use this code still getting error when click select option in webview
Context activityContext = context;
Context appContext = context.getApplicationContext();
if (appContext instanceof FlutterApplication) {
Activity currentActivity = ((FlutterApplication) appContext).getCurrentActivity();
if (currentActivity != null) {
activityContext = currentActivity;
}
}
if i'm using this code
Context activityContext = context;
Context appContext = context.getApplicationContext();
if (appContext != null) {
activityContext = appContext;
}
It's not force close but select option not showing
Estoy utilizando el siguiente codigo igual que @ukieTux , la app no se cierra, pero no muestra el contenido de las listas. Que me recomiendan?
Context activityContext = context; Context appContext = context.getApplicationContext(); if (appContext != null) { activityContext = appContext; } if (appContext instanceof FlutterApplication) { Activity currentActivity = ((FlutterApplication) appContext).getCurrentActivity(); if (currentActivity != null) { activityContext = currentActivity; } } webView = new InputAwareWebView(activityContext, containerView);
Related to #25767 @Michael77 . If is the same issue, please close this one
Please follow up on https://github.com/flutter/flutter/issues/25767, I'm closing the current one as duplicate. If you disagree please write in the comments and I will reopen it
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of flutter doctor -v
and a minimal reproduction of the issue.
Steps to Reproduce
Example
Logs
logs
``` [ +18 ms] executing: [/usr/lib/flutter/] git rev-parse --abbrev-ref --symbolic @{u} [ +19 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ ] origin/stable [ ] executing: [/usr/lib/flutter/] git rev-parse --abbrev-ref HEAD [ +5 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ ] stable [ ] executing: [/usr/lib/flutter/] git ls-remote --get-url origin [ +4 ms] Exit code 0 from: git ls-remote --get-url origin [ ] https://github.com/flutter/flutter.git [ ] executing: [/usr/lib/flutter/] git log -n 1 --pretty=format:%H [ +4 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ ] 8661d8aecd626f7f57ccbcb735553edc05a2e713 [ ] executing: [/usr/lib/flutter/] git log -n 1 --pretty=format:%ar [ +5 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ ] 5 weeks ago [ ] executing: [/usr/lib/flutter/] git describe --match v*.*.* --first-parent --long --tags [ +6 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ ] v1.2.1-0-g8661d8aec [ +48 ms] executing: /home/derek/Android/Sdk/platform-tools/adb devices -l [ +6 ms] Exit code 0 from: /home/derek/Android/Sdk/platform-tools/adb devices -l [ ] List of devices attached 9886264a5a55395a37 device usb:1-12 product:heroltebmc model:SM_G930W8 device:heroltebmc transport_id:6 [ +113 ms] Found plugin firebase_auth at /home/derek/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.8.1+4/ [ +2 ms] Found plugin firebase_core at /home/derek/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.3.1+1/ [ +1 ms] Found plugin firebase_messaging at /home/derek/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-4.0.0+1/ [ +1 ms] Found plugin firebase_storage at /home/derek/.pub-cache/hosted/pub.dartlang.org/firebase_storage-1.1.0/ [ +8 ms] Found plugin geolocator at /home/derek/.pub-cache/git/flutter-geolocator-f782613da497e7b6816c134e7e22f7b936028213/ [ +1 ms] Found plugin google_api_availability at /home/derek/.pub-cache/git/flutter-google-api-availability-74802dd35628cc2cc00437a543dc4b9829d098e2/ [ ] Found plugin google_maps_flutter at /home/derek/.pub-cache/hosted/pub.dartlang.org/google_maps_flutter-0.4.0/ [ ] Found plugin google_sign_in at /home/derek/.pub-cache/hosted/pub.dartlang.org/google_sign_in-4.0.1+1/ [ +3 ms] Found plugin image_picker at /home/derek/.pub-cache/hosted/pub.dartlang.org/image_picker-0.5.0+3/ [ +6 ms] Found plugin package_info at /home/derek/.pub-cache/hosted/pub.dartlang.org/package_info-0.4.0+1/ [ +1 ms] Found plugin permission_handler at /home/derek/.pub-cache/git/flutter-permission-handler-10876e4fa82f3d0a98e8cd2b29122daa696bc169/ [ +3 ms] Found plugin qr_reader at /home/derek/.pub-cache/hosted/pub.dartlang.org/qr_reader-0.1.3/ [ +3 ms] Found plugin shared_preferences at /home/derek/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.1+1/ [ +7 ms] Found plugin url_launcher at /home/derek/.pub-cache/hosted/pub.dartlang.org/url_launcher-5.0.1/ [ +2 ms] Found plugin webview_flutter at /home/derek/.pub-cache/hosted/pub.dartlang.org/webview_flutter-0.3.5/ [ +23 ms] Found plugin firebase_auth at /home/derek/.pub-cache/hosted/pub.dartlang.org/firebase_auth-0.8.1+4/ [ ] Found plugin firebase_core at /home/derek/.pub-cache/hosted/pub.dartlang.org/firebase_core-0.3.1+1/ [ ] Found plugin firebase_messaging at /home/derek/.pub-cache/hosted/pub.dartlang.org/firebase_messaging-4.0.0+1/ [ ] Found plugin firebase_storage at /home/derek/.pub-cache/hosted/pub.dartlang.org/firebase_storage-1.1.0/ [ +3 ms] Found plugin geolocator at /home/derek/.pub-cache/git/flutter-geolocator-f782613da497e7b6816c134e7e22f7b936028213/ [ ] Found plugin google_api_availability at /home/derek/.pub-cache/git/flutter-google-api-availability-74802dd35628cc2cc00437a543dc4b9829d098e2/ [ ] Found plugin google_maps_flutter at /home/derek/.pub-cache/hosted/pub.dartlang.org/google_maps_flutter-0.4.0/ [ ] Found plugin google_sign_in at /home/derek/.pub-cache/hosted/pub.dartlang.org/google_sign_in-4.0.1+1/ [ +1 ms] Found plugin image_picker at /home/derek/.pub-cache/hosted/pub.dartlang.org/image_picker-0.5.0+3/ [ +2 ms] Found plugin package_info at /home/derek/.pub-cache/hosted/pub.dartlang.org/package_info-0.4.0+1/ [ ] Found plugin permission_handler at /home/derek/.pub-cache/git/flutter-permission-handler-10876e4fa82f3d0a98e8cd2b29122daa696bc169/ [ +2 ms] Found plugin qr_reader at /home/derek/.pub-cache/hosted/pub.dartlang.org/qr_reader-0.1.3/ [ +1 ms] Found plugin shared_preferences at /home/derek/.pub-cache/hosted/pub.dartlang.org/shared_preferences-0.5.1+1/ [ +4 ms] Found plugin url_launcher at /home/derek/.pub-cache/hosted/pub.dartlang.org/url_launcher-5.0.1/ [ +1 ms] Found plugin webview_flutter at /home/derek/.pub-cache/hosted/pub.dartlang.org/webview_flutter-0.3.5/ [ +18 ms] /home/derek/Android/Sdk/platform-tools/adb -s 9886264a5a55395a37 shell getprop [ +82 ms] ro.hardware = samsungexynos8890 [ +448 ms] Launching lib/main.dart on SM G930W8 in debug mode... [ +11 ms] Initializing gradle... [ +8 ms] Using gradle from /home/derek/projects/urbanfind/android/gradlew. [ +40 ms] executing: /home/derek/projects/urbanfind/android/gradlew -v [ +381 ms] ------------------------------------------------------------ Gradle 4.10.2 ------------------------------------------------------------ Build time: 2018-09-19 18:10:15 UTC Revision: b4d8d5d170bb4ba516e88d7fe5647e2323d791dd Kotlin DSL: 1.0-rc-6 Kotlin: 1.2.61 Groovy: 2.4.15 Ant: Apache Ant(TM) version 1.9.11 compiled on March 23 2018 JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b01) OS: Linux 5.0.2-arch1-1-ARCH amd64 [ +5 ms] Initializing gradle... (completed in 0.4s) [ ] Resolving dependencies... [ ] executing: [/home/derek/projects/urbanfind/android/] /home/derek/projects/urbanfind/android/gradlew app:properties [ +522 ms] > Configure project :app ........................................................................... [ +923 ms] I/zygote64(20105): Do partial code cache collection, code=28KB, data=24KB [ ] I/zygote64(20105): After code cache collection, code=27KB, data=24KB [ ] I/zygote64(20105): Increasing code cache capacity to 128KB [+1448 ms] D/NetworkSecurityConfig(20105): No Network Security Config specified, using platform default [ +9 ms] I/System.out(20105): (HTTPLog)-Static: isSBSettingEnabled false [ +2 ms] I/System.out(20105): (HTTPLog)-Static: isSBSettingEnabled false [ +59 ms] I/System.out(20105): (HTTPLog)-Static: isSBSettingEnabled false [ +50 ms] I/System.out(20105): (HTTPLog)-Static: isSBSettingEnabled false [ ] I/System.out(20105): (HTTPLog)-Static: isSBSettingEnabled false [ +117 ms] I/zygote64(20105): Do partial code cache collection, code=61KB, data=46KB [ ] I/zygote64(20105): After code cache collection, code=61KB, data=46KB [ ] I/zygote64(20105): Increasing code cache capacity to 256KB [ +146 ms] I/System.out(20105): (HTTPLog)-Static: isSBSettingEnabled false [ +41 ms] I/System.out(20105): (HTTPLog)-Static: isSBSettingEnabled false [+5840 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +60 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [+1457 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +69 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [+1807 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +201 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [ +419 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +134 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [ +444 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +60 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [ +631 ms] I/ (20105): Increase max job count 40 [ +846 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +52 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [ +131 ms] V/Surface (20105): sf_framedrop debug : 0x4f4c, game : false, logging : 0 [ +83 ms] I/WebViewFactory(20105): Loading com.android.chrome version 72.0.3626.121 (code 362612152) [ +9 ms] I/zygote64(20105): no shared libraies, dex_files: 1 [ +79 ms] I/cr_LibraryLoader(20105): Time to load native libraries: 8 ms (timestamps 3408-3416) [ +28 ms] I/chromium(20105): [INFO:library_loader_hooks.cc(42)] Chromium logging enabled: level = 0, default verbosity = 0 [ ] I/cr_LibraryLoader(20105): Expected native library version number "72.0.3626.121", actual native library version number "72.0.3626.121" [ +15 ms] W/cr_ChildProcLH(20105): Create a new ChildConnectionAllocator with package name = com.android.chrome, sandboxed = true [ +7 ms] I/cr_BrowserStartup(20105): Initializing chromium process, singleProcess=false [ +6 ms] W/ResourceType(20105): Failure getting entry for 0x7f120538 (t=17 e=1336) (error -2147483647) [ +99 ms] D/ConnectivityManager(20105): requestNetwork; CallingUid : 10469, CallingPid : 20105 [ +79 ms] W/cr_media(20105): Requires BLUETOOTH permission [ +36 ms] D/ViewRootImpl@4a86fcc[MainActivity](20105): setView = DecorView@18ff215[] TM=true MM=false [ +28 ms] D/ConnectivityManager(20105): requestNetwork; CallingUid : 10469, CallingPid : 20105 [ +10 ms] W/AudioCapabilities(20105): Unsupported mime audio/mpeg-L1 [ ] W/AudioCapabilities(20105): Unsupported mime audio/mpeg-L2 [ +3 ms] W/AudioCapabilities(20105): Unsupported mime audio/x-ms-wma [ +1 ms] W/AudioCapabilities(20105): Unsupported mime audio/x-ima [ +20 ms] W/VideoCapabilities(20105): Unrecognized profile 2130706433 for video/avc [ +2 ms] W/VideoCapabilities(20105): Unrecognized profile 2130706434 for video/avc [ ] W/VideoCapabilities(20105): Unrecognized profile 2130706433 for video/avc [ ] W/VideoCapabilities(20105): Unrecognized profile 2130706434 for video/avc [ +12 ms] W/VideoCapabilities(20105): Unsupported mime video/wvc1 [ +2 ms] W/VideoCapabilities(20105): Unsupported mime video/x-ms-wmv [ +5 ms] D/ViewRootImpl@4a86fcc[MainActivity](20105): dispatchAttachedToWindow [ +1 ms] W/VideoCapabilities(20105): Unrecognized profile 2130706433 for video/avc [ ] W/VideoCapabilities(20105): Unrecognized profile 2130706434 for video/avc [ +11 ms] V/Surface (20105): sf_framedrop debug : 0x4f4c, game : false, logging : 0 [ ] D/ViewRootImpl@4a86fcc[MainActivity](20105): Relayout returned: old=[0,0][0,0] new=[0,0][1080,1680] result=0x7 surface={valid=true 535834914816} changed=true [ +6 ms] D/mali_winsys(20105): EGLint new_window_surface(egl_winsys_display *, void *, EGLSurface, EGLConfig, egl_winsys_surface **, egl_color_buffer_format *, EGLBoolean) returns 0x3000, [1080x1680]-format:1 [ +1 ms] D/OpenGLRenderer(20105): eglCreateWindowSurface = 0x7d1c616e40 [ +16 ms] D/ViewRootImpl@4a86fcc[MainActivity](20105): MSG_RESIZED_REPORT: frame=Rect(0, 0 - 1080, 1680) ci=Rect(0, 0 - 0, 0) vi=Rect(0, 0 - 0, 0) or=1 [ ] W/cr_CrashFileManager(20105): /data/user/0/com.urbanfind.urbanfind/cache/WebView/Crash Reports does not exist or is not a directory [ +22 ms] I/VideoCapabilities(20105): Unsupported profile 4 for video/mp4v-es [ +12 ms] I/zygote64(20105): Do full code cache collection, code=124KB, data=97KB [ +1 ms] I/zygote64(20105): After code cache collection, code=122KB, data=71KB [ +20 ms] W/VideoCapabilities(20105): Unrecognized profile/level 1/32 for video/mp4v-es [ ] W/VideoCapabilities(20105): Unrecognized profile/level 32768/2 for video/mp4v-es [ ] W/VideoCapabilities(20105): Unrecognized profile/level 32768/64 for video/mp4v-es [ +1 ms] W/VideoCapabilities(20105): Unsupported mime video/wvc1 [ +1 ms] W/VideoCapabilities(20105): Unsupported mime video/x-ms-wmv [ +1 ms] W/VideoCapabilities(20105): Unsupported mime video/x-ms-wmv7 [ +3 ms] W/VideoCapabilities(20105): Unsupported mime video/x-ms-wmv8 [ +2 ms] W/VideoCapabilities(20105): Unsupported mime video/mp43 [ +21 ms] W/VideoCapabilities(20105): Unsupported mime video/sorenson [+1615 ms] I/zygote64(20105): Do partial code cache collection, code=122KB, data=76KB [ +1 ms] I/zygote64(20105): After code cache collection, code=122KB, data=76KB [ ] I/zygote64(20105): Increasing code cache capacity to 512KB [ +354 ms] I/chromium(20105): [INFO:CONSOLE(1)] "JQMIGRATE: Migrate is installed, version 1.4.1", source: https://b.stripecdn.com/manage/assets/dashboard.new_account.a8e2b702d87eeed6f783.min.js (1) [ +416 ms] I/chromium(20105): [INFO:CONSOLE(131)] "[Report Only] Refused to load the image 'https://files.stripe.com/links/fl_live_VH9sjdHmLobYZLT81CUZHWT8' because it violates the following Content Security Policy directive: "img-src 'self' data: https://lh3.googleusercontent.com https://stats.g.doubleclick.net/r/collect https://www.google.com/ads/ga-audiences https://www.google-analytics.com/r/collect https://www.google-analytics.com/collect https://secure.gravatar.com/avatar/ https://i0.wp.com https://q.stripe.com https://b.stripecdn.com https://files.stripe.com/files/ https://media.stripe.com https://stripe-images.s3.amazonaws.com https://stripe-support-uploads.s3.amazonaws.com https://s3.amazonaws.com/stripe-uploads/ https://t.stripe.com". [ +2 ms] I/chromium(20105): ", source: https://connect.stripe.com/oauth/authorize?response_type=code&client_id=ca_Dg3c8IxSLT10jz8EjqDfvkdrz6ravP1r&scope=read_write (131) [ +166 ms] I/chromium(20105): [INFO:CONSOLE(1)] "[Report Only] Refused to load the script 'https://www.google.com/recaptcha/api.js?_=1553043881100' because it violates the following Content Security Policy directive: "script-src 'self' 'nonce-+FPADFdj/iv8neVvtfhV9g==' 'unsafe-eval' https://ga.clearbit.com/v1/ga.js https://www.google-analytics.com/analytics.js https://mpsnare.iesnare.com https://b.stripecdn.com https://js.stripe.com 'report-sample'". Note that 'script-src-elem' was not explicitly set, so 'script-src' is used as a fallback. [ +1 ms] I/chromium(20105): ", source: https://b.stripecdn.com/manage/assets/dashboard.new_account.a8e2b702d87eeed6f783.min.js (1) [ +414 ms] I/chromium(20105): [INFO:CONSOLE(0)] "[Report Only] Refused to load the image 'https://www.google.ca/ads/ga-audiences?v=1&aip=1&t=sr&_r=4&tid=UA-12675062-1&cid=1318576112.1553042410&jid=1257728303&_v=j73&z=1188202003&slf_rd=1&random =3361580099' because it violates the following Content Security Policy directive: "img-src 'self' data: https://lh3.googleusercontent.com https://stats.g.doubleclick.net/r/collect https://www.google.com/ads/ga-audiences https://www.google-analytics.com/r/collect https://www.google-analytics.com/collect https://secure.gravatar.com/avatar/ https://i0.wp.com https://q.stripe.com https://b.stripecdn.com https://files.stripe.com/files/ https://media.stripe.com https://stripe-images.s3.amazonaws.com https://stripe-support-uploads.s3.amazonaws.com https://s3.amazonaws.com/stripe-uploads/ https://t.stripe.com". [ +2 ms] I/chromium(20105): ", source: https://connect.stripe.com/oauth/authorize?response_type=code&client_id=ca_Dg3c8IxSLT10jz8EjqDfvkdrz6ravP1r&scope=read_write (0) [+2588 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +481 ms] I/zygote64(20105): Compiler allocated 8MB to compile void android.view.ViewRootImpl.performTraversals() [ +263 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [ +259 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +229 ms] I/zygote64(20105): Do full code cache collection, code=250KB, data=183KB [ ] I/zygote64(20105): After code cache collection, code=212KB, data=139KB [ +651 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [+1523 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +654 ms] I/zygote64(20105): Do partial code cache collection, code=233KB, data=166KB [ +1 ms] I/zygote64(20105): After code cache collection, code=233KB, data=166KB [ ] I/zygote64(20105): Increasing code cache capacity to 1024KB [ +392 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [ +942 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 0 [ +376 ms] D/ViewRootImpl@df86d5c[MainActivity](20105): ViewPostIme pointer 1 [ +142 ms] W/System.err(20105): java.lang.ClassCastException: $Proxy1 cannot be cast to android.view.WindowManagerImpl [ ] W/System.err(20105): at android.view.Window.setWindowManager(Window.java:770) [ ] W/System.err(20105): at android.view.Window.setWindowManager(Window.java:751) [ ] W/System.err(20105): at android.app.Dialog.