Despite limitations, Ionic is the best framework ! even though there is documentation and stuffs, you do make it easy for us to understand and code super fast 🔥 awesome ! ☺️
@fjerbi3 жыл бұрын
I’ve been working with Ionic the last two years, but with all due respect react-native is far better. Ionic is dying, that’s sad, but yeah .
@galaxies_dev3 жыл бұрын
My pleasure!
3 жыл бұрын
I would really like some video about security inside ionic, like some basics about the best way and process to safely store data on web application, storing data in preferences and stuff like that, where to store conection string or sensible data and how to make a safe login enviroment. All of this just to make a safer app
@galaxies_dev3 жыл бұрын
Thanks for the recommendations Gustavo, good and valid points!
@serjmalko62463 жыл бұрын
@@galaxies_dev, Yes, it is will be very use full!
@JaroNavales3 жыл бұрын
Pouchdb + ionic please :)
@elenanikolovska12708 ай бұрын
If i plan on making a chat and storing it locally is sqlite the best way?
@samucancld Жыл бұрын
Which plugin do you recommend to use SQLite with ionic 7 on capacitor 4?
@adeelali59483 жыл бұрын
Hi sir Can you make a video on web rtc video calling in ionic.. Really need that one .
@kelubboy3 жыл бұрын
Yes please I would really appreciate this. Ionic + capacitor + webrtc
@tobiasrappo3 жыл бұрын
Thanks for this. Just doing SQLite ;)
@thamindujanaka12612 жыл бұрын
Hi Simon, Your channel is really help full for me as a Hybrid application developer. I have watch almost all videos you post. I Have one request that is really for my project i need to manage versions in automatic way. i recently heard that there is a project (Trapeze). which will allow to manage versions in both Android and ios. i just check the documentation but not able to find any solution with real implementation. I m using ionic capacitor for my hybrid project. will you be able to post a video on how can this be done in ionic capacitor project Thanks in Advance
@galaxies_dev2 жыл бұрын
You can search my video "Capacitor configure" because it was called like that before, and I also explained Trapeze in the livestream from yesterday (video should be available as well!)
@EvTIC Жыл бұрын
hi ok i have a question. But sometimes we want to store the trafic data on an external database. by myself i use phpmyadmin, but i find to much difficulties to connect ionic to phpmyadmin to save information. I am on ubuntu
@gabrielamaralpassos95379 ай бұрын
I'm really finding it really hard to use SQLite in my ionic react app, but i need it. Wish me luck
@xigbar022 жыл бұрын
Maybe I missed something but if I want to save 2,3 pictures and some string data for an ionic capacitor project, ionic storage is an option, no?
@galaxies_dev2 жыл бұрын
Sure Ionic Storage is a very valid option in that case!
@scottmcmahon72093 жыл бұрын
Will I need to use something like capacitor to enable the app that I built with ionic5 to upload photos such as profile pictures that I will then send to my server?
@maximusmmax3 жыл бұрын
Which one would you use to store images?
@galaxies_dev3 жыл бұрын
I would actually store images as files on the FS and store a reference to them!
@usanzadunje3 жыл бұрын
I have auth token to store and use ionic storage without sqlite. Should i install adapter for it for better security? Does sqlite provide vetter security? Thanka for info!
@galaxies_dev3 жыл бұрын
SQLite gives more persistence on a device, so it's maybe not more secure but definitely more reliable!
@_back_to_the_time_3 жыл бұрын
Waiting for this😍
@TheRealSharky2 жыл бұрын
Hi Simon, when accessing a SQLite with Ionic Storage, is it also "cleaned up" from time to time by Android or iOS? Or is the data stored securely and permanently in this case? And how can I check if SQLite is actually used in the background?
@galaxies_dev2 жыл бұрын
SQLite won't be cleared by the OS like localstorage of the browser can, so its a permanent solution! You can actually extract the .db file from the simulator or device. See how here at the end: devdactic.com/ionic-4-sqlite-queries
@sandeepkolli12193 жыл бұрын
how to get printers list in my network and show as dropdown to set as default printer. Thanks in Advance
@ConstantLANGNITO2 жыл бұрын
hello I have an application that works well with versions below Android 11 and 12 for the storage part. but for version 11 and 12 it does not work. I would like to know if : local storage ionic capacitor need permission in android 12 for API Level sdk 32?
@marisolreyes31702 жыл бұрын
What is the ionic capacity? Can it support about 50 mb data in query with SQLite?
@galaxies_dev2 жыл бұрын
It's not a question of Ionic but of SQLite I think, but I'm not sure about its limitations.
@KRYoung_dev2 жыл бұрын
Thank you for the great explanation, Simon! I wish it was possible to use SQLite with the browser, I am used to SQL for work so being able to run queries instead of constantly iterating JS objects would be awesome.
@galaxies_dev2 жыл бұрын
Yeah there's no good fallback for that yet :/
@RealAppsniksviks3 жыл бұрын
Thanks for the video
@ferbai13 жыл бұрын
Nice video👍
@galaxies_dev3 жыл бұрын
Thanks Fer 👍
@GamingwithTTfires3 жыл бұрын
How to save 100mb or larger size data?Can ionic storage save 100mb Or larger data?
@galaxies_dev3 жыл бұрын
If you use the SQLite plugin you are only limited by the SQLite database limits - which afaik doesn't come with other limitation than your device storage!
@pchasco2 жыл бұрын
The solution to the problem of SQLite missing on the web is to implement the repository pattern for data access. When running on capacitor provide the SQLite implementation in dependency injection. When running on the web, provide a different implementation that works in memory and persists to browser storage, or calls an external API hosted elsewhere.
@galaxies_dev2 жыл бұрын
I actually think for the SQLite plugin there's now a web implementation available, at least I saw something on Github...
@pchasco2 жыл бұрын
@@galaxies_dev Yes, I see that web is now supported!