(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)
Unable to build/run ionic cordova app on android
Is Webstorm Good For Angular?
Hello Everyone, I am working on angular and I am looking to free angular ide, one of my friend was suggested to go with webstorm ide. I just want to know which angular ide is best for the backend process?
How to make a certain tab active when app loads
have a look this link
Using Ionic React without TypeScript
No, however you can simply rename all *.ts or *.tsx files to *.js, remove any TypeScript-specific features and everything should work with regular JavaScript as well.
UIWebView references in blank project
I’m using cordova-ios@6.0.0. But still my app is getting rejected from app store duew to UIWebView error. Please help me and m not using in-app-browser plugin though…
I have problem in using google map in ionic
i am using the code below for google map but when i clicked to map returned inaccurate
latitude and longitude
please tell me if there any problem
currentlocation() {
setTimeout(() => {
this.getGoogleMaps()
.then(googleMaps => {
this.geolocation.getCurrentPosition().then((resp) => {
this.lat = resp.coords.latitude;
this.lng = resp.coords.longitude;
const mapEl = this.mapElementRef.nativeElement;
const mapitem = new googleMaps.Map(mapEl, {
center: { lat: resp.coords.latitude, lng: resp.coords.longitude },
zoom: 17
});
googleMaps.event.addListenerOnce(mapitem, ‘idle’, () => {
this.renderer.addClass(mapEl, ‘visible’);
});
let marker = new googleMaps.Marker({
position: { lat: resp.coords.latitude, lng: resp.coords.longitude },
map: mapitem,
title: ‘’,
draggable: true
});
this.markers.push(marker);
mapitem.addListener(‘click’, event => {
this.setMapOnAll();
this.lat = event.latLng.lat();
this.lng = event.latLng.lng();
marker = new googleMaps.Marker({
position: event.latLng,
map: mapitem,
title: ‘’,
draggable: true
});
this.markers.push(marker);
});
marker.addListener(‘drag’, event => {
this.lat = event.latLng.lat();
this.lng = event.latLng.lng();
});
});
})
.catch(err => {
console.log(err);
});
}, 0);
}
Search Bar Logic
The example in the documentation seems fairly straightforward to me. Here’s a minimal demo I just put together on Stackblitz.
UIWebView references in blank project
Hi Anjali,
It should not have happened as cordova-ios@6.0.0 removed UIWuebView. I’d encourage you to do a grep under platforms/ios for UIWebView. Many other plugins still use UIWebView unfortunately such as admobfree, share, etc.
Once you figure out the plugin that causes it, either update your plugin or remove it if there is not any solution to switch over from UIWebView.
I hope this helps…
Doug
Appflow ignores strings from config.xml (Bluetooth Usage Description)
@edriven Thanks for your reply. When you say:
You will need to redeploy a binary for this.
What do you mean exactly? could you be more explicit please?
PS: I still think that the problem is Xcode 11E because it is the only thing that has changed from one build to another build, but maybe I am wrong. In any case if I can’t access Xcode 11A or the Ionic people take time to solve this problem, does anyone know of a way to modify the info.plist or some other temporary solution?
UIWebView references in blank project
Hi @doug1e, thank you for quick reply. I will try what you just said.
UIWebView references in blank project
@doug1e This is my plugins list
Checking com.googlemaps.ios for pods.
Checking com.razorpay.cordova for pods.
com.razorpay.cordova requires pod: razorpay-pod
Checking com.telerik.plugins.nativepagetransitions for pods.
Checking cordova-plugin-actionsheet for pods.
Checking cordova-plugin-add-swift-support for pods.
Checking cordova-plugin-android-permissions for pods.
Checking cordova-plugin-crop for pods.
Checking cordova-plugin-device for pods.
Checking cordova-plugin-dialogs for pods.
Checking cordova-plugin-file for pods.
Checking cordova-plugin-file-transfer for pods.
Checking cordova-plugin-filepath for pods.
Checking cordova-plugin-geolocation for pods.
Checking cordova-plugin-googlemaps for pods.
Checking cordova-plugin-nativegeocoder for pods.
Checking cordova-plugin-networkinterface for pods.
Checking cordova-plugin-splashscreen for pods.
Checking cordova-plugin-statusbar for pods.
Checking cordova-plugin-whitelist for pods.
Checking cordova-plugin-x-socialsharing for pods.
Checking cordova-sms-plugin for pods.
Checking es6-promise-plugin for pods.
Checking mx.ferreyra.callnumber for pods.
Checking phonegap-plugin-barcodescanner for pods.
Checking phonegap-plugin-push for pods.
phonegap-plugin-push requires pod: FirebaseMessaging
Could you tell me which plugin causes the issue?
ITMS-90809: UIWebView API Deprecation (followed all instructions, however I'm getting the deprecation message)
Does Cordova razorpay plugin causes the same deprecation issue?
How to make a certain tab active when app loads
> use [selectedIndex]='index number' for <ion-tabs>
How can I schedule local notification specific day in every week?
I believe it is index the same as the JS Date indexing, so yes, Sunday - Saturday : 0 - 6
Capacitor Device addListener
I need to find out when the device changes from on battery to plugged in. I can see there is a Device.addListener but I can’t find any documentation on the “event name”.
Using a StencilJS project with Electron for Capacitor
So in order to test this I created a new Stencil project through npm init stencil with the ionic-pwa template.
To get this working with Capacitor Electron, was:
- Make sure the outputTargets array has a
{type: 'www', serviceWorker: null, baseUrl: './'}entry in the array, or similar for your needs. - Make sure all
hrefandsrcprops on tags in theindex.htmlbegin with./not just/ - Make a defaulting route redirect for example:
<ion-route-redirect from="*" to="/"></ion-route-redirect>after your other route entries.
Try these things in your project and let me know how it goes.
E2e tests page navigation
Is it possible the solution to my e2e testing problem would fix your problem too? See
Integrating Apple Pay with IONIC-3
Apple pay really has nothing to do with ionic.
While you should upgrade from v3 to the latest release (as v3 is no longer getting commits), you could use a cordova plugin and be fine.
(NATIVE AUDIO) Asset not found IOS
Thanks so much @alaswer that link helped me get past this issue.

