Skip to content
Snippets Groups Projects
Commit e30ff1d9 authored by Thomas Guillem's avatar Thomas Guillem
Browse files

VLCInstance: fix lua copy path

parent d9ad1897
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,8 @@ public class VLCInstance {
private static Runnable sCopyLua = new Runnable() {
@Override
public void run() {
String destinationFolder = AndroidDevices.EXTERNAL_PUBLIC_DIRECTORY+
"/Android/data/"+VLCApplication.getAppContext().getPackageName()+"/lua";
final String destinationFolder = VLCApplication.getAppContext().getDir("vlc",
Context.MODE_PRIVATE).getAbsolutePath() + "/.share/lua";
AssetManager am = VLCApplication.getAppResources().getAssets();
FileUtils.copyAssetFolder(am, "lua", destinationFolder);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment