Welcome to a real coding world. Developer Helpline is an open community for anybody that codes. We assist you get answers to your hardest coding questions, share information along with your associates.
Login to join a coding world. Developer Helpline is an open community for anybody that codes. We assist you get answers to your hardest coding questions, share information along with your associates.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this answer should be reported.
An unhandled exception occurred: The target entry-point
Bittu Kumar
This issue may be caused because of any fatal error in the geolocation plugin installed in your project. Try to remove/uninstall the @ionic-native/camera plugin using commands below: ionic cordova plugin remove cordova-plugin-camera npm install @ionic-native/camera Then add/install the plugin againRead more
Execution failed for task ‘:app:mergeDebugResources’. ionic
Bittu Kumar
This issue generally comes, if there some broken file gets added in android platform folders, use the following steps, it may solve your problem: Remove all the icon and splash image inside the ./resources/android (broken image maybe). Then generate icons and splash again by running ionic cordova reRead more
@ionic-native/[email protected] requires a peer of @ionic-native/[email protected]^5.1.0 but none is installed.
Bittu Kumar
It seems this issue is caused because of any fatal error in the geolocation plugin installed in your project. Try to remove/uninstall the @ionic-native/geolocation plugin using commands below: ionic cordova plugin remove cordova-plugin-geolocation npm install @ionic-native/geolocation Then add/instaRead more
Source path does not exist: resources/android/xml/network_security_config.xml
Bittu Kumar
I had also this problem, I did some changes in config.xml . I removed this piece of code <resource-file src="resources/android/xml/network_security_config.xml" target="app/src/main/res/xml/network_security_config.xml" /> and It works for me.
Payments to this merchant are not allowed (invalid clientId) – Ionic
Bittu Kumar
Please check for the mode of use for Paypal. If you're using Live Mode then you have to use the Client Id/key like this Else if you're using Sandbox mode, then try this way It worked in my case!
Could not find cordova integration in the default project
Bittu Kumar
I had the same issue. You can find more info here : Ionic documentation Try this : ionic cordova prepare And then : ionic serve --devapp
Could not find an installed version of Gradle either in Android Studio, or on your system to install the gradle wrapper. Please include gradle in your path, or install Android Studio
Bittu Kumar
Download gradle binary from the link in the answer Gradle Download Extract the zip file to 'C:\Gradle' or somewhere else open Edit Environment variable dialog from start menu > Search Click 'New' under system variables and add as below Variable Name GRADLE_HOME Variable Value C:\Gradle\gradle-4.0Read more