-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6be096e
commit 2e7f951
Showing
5 changed files
with
30 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/bin/bash | ||
|
||
APP_PATH="/opt/APKScanner" | ||
APP_VERSION="2.5" | ||
APP_VERSION="2.6" | ||
APP_FILE="ApkScanner.jar" | ||
|
||
DEBIAN_DATA_PATH="./debian"$APP_PATH | ||
|
@@ -18,7 +18,7 @@ Version: $APP_VERSION-1 | |
Section: utils | ||
Architecture: all | ||
Maintainer: Sunggyu Kam <[email protected]> | ||
Installed-Size: 105,065,889 | ||
Installed-Size: 157,130,534 | ||
Description: APK Scanner $APP_VERSION | ||
EOF | ||
cat ./debian/DEBIAN/control | ||
|
@@ -83,10 +83,10 @@ mkdir -p "$TARGET_PATH" | |
cp -f "release/tool/aapt" "$TARGET_PATH" | ||
cp -f "release/tool/adb" "$TARGET_PATH" | ||
cp -f "release/tool/apktool.jar" "$TARGET_PATH" | ||
cp -f "release/tool/Bytecode-Viewer.jar" "$TARGET_PATH" | ||
cp -f "release/tool/Bytecode-Viewer-2.9.22.jar" "$TARGET_PATH" | ||
cp -f "release/tool/d2j_invoke.sh" "$TARGET_PATH" | ||
cp -f "release/tool/d2j-dex2jar.sh" "$TARGET_PATH" | ||
cp -f "release/tool/jd-gui-1.4.0.jar" "$TARGET_PATH" | ||
cp -f "release/tool/jd-gui-1.6.2.jar" "$TARGET_PATH" | ||
cp -f "release/tool/jd_icon_128.png" "$TARGET_PATH" | ||
cp -f "release/tool/libAaptNativeWrapper32.so" "$TARGET_PATH" | ||
cp -f "release/tool/libAaptNativeWrapper64.so" "$TARGET_PATH" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ | |
public enum RStr implements ResString<String> | ||
{ | ||
APP_NAME ("@app_name"), | ||
APP_VERSION ("2.5.1 dev"), | ||
APP_VERSION ("2.6.1 eng"), | ||
APP_BUILD_MODE ("eng"), | ||
APP_MAKER ("Jinhyeong Lee / Sunggyu Kam"), | ||
APP_MAKER_EMAIL ("[email protected];[email protected]"), | ||
|