Save app data on Android/iOS using Haxe/OpenFL -


so, i've created haxe function (using openfl library) saves text , image data game's folder on desktop targets. little while ago, however, notified in thread function not work on mobile targets. same user, thiagojabur, gave me solution (scroll down in same thread). main problem don't have mobile device myself can test on (i have galaxy tab4, haven't gotten working haxe projects). rather send 100 versions can test it, i've decided ask questions here.

the goal save data folder game's app id. instance, if app id com.potato.potatogame, data saved (on android) in application storage directory, in folder /android/data/com.potato.potatogame/. believe can first part of path using openfl.utils.systempath.applicationstoragedirectory(), i'm stuck on how app id. know of function can so?

alternatively, may misunderstanding part of code. way thiagojabur used code, seem systempath.userdirectory() returns "/android/data/com.potato.potatogame" on android. correct, or still need build path manually?

any appreciated. in advance!

in 1 of apps using openfl in legacy mode saved images using following code:

static var images_path:string = systempath.documentsdirectory + "/myappname/";  public function saveimage()  {     var filename:string = images_path + name + ".png";      try {         if(!filesystem.exists(images_path)) {             filesystem.createdirectory(images_path);         }         file.savebytes(filename, app.canvas.bitmap.encode("png"));     }      catch(e:dynamic) {         trace(e);     } } 

with modern non-legacy code, guess path getting should changed lime.system.system.applicationstoragedirectory

also if still need app id, can achieved application.current.config.packagename


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -