Same problem here. Any ideas on how to solve this?
Ios build give error on ipad 13.7
Apple Watch Plugin
Hey @Tanakasan1734 did you ever come across to anything related to apple watch app development with ionic-angular?
Apple Watch Extension in a Cordova based App
Hi @EinfachHans how did you develop your apple watch app using ionic-angular ?
I want to integrate google map api for a bus station
I want you to guide me. How I can do this, Any tutorial.?
I want to integrate google map api for a bus station
There is a good Cordova Plugin for Google Maps in Ionic: https://github.com/mapsplugin/cordova-plugin-googlemaps
Follow the Guide and get familiar with it
Ios build give error on ipad 13.7
try this steps
ionic cordova platform add ios
ionic cordova prepare ios
ionic cordova build ios --prod
then open workspace from project-name/platforms/ios and try to build from Xcode .
If not solved your issue try:
ionic cordova platform rm ios
ionic cordova platform add ios
ionic cordova prepare ios
then open workspace from project-name/platforms/ios and try to build from Xcode .
Ionic5: Loading items using ion-infinite-scroll position="top" is not smooth
I have fixed this by adding some conditional checks on <ion-infinite-scroll>
and changed how async data is loaded.
In case someone is interested to see a simple working demo of this feature please check out this StackBlitz I have created.
How to Read File as Array From SD Card with cordova-plugin-file
Sorry I missed your message.
I migrated from Buffer Array to just use the file as an audio Source. And instead of using the filePlugin I use Ionic’s webview ‘convertFileSrc’ with the file URI. But it also has some problems.
How to Read File as Array From SD Card with cordova-plugin-file
I wonder, if I (find the time to) migrate to Capacitor, how would I resolve the native src path since ionic-webview is not supported and it says there it uses WKWebView
that is just for iOS
Can i directly upload to an ftp and server the app for dev on a webspace without "ionic build"?
Can i directly upload each file on change (funcitonality in intellij) to an ftp and server the app for devs on a webspace without “ionic build”?
The keyboard doesn't work done with inputs
mean I will have to rewrite the app with react native … this is a big problem
Can i directly upload to an ftp and server the app for dev on a webspace without "ionic build"?
Which framework are you using? Angular? @mcookie
How to Read File as Array From SD Card with cordova-plugin-file
I don’t believe you have to bother.
the Filesystem API supports using full
file://
paths, or readingcontent://
files on Android. Simply leave out thedirectory
param to use a full file path.
Can i directly upload to an ftp and server the app for dev on a webspace without "ionic build"?
@armandovillalta’s question is great, but in general you need to do something in order to fold any changes into a runnable form.
How to Read File as Array From SD Card with cordova-plugin-file
(post withdrawn by author, will be automatically deleted in 24 hours unless flagged)
How to Read File as Array From SD Card with cordova-plugin-file
In my Use case I let the user choose an audio file from the device and then I assign it to an Audio
element, like (super simplified example):
const audio = new Audio();
audio.src = webview.converFileSrc(fileUriOrNativePathDepending);
audio.play();
You mean I could just do ?
audio.src = capacitorPlugin.getUri({path: filePickerNativePathHere})
Or I am understanding it wrong?
Because if I can do what I wrote above I will really focus my efforts in migrate to capacitor.
How to Read File as Array From SD Card with cordova-plugin-file
I believe you would want convertFileSrc.
How to Read File as Array From SD Card with cordova-plugin-file
Thanks a lot for your pointers!
I will migrate and try capacitor as soon as posible
Can i directly upload to an ftp and server the app for dev on a webspace without "ionic build"?
Yes, @armandovillalta , i do use Angular.
The ionic serve thing is able to have it runnable nearly instantly, @rapropos . The ionic build takes forever, which makes it unusable for seeing instant results during development
The keyboard doesn't work done with inputs
@rapropos sorry u can help me?