Jasm Sison

Results 34 comments of Jasm Sison

Try [ObjectBoxLiveData](https://github.com/objectbox/objectbox-examples/tree/master/android-app-arch)

Here's a crazy idea: transpile the ObjectBox C API, using Emscripten? And then store the _data.mdb_ in _window.localStorage_?

Update: so I was tinkering with transpiling objectbox-c to wasm/js: Prepare the toolset: ```bash #!/bin/bash git clone https://github.com/emscripten-core/emsdk.git ; cd emsdk ; ./emsdk install latest ; ./emsdk activate latest ;...

Transpile for the necessary plumbing to put / get data from storage, based on your schema. [IIRC, there's some work done on objectbox-dart support for the web](https://github.com/objectbox/objectbox-dart/issues/185). Maybe you could...

@raphire08 You're always free to write your own dart extensions for whatever functionality you feel is missing.

I think that conditional is a compile-time thingy, it's not polymorphic dynamic binding.

In the meanwhile, you can check out SQLCipher and use [greenDAO](https://github.com/greenrobot/greenDAO) on top and combine the secure storage solution of your OS (e.g. keystore / keychain), to store a biometrically...

Solution -------- ```gradle val deviceName = "nexusEmulator" firebaseTestLab { keyFile = File("$projectDir/my-app-key.json") // TODO HOWTO github action secret?! googleProjectId = if (startParameter.toLowerCase().contains("acc")) { "android-mobile-app-acc" } else { "android-mobile-app-prod" } createDevice(deviceName)...

[WiP rust client](https://github.com/Buggaboo/objectbox-rust) I worked on the macro attributes part, aka annotations on struct fields. This is possible now. ```rust use objectbox; extern crate builder; use builder::{entity, index, transient, unique};...

> Once someone can provide some minimal useful code, we're open to create a new repo. Hi, I got [a minimally working work-in-progress version](https://github.com/Buggaboo/objectbox-rust), many thanks to @vaind, please check...