Merge remote-tracking branch 'refs/remotes/WagicProject/master'

This commit is contained in:
Anthony Calosa
2016-06-22 17:36:39 +08:00
@@ -214,7 +214,7 @@ public class StorageOptions
{ {
if(!isRooted()) if(!isRooted())
{ {
File folder = new File(System.getenv("EXTERNAL_STORAGE")+"/Android/data/net.wagic.app"); File folder = new File(System.getenv("EXTERNAL_STORAGE")+"/Android/data/net.wagic.app/files");
folder.mkdirs(); folder.mkdirs();
mMounts.add(folder.toString()); mMounts.add(folder.toString());
} }
@@ -232,7 +232,7 @@ public class StorageOptions
{ {
if(!isRooted()) if(!isRooted())
{ {
File folder = new File(System.getenv("SECONDARY_STORAGE")+"/Android/data/net.wagic.app"); File folder = new File(System.getenv("SECONDARY_STORAGE")+"/Android/data/net.wagic.app/files");
folder.mkdirs(); folder.mkdirs();
mMounts.add(folder.toString()); mMounts.add(folder.toString());
} }