Deploy Framework7 apps to Android with PhoneGap/Cordova | Beginner Tutorial

This is an absolute beginner’s tutorial for those of you who have never before deployed a Framework7 app to a real Android device. In this video tutorial you will learn how to: Create the app Build Deploy to Android Emulator Run on real Android device Android Framework7 Video tutorial Steps Here are all the steps […]


How to read cookies in a Phonegap-based Android app with Java

Just took me forever to get this straight, here is the trick on how to do it: CookieSyncManager sym = CookieSyncManager.createInstance(appView.getContext()); CookieManager com = CookieManager.getInstance(); sym.sync(); String cookie = com.getCookie(“file:///android_asset”); if (cookie == null) Log.d(“MainActivity”, “Cookie is null”); else{ Log.d(“MainActivity”, “Cookie exists, value is:”); Log.d(“MainActivity”, cookie); }