Closed GoogleCodeExporter closed 9 years ago
I answered that already in a comment on the Examples page.
You have to put the file into res/raw/. Let's say it is called
YourPlistFile.plist
Then either use
InputStream is = getResources().openRawResource(R.raw.YourPlistFile);
or
InputStream is = context.getAssets().open("YourPlistFile.plist");
and then
NSDictionary rootDict = (NSDictionary)PropertyListParser.parse(is);
(See
http://stackoverflow.com/questions/2856407/android-how-to-get-access-to-raw-reso
urces-that-i-put-in-res-folder)
Original comment by daniel.dreibrodt
on 4 Sep 2013 at 7:17
Original issue reported on code.google.com by
tqj.zyy@gmail.com
on 4 Sep 2013 at 5:45