udpate resource paths
This commit is contained in:
parent
bab79046b2
commit
1ffea580c4
|
@ -69,11 +69,10 @@ public class TorResourceInstaller implements TorServiceConstants {
|
||||||
|
|
||||||
if (Build.CPU_ABI.contains("x86"))
|
if (Build.CPU_ABI.contains("x86"))
|
||||||
cpuPath = "x86";
|
cpuPath = "x86";
|
||||||
|
|
||||||
deleteDirectory(installFolder);
|
deleteDirectory(installFolder);
|
||||||
|
|
||||||
installFolder.mkdirs();
|
installFolder.mkdirs();
|
||||||
|
|
||||||
|
|
||||||
is = context.getResources().openRawResource(R.raw.torrc);
|
is = context.getResources().openRawResource(R.raw.torrc);
|
||||||
outFile = new File(installFolder, TORRC_ASSET_KEY);
|
outFile = new File(installFolder, TORRC_ASSET_KEY);
|
||||||
|
@ -82,25 +81,12 @@ public class TorResourceInstaller implements TorServiceConstants {
|
||||||
is = context.getResources().openRawResource(R.raw.torpolipo);
|
is = context.getResources().openRawResource(R.raw.torpolipo);
|
||||||
outFile = new File(installFolder, POLIPOCONFIG_ASSET_KEY);
|
outFile = new File(installFolder, POLIPOCONFIG_ASSET_KEY);
|
||||||
streamToFile(is,outFile, false, false);
|
streamToFile(is,outFile, false, false);
|
||||||
|
|
||||||
//only install if ARM (GoLang only supports ARM for now)
|
is = context.getAssets().open(cpuPath + '/' + OBFSCLIENT_ASSET_KEY + MP3_EXT);
|
||||||
if (cpuPath.equals("armeabi"))
|
outFile = new File(installFolder, OBFSCLIENT_ASSET_KEY);
|
||||||
{
|
streamToFile(is,outFile, false, true);
|
||||||
cpuPath = "armeabi";
|
setExecutable(outFile);
|
||||||
is = context.getAssets().open(cpuPath + "/" + OBFSCLIENT_ASSET_KEY + MP3_EXT);
|
|
||||||
outFile = new File(installFolder, OBFSCLIENT_ASSET_KEY);
|
|
||||||
streamToFile(is,outFile, false, true);
|
|
||||||
setExecutable(outFile);
|
|
||||||
/**
|
|
||||||
is = context.getAssets().open(cpuPath + "/" + MEEK_ASSET_KEY + MP3_EXT);
|
|
||||||
outFile = new File(installFolder, MEEK_ASSET_KEY);
|
|
||||||
shell.add(new SimpleCommand(COMMAND_RM_FORCE + outFile.getAbsolutePath())).waitForFinish();
|
|
||||||
streamToFile(is,outFile, false, true);
|
|
||||||
setExecutable(outFile);
|
|
||||||
*/
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
is = context.getAssets().open(cpuPath + '/' + TOR_ASSET_KEY + MP3_EXT);
|
is = context.getAssets().open(cpuPath + '/' + TOR_ASSET_KEY + MP3_EXT);
|
||||||
outFile = new File(installFolder, TOR_ASSET_KEY);
|
outFile = new File(installFolder, TOR_ASSET_KEY);
|
||||||
streamToFile(is,outFile, false, true);
|
streamToFile(is,outFile, false, true);
|
||||||
|
|
Loading…
Reference in New Issue