samsung-mobile
Prevent Samsung predictive text in HTML form
I’ve tried different things and it seems that on mobile you currently have no chance to do this in a proper way. According to Safari Developer Docs there is support https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/Attributes.html but it seems that this is more related to the Desktop Safari than iOS. Additionally, spellcheck could do it but currently, according to http://caniuse.com/#feat=spellcheck-attribute … Read more
Getting DeadSystemException on Samsung SMG950U (Android 8.0.0) and SM 955 (Android 8.0.0)
Getting DeadSystemException on Samsung SMG950U (Android 8.0.0) and SM 955 (Android 8.0.0)
WebView native crash: libwebviewchromium.so “Operation not permitted” – ILL_ILLOPC
WebView native crash: libwebviewchromium.so “Operation not permitted” – ILL_ILLOPC
Android Usage Access for Android 5 Samsung devices
Sorry for the late reply, I hope you have found a good solution, but if not or for other people who have this problem, this bug seems to exist in some Samsung models, to avoid the crash of your app, maybe you can check if your intent can be handled PackageManager packageManager = getActivity().getPackageManager(); if … Read more
Why can’t OSX detect android Galaxy S for USB debugging?
Have you tried connecting the phone using a powered USB hub? I haven’t tried it yet but found this blog post that suggests it may help for Samsung Galaxy devices. How to set up ADB (Android Debug Bridge) in Mac OSX
Samsung Galaxy s3 emulator settings
I had to set the device ram to 512 in emulator. Above configs were the best possible match I could get after comparing with the real Galaxy S3 device.
Capture keys typed on android virtual keyboard using javascript
Unfortunately it seems you cannot do much here. Keypress event is deprecated, thus not fired. 229 on keyup and keydown indicates the keyboard buffer is busy. The reason – when you press a key – the input is still not guaranteed to be what the user pressed, because of auto suggest and other events that … Read more
appcompat-v7 v21.0.0 causing crash on Samsung devices with Android v4.2.2
I found the proper solution here: https://stackoverflow.com/a/26641388/1266123 By using -keep class !android.support.v7.internal.view.menu.**,android.support.v7.** {*;} instead of -keep class android.support.v7.** {*;}