mirror of
https://github.com/revanced/Apktool.git
synced 2025-05-01 06:34:25 +02:00
fix: add message explaining deprecation of 32bit
This commit is contained in:
parent
7cf9a95710
commit
4f13bcad48
@ -23,6 +23,7 @@ import brut.androlib.err.OutDirExistsException;
|
|||||||
import brut.common.BrutException;
|
import brut.common.BrutException;
|
||||||
import brut.directory.DirectoryException;
|
import brut.directory.DirectoryException;
|
||||||
import brut.util.AaptManager;
|
import brut.util.AaptManager;
|
||||||
|
import brut.util.OSDetection;
|
||||||
import org.apache.commons.cli.*;
|
import org.apache.commons.cli.*;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
@ -51,6 +52,10 @@ public class Main {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
commandLine = parser.parse(allOptions, args, false);
|
commandLine = parser.parse(allOptions, args, false);
|
||||||
|
|
||||||
|
if (! OSDetection.is64Bit()) {
|
||||||
|
System.err.println("32 bit support is deprecated. Apktool will not support 32bit on v1.6.0.");
|
||||||
|
}
|
||||||
} catch (ParseException ex) {
|
} catch (ParseException ex) {
|
||||||
System.err.println(ex.getMessage());
|
System.err.println(ex.getMessage());
|
||||||
usage();
|
usage();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user