I'm developing social application using cordova 3.1.0 using 4.6 xcode.and my os x version is 10.8.5.
Now,I'm trying to implementing twitter plugin for my application.i got the source from this :LINK
I've gone thru step by step.I also integrated child-browser framework.
Now.i got this Error:
2013-10-17 12:15:17.141 FinalTwitter[12484:c07] ERROR: Method 'showWebPage:' not defined in Plugin 'ChildBrowser'
2013-10-17 12:15:17.141 FinalTwitter[12484:c07] -[CDVCommandQueue executePending] [Line 117] FAILED pluginJSON = [
"ChildBrowser383058088",
"ChildBrowser",
"showWebPage",
[
"https:\/\/api.twitter.com\/oauth\/authorize?oauth_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxx&oauth_token_secret=xxxxxxxxxxxxxxxxxxxxxxxxxxxx&oauth_callback_confirmed=true",
{
"showLocationBar" : true,
"locationBarAlign" : "top"
}
]
]
can any one help me?
The plugin is not called ChildBrowser anymore but inAppBrowser ;) You should update the code I believe.
Related
Version used: "#awesome-cordova-plugins/in-app-purchase-2": "^5.46.0",
Actions on Webstorm (ionic project) :
ionic build
npx cap sync
npx cap open android
Actions on Android Studio:
Generate a signed bundle
Actions on google play console:
Create new release with the signed bundle
Warning on google play :
We've detected that this app is using an old version of Google Play Billing. By November 1, 2022, all app updates must use Billing Library version 4 or newer. Update to Billing Library 4 before this date.
What I tried without success:
Add these two lines in the build.graddle:app and in capacitor.build.graddle and in the capacitor-cordova-android-plugins/build.graddle:
dependencies {
....
implementation "com.android.billingclient:billing:5.0.0"
}
What I want:
How do I update the PlayBillingLibrary from ionic and have it be taken into account with Capacitor when i sync my app on android (npx cap sync) ?
Thanks in advance
You need to update cordova-plugin-purchase to version 11.0.0 or higher (see RELEASE_NOTES.md).
I'm using Phonegap Cordova 3.6.3 and run my project in eclipse i found an error
10-30 11:13:42.463: E/Web Console(2447): Uncaught Error: Module org.apache.cordova.inappbrowser.inappbrowser does not exist. at file:///android_asset/www/cordova.js:1385
To be able to use core plugins like inapp browser, you need first to add the plugin.
I suggest you read the docs : http://plugins.cordova.io/#/package/org.apache.cordova.inappbrowser
Installation :
cordova plugin add org.apache.cordova.inappbrowser
(This is since version 3.x of cordova/phonegap. Before that all core plugins where included)
I am working on barcode scanning App. I have download the sample code from GitHub. When I run that project I get an error. Please help me to solve it.
ERROR: Plugin 'NetworkStatus' not found, or is not a CDVPlugin. Check your plugin mapping in Cordova.plist.
2012-11-28 14:12:36.198 BarCodeScannerCDV[942:40b] FAILED pluginJSON = {"className":"NetworkStatus","methodName":"getConnectionInfo","arguments":["NetworkStatus0"]}
Thanks.
I suggest you to used updated phonegap framework (Cordova 2.2.0), because this was a bug in Cordova 1.6.0.
Please see following comment by Shazron Abdullah in Google Phonegap group:
There is a new Cordova.plist because of the unified JS changes. Check
out the "Cordova Upgrade Guide" in your .dmg (Guides subfolder), or:
"Upgrading Cordova 1.5.0 projects to 1.6.0" step 8 of
https://github.com/apache/incubator-cordova-ios/blob/master/guides/Cordova%20Plugin%20Upgrade%20Guide.md#upgrading-older-cordova-plugins-to-16x
The BarcodeScanner plugin for iOS-Phonegap is stable one, please update your phonegap framework to 2.2.0.
In Phonegap 1.6.0 and below, network connection class name is Network Status but for Phonegap 1.6.1 and above, network connection class name is CDVConnection.
It was working fine with Cordova 1.6.1,but trying with cardova 1.8.0 ,
I get these alerts:
1. Cordova Facebook Connect plugin fail on login!
2. Cordova Facebook Connect plugin fail on auth.status!
What can i do?
I have two phones one with android 2.2.1 and the other with android 2.3.3 and I get the error on the 2.2.1 but not on the 2.3.3 not sure why but maybe you should try installing on another phone. I'm wondering if its timing out as this old HTC is slow.
When i was used this plugin [ https://github.com/sandstein/phonegap-transition-plugin ] in my android app, i had found a error like 04-18 00:56:02.495: D/CordovaLog(359): [DEPRECATION NOTICE] window.addPlugin and window.plugins will be removed in version 2.0. How can i will use this plugin. I don't know can i use phonegap-plugins [ https://github.com/sandstein/phonegap-plugins ] also? Please help.
The Plugin model is being re-architected. The future Cordova 2.0 plugin scheme has not yet been fully defined. Until then, use the deprecated model and ignore the notices.