Android 4.3 and Phonegap, Cant Tap Link

Android 4.3 and PhoneGap, cant tap link

Turns out this was easily solved by the old CSS transform trick that seems to cure all of Androids webview ills. I just added this css class to the scrolling navbar:

.androidpaintfix {
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0, 0, 0);
}

Is there a minimum Android version for supporting inappbrowser?

From my experience, I've used phonegap a far as Android 2.1 . The problem you could have on such older versions is the phonegap version.

You should provide further information such as phonegap version.

But I can assure you that Android 4.3 has a very broad support for all Phonegap/Cordova 5+ plugins.

If I were you I wolud try updating phonegap version according to your desire of minimum Android version you want your app to be executed on.

For example, until Android 2.3 on inappbrowser apps it wasn't able to use overflow scroll, so you had to use an external plugin to get that effect, which was really annoying.

Hope this helps.



Related Topics



Leave a reply



Submit