Phonegap build – Open external page in InAppBrowser or childbrowser with no toolbar and close it?

OK, problem 1 to close is solved. This is what I use to open an external page in the InAppBrowser. From the page that I load in the InAppBrowser, I can close the InAppBrowser itself, returning to my app from where I opened the browser. Create a page on your server – closeInAppBrowser.html that is … Read more

Share something to a phonegap app

To appear in this list you have to modify the AndroidManifest.xml file and add the following lines under your activity : <intent-filter> <action android:name=”android.intent.action.SEND” /> <category android:name=”android.intent.category.DEFAULT” /> <data android:mimeType=”text/plain” /> </intent-filter> This will make your app appear in the list. Now I think you may probably also want to know how to handle this … Read more

Cordova build: Please install Android target: “android-22”. I dont want android-22. I want android-19 – what do I do?

For SDK 21 (“android-21”) $ cordova platforms remove android $ cordova platforms add [email protected] For SDK 22 (Android 4.1.1, “android-22”) $ cordova platforms remove android $ cordova platforms add [email protected] More info: https://cordova.apache.org/announcements/2015/07/21/cordova-android-4.1.0.html

Cordova / Ionic : $http request not processing while emulating or running on device

With the update of Cordova 4.0.0, you will face an issue of not being able to make HTTP calls to RESTful APIs and load external resources, which include other HTMLs/video/audio/images. Whitelisting the domains using cordova-plugin-whitelist solves the issue. remove whitelist plugin if already installed: cordova plugin remove cordova-plugin-whitelist Add the whitelist plugin via CLI: cordova … Read more