forked from termux/termux-packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Full version of apksigner from Android SDK (termux#5553)
- Loading branch information
Showing
2 changed files
with
61 additions
and
11 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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- ../platform-tools-29.0.2/src/main/java/com/android/apksig/internal/asn1/Asn1BerParser.java 2020-07-16 21:18:25.186996621 +0800 | ||
+++ ../com/android/apksig/internal/asn1/Asn1BerParser.java 2020-07-16 21:17:19.166996646 +0800 | ||
@@ -26,6 +26,7 @@ | ||
import java.lang.reflect.Field; | ||
import java.lang.reflect.Modifier; | ||
import java.math.BigInteger; | ||
+import java.math.BigDecimal; | ||
import java.nio.ByteBuffer; | ||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
@@ -506,7 +507,8 @@ | ||
} | ||
|
||
private static int integerToInt(ByteBuffer encoded) throws Asn1DecodingException { | ||
- BigInteger value = integerToBigInteger(encoded); | ||
+ BigInteger prevalue = integerToBigInteger(encoded); | ||
+ BigDecimal value = new BigDecimal(prevalue); | ||
try { | ||
return value.intValueExact(); | ||
} catch (ArithmeticException e) { | ||
@@ -516,7 +518,8 @@ | ||
} | ||
|
||
private static long integerToLong(ByteBuffer encoded) throws Asn1DecodingException { | ||
- BigInteger value = integerToBigInteger(encoded); | ||
+ BigInteger prevalue = integerToBigInteger(encoded); | ||
+ BigDecimal value = new BigDecimal(prevalue); | ||
try { | ||
return value.longValueExact(); | ||
} catch (ArithmeticException e) { |
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,31 +1,51 @@ | ||
TERMUX_PKG_HOMEPAGE=https://github.com/fornwall/apksigner | ||
TERMUX_PKG_HOMEPAGE=https://developer.android.com/studio/command-line/apksigner | ||
TERMUX_PKG_DESCRIPTION="APK signing tool" | ||
TERMUX_PKG_LICENSE="Apache-2.0" | ||
TERMUX_PKG_VERSION=0.7 | ||
TERMUX_PKG_REVISION=1 | ||
TERMUX_PKG_SRCURL=https://github.com/fornwall/apksigner/archive/v${TERMUX_PKG_VERSION}.tar.gz | ||
TERMUX_PKG_SHA256=340560c4f75af3501f037452bcf184fa48fd18bc877a4cce9a51a3fa047b4b38 | ||
TERMUX_PKG_VERSION=${TERMUX_ANDROID_BUILD_TOOLS_VERSION} | ||
TERMUX_PKG_BUILD_IN_SRC=true | ||
TERMUX_PKG_PLATFORM_INDEPENDENT=true | ||
|
||
termux_step_extract_package() { | ||
mkdir -p "$TERMUX_PKG_SRCDIR" && cd "$TERMUX_PKG_SRCDIR" | ||
mkdir -p com/android/apksig/internal/asn1 | ||
termux_download \ | ||
"https://android.googlesource.com/platform/tools/apksig/+/refs/tags/platform-tools-$TERMUX_PKG_VERSION/src/main/java/com/android/apksig/internal/asn1/Asn1BerParser.java?format=TEXT" \ | ||
com/android/apksig/internal/asn1/Asn1BerParser_b64.java \ | ||
f0506dedb7291dce1066b7aec3fc42c70b1862b39d9cdb176ba75d24b870765e | ||
base64 -d com/android/apksig/internal/asn1/Asn1BerParser_b64.java > com/android/apksig/internal/asn1/Asn1BerParser.java | ||
} | ||
|
||
termux_step_pre_configure() { | ||
# Requires Android SDK, not available on device | ||
if $TERMUX_ON_DEVICE_BUILD; then | ||
termux_error_exit "Package '$TERMUX_PKG_NAME' is not safe for on-device builds." | ||
fi | ||
} | ||
|
||
termux_step_make() { | ||
mkdir -p $TERMUX_PREFIX/share/{dex,man/man1} | ||
mkdir -p $TERMUX_PREFIX/share/dex | ||
cp $ANDROID_HOME/build-tools/${TERMUX_PKG_VERSION}/lib/apksigner.jar "$TERMUX_PKG_SRCDIR" | ||
SOURCEFILE="$TERMUX_PKG_SRCDIR/apksigner.jar" | ||
|
||
cp apksigner.1 $TERMUX_PREFIX/share/man/man1/ | ||
cd "$TERMUX_PKG_SRCDIR" | ||
javac -cp "$SOURCEFILE" com/android/apksig/internal/asn1/Asn1BerParser.java | ||
zip -u "$SOURCEFILE" com/android/apksig/internal/asn1/Asn1BerParser.class | ||
|
||
GRADLE_OPTS=" -Dorg.gradle.daemon=false" ./gradlew | ||
$TERMUX_D8 \ | ||
--classpath $ANDROID_HOME/platforms/android-$TERMUX_PKG_API_LEVEL/android.jar \ | ||
--release \ | ||
--min-api $TERMUX_PKG_API_LEVEL \ | ||
--output $TERMUX_PKG_TMPDIR \ | ||
./build/libs/src-all.jar | ||
$SOURCEFILE | ||
} | ||
|
||
termux_step_make_install() { | ||
cd $TERMUX_PKG_TMPDIR | ||
jar cf apksigner.jar classes.dex | ||
unzip $SOURCEFILE */*.txt | ||
jar cf apksigner.jar classes.dex com/ | ||
mv apksigner.jar $TERMUX_PREFIX/share/dex/apksigner.jar | ||
|
||
echo '#!/bin/sh' > $TERMUX_PREFIX/bin/apksigner | ||
echo "dalvikvm -cp $TERMUX_PREFIX/share/dex/apksigner.jar net.fornwall.apksigner.Main \$@" >> $TERMUX_PREFIX/bin/apksigner | ||
echo "dalvikvm -cp $TERMUX_PREFIX/share/dex/apksigner.jar com.android.apksigner.ApkSignerTool \$@" >> $TERMUX_PREFIX/bin/apksigner | ||
chmod +x $TERMUX_PREFIX/bin/apksigner | ||
} |