2018-08-26 03:19:45
notes on usage are at the bottom of the Dockerfile.
Docker is used to containerize applications.
GitHub
2018-08-26 05:04:31
Android client connects, makes addresses, sees balance
Fireduck
2018-08-26 13:15:27
good luck with list views
Rotonen
2018-08-26 16:39:46
Think I am doomed?
Fireduck
2018-08-26 16:40:05
I haven't managed updates, or any UI components to gather input in any way
Fireduck
2018-08-26 20:08:10
no, just pointing out the inherently silly thing, that on both mobile platforms, the hardest thing to get right and actually functional, is a text list
Rotonen
2018-08-26 20:08:20
or any list views, for that matter
Rotonen
2018-08-26 20:10:38
I am just mangling a sample project
Fireduck
2018-08-26 20:12:24
had any deeper curiosities as to the packaging of your components?
Rotonen
2018-08-26 20:15:20
shockingly less trouble than I thought
Fireduck
2018-08-26 20:15:49
I am just taking the SnowBlossomClient_deploy.jar and putting that as a library in Android Studio
Fireduck
2018-08-26 20:16:04
bazel was putting some strange package info file in the jar, so I had to remove that
Fireduck
2018-08-26 20:16:11
oh, java actually delivers there, was not expecting that
Rotonen
2018-08-26 20:16:19
had to switch to an android friendly version of guava
Fireduck
2018-08-26 20:16:34
and had to switch to spongycastle over bouncycastle
Fireduck
2018-08-26 20:16:51
the version of BC is newer, so staying with that for the node and other components
Fireduck
2018-08-26 20:16:52
i guess you're doing rather basic stuff so far and getting into mobile early enough will keep you on top of android compatible versions
Rotonen
2018-08-26 20:16:56
just using SC in android
Fireduck
2018-08-26 20:17:36
yeah, my big shock was that I haven't hit any problems between all the libraries embedded in that deploy and what android/android studio wanted to use
Fireduck
2018-08-26 20:17:44
and you have nothing in processor native, so no arm quirks either? NEON and friends can throw a wrench
Rotonen
2018-08-26 20:17:58
not doing rocksdb, so no
Fireduck
2018-08-26 20:18:09
unless BC does something deep inside, but haven't seen any problems
Fireduck
2018-08-26 20:18:20
protobuf?
Rotonen
2018-08-26 20:18:36
protobuf is completely native java, I think
Fireduck
2018-08-26 20:18:56
grpc is working, able to talk to remote server so seems to work
Fireduck
2018-08-26 20:20:10
you might have the most mobile friendly base
Rotonen
2018-08-26 20:20:21
even ios should not be that difficult to target
Rotonen
2018-08-26 20:21:33
the intel solution to that might actually just work out of the box for you https://multi-os-engine.org/ Create iOS Apps in Java Port your existing Android App, or build a native Cross-Platform App from scratch.
Rotonen
2018-08-26 20:28:55
intersting
Fireduck
2018-08-26 20:30:15
making the torrent for chunked field 10 now
Fireduck
2018-08-26 21:04:07
updating my changes to make sure the crypto provider is always specified
Fireduck
2018-08-26 21:04:19
for some reason, using an unexpected crypto provider scares me :wink:
Fireduck
2018-08-26 21:28:21
the entropy source sucks on a mobile anyway :stuck_out_tongue:
Rotonen
2018-08-26 21:28:50
Probably just the number 4
Fireduck
2018-08-26 21:42:13
probably stored in BCD and having a faulty read algorithm
Rotonen
2018-08-26 21:43:09
Ha, haven't thought about bcd in years
Fireduck