SQLite cross-platform in libgdx - android

If its possible to create SQLite database which support iOS and Android systems using libgdx? As far I know the ORMlite is not supported on iOS based devices?

As far, Libgdx can work with SqlLite-database. And SQLite is supported both android and iOS. :)
Check it out
https://code.google.com/archive/p/libgdx-users/wikis/SQLite.wiki

Related

Local DB using cordova in 2020 [Android/IOS]

I need to store objects and arrays in my cordova mobile app.
I need both android and ios support.
WebSQL seemed pretty good, but now it's not supported since september 2019 (version 13) on IOS, and I don't want to have different technology for android and ios.
IndexedDB is looking good, and is supported according to caniuse.com, but on the cordova docs, it's said it's not supported by IOS.
Cordova docs seems pretty old.
I work with Cordova and AngularJS, and I need to sync from time to time the local DB to Firebase.
Maybe someone can share his experience about local storage here.
Thank you for your answers.
You can store values in the RAM within an Object dynamically, you can store it with sqlite like this:
https://www.npmjs.com/package/cordova-sqlite-storage
or you can store values in a file.
I give you a hint. You should do Android apps with java and IOS apps with swift. These are
natively supported programming languages.

Can Delphi FireDAC work properly with SEE on android platform?

I'm a newbie for android development.
I'm developing an mobile application run on Android devices with Delphi XE7. And now I'm searching the way to encrypt the sqlite database files accessed through FireDac on Android devices.
I've found The SQLite Encryption Extension (SEE).
But I'm not sure if FireDac can work properly with SEE to manipulate sqlite databases on Android device. If it can, how to deploy SEE to an android device?
Please suggest solutions.
FireDAC will not support SEE. However, you could use the build-in encryption with FireDAC for SQLite. That would save you from having to use multiple components for the same task.
Here is a link to the documentation on SQLite with FireDAC. The encryption process is included.
http://docwiki.embarcadero.com/RADStudio/XE8/en/Using_SQLite_with_FireDAC

Using OpenGL ES on Android and iOS at the same time?

We want to create a mobile game for Android and iOS. But we don't want to code it for iOS and Android seperatly via native codes. Is there any way to code it with something like OpenGL library separate from iOS SDK and Android SDK? If it is, is there any tutorial? I couldn't find.
SpriteBuilder is a development kit for creating 2D games in Objective-C. You can develop the app once and deploy to iOS with Xcode and to Android with Apportable.
Tutorials are available here.
There are actually libraries for that purpose such libGDX
It's not as simple as that. The easiest solution is to use special framework, like libgdx http://libgdx.badlogicgames.com/ (I'm nost saying it's the best choice, I have used it in the past and it worked fine however), unity or gamemaker
Maybe you could use a game-engine that deploys on multiple platforms. For example: http://unity3d.com/unity
My commercial product, which is not a game, but is very graphics intensive and uses three-dimensional techniques, uses OpenGL ES 2.0 and runs identically on Android, iOS, Windows, Linux and Mac OS.
The core code is written in C++. On iOS I use the free MetalAngle library to get around the fact that soon Apple will no longer support Open GL.

Is it possible to use Android database for iphone application?

I am developing an content oriented app for android and iphone. I finished developing in android which has database in the format of androidApp.db. Is it possible to use the same database for iphone as well because in iphone the database format is .sqlite.
Is it possible to use Android - androidAppdatabase.db
for iOS - iphoneAppdatabase.sqlite?.
If so please could you suggest some steps.
Thanks for your help guys.
YES, its is you can use this DB it in both android as well as iOS
android and iOS both supports SQLite
EDIT : Download SQLite expert from here
the db file is used to copy in both android and iPhone applications, check following link, to know how to do this in iOS.
Add an SQLite database to an iPhone app

Can I combine phonegap and native Android?

I am a beginner in Android. I want to combine phone gap and native java android. I want to use sqlitedatabase from assets and copy to android data/data/packagename/databases with phonegap. Can I do that? Please help with example.
As far as combining native Java and PhoneGap, what you are looking to do is develop a plugin:
Is it possible to interacte between native iphone app and PhoneGap app?
As for the sqlite database, PhoneGap has a File() API for doing these kinds of things:
http://docs.phonegap.com/phonegap_file_file.md.html#FileEntry
(see copyTo and moveTo).

Categories

Resources