adamlofts / leveldb_dart

Dart bindings for the LevelDB key value store.
MIT License
23 stars 5 forks source link

Android Support #12

Open adamlofts opened 6 years ago

adamlofts commented 6 years ago

It should be possible to build the dart extension on Android (ndb). Please comment below if you are interested in supporting this feature.

Rough instructions would be:

Download leveldb sources and build the library statically Update the makefile to build the extension Run the test cases

Lukas3675 commented 5 years ago

I hope it will be available in flutter, if feels kind of natural since works with dart, I'd be very interested to use it instead of sqf-sqlite

truedat101 commented 5 years ago

This is a pretty easy port to do as far as android goes (using JNI/NDK). I haven't looked at the dart/android binding, foreign function interface, or how these wrappers go. I did a quick scan and there are at least 4 existing level db ports, none are maintained, but there are instructive steps available. I agree with @Lukas3675 this seems like a natural transition to have this available in Flutter.

bitsydarel commented 5 years ago

Any progress ?