package funkin.external.android; #if android /** * A Utility class to manage the Application's Data folder on Android. */ @:unreflective class DataFolderUtil { /** * Opens the data folder on an Android device using JNI. */ public static function openDataFolder():Void { final openDataFolderJNI:Null = JNIUtil.createStaticMethod('funkin/util/DataFolderUtil', 'openDataFolder', '(I)V'); if (openDataFolderJNI != null) { openDataFolderJNI(CallbackUtil.DATA_FOLDER_CLOSED); } } } #end