tags:

views:

67

answers:

2

Is there a java yaml library as good as snakeyaml for Android? (Or is anyone successfully using snakeyaml on Android already?)

A: 

I think you should at least try directly snakeyaml. For this kind of library it's highly probable that the needed Java API set is available in Android.

If it does not work, you may try to import snakeyaml source code in an android project and see what doesn't compile. With a little luck it will be possible to work around the missing APIs.

Kevin Gaudin
Thanks for your encouragement. With my limited experience (no Android development yet), I was hoping someone else would have already tried this. But I do like snakeyaml, so it would be great if it works on Android.
MountainX