Skip to content

Commit

Permalink
fixed 8enet#17
Browse files Browse the repository at this point in the history
  • Loading branch information
8enet committed Sep 27, 2017
1 parent 30a5e07 commit de3bbe6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion opsxpro/src/main/assets/opsx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ fi
args=$type",bgrun:1,token:"$token

echo "AppOpsX args: "$args
export LD_LIBRARY_PATH="/vendor/lib"$arch":/system/lib"$arch
export CLASSPATH=$classpath
exec app_process /system/bin com.zzzmode.appopsx.server.AppOpsMain "$args" >&2 &
echo $?
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,6 @@ public OpsResult exec(OpsCommands.Builder builder) throws Exception {
}

private List<String> getCommonds() {
String arch = AssetsUtils.is64Bit() ? "64" : "";

StringBuilder sb = new StringBuilder();

Expand Down Expand Up @@ -139,8 +138,6 @@ private List<String> getCommonds() {
Log.e(TAG, "getCommonds --> " + sb);

List<String> cmds = new ArrayList<>();
cmds.add(
"export LD_LIBRARY_PATH=" + String.format("/vendor/lib%1$s:/system/lib%2$s", arch, arch));
cmds.add("export CLASSPATH=" + SConfig.getClassPath());
cmds.add("echo start");
cmds.add("id");
Expand Down

0 comments on commit de3bbe6

Please sign in to comment.