mirror of
https://github.com/revanced/Apktool.git
synced 2024-11-11 15:09:24 +01:00
Shared Library Rebuilding Support
- handles references with shared resources - adds support for --shared-lib - update unit-tests
This commit is contained in:
parent
2f7ae8c001
commit
0a74de4ab0
@ -270,6 +270,7 @@ public class Androlib {
|
|||||||
mAndRes.setPackageId((Map<String, String>) meta.get("packageInfo"));
|
mAndRes.setPackageId((Map<String, String>) meta.get("packageInfo"));
|
||||||
mAndRes.setPackageInfo((Map<String, String>) meta.get("packageInfo"));
|
mAndRes.setPackageInfo((Map<String, String>) meta.get("packageInfo"));
|
||||||
mAndRes.setVersionInfo((Map<String, String>) meta.get("versionInfo"));
|
mAndRes.setVersionInfo((Map<String, String>) meta.get("versionInfo"));
|
||||||
|
mAndRes.setSharedLibrary((boolean) meta.get("sharedLibrary"));
|
||||||
|
|
||||||
if (outFile == null) {
|
if (outFile == null) {
|
||||||
String outFileName = (String) meta.get("apkFileName");
|
String outFileName = (String) meta.get("apkFileName");
|
||||||
|
@ -320,6 +320,7 @@ public class ApkDecoder {
|
|||||||
putPackageInfo(meta);
|
putPackageInfo(meta);
|
||||||
putVersionInfo(meta);
|
putVersionInfo(meta);
|
||||||
putCompressionInfo(meta);
|
putCompressionInfo(meta);
|
||||||
|
putSharedLibraryInfo(meta);
|
||||||
}
|
}
|
||||||
putUnknownInfo(meta);
|
putUnknownInfo(meta);
|
||||||
|
|
||||||
@ -393,6 +394,10 @@ public class ApkDecoder {
|
|||||||
meta.put("compressionType", getCompressionType());
|
meta.put("compressionType", getCompressionType());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void putSharedLibraryInfo(Map<String, Object> meta) throws AndrolibException {
|
||||||
|
meta.put("sharedLibrary", mResTable.getSharedLibrary());
|
||||||
|
}
|
||||||
|
|
||||||
private boolean getCompressionType() {
|
private boolean getCompressionType() {
|
||||||
return mCompressResources;
|
return mCompressResources;
|
||||||
}
|
}
|
||||||
|
@ -379,6 +379,10 @@ final public class AndrolibResources {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setSharedLibrary(boolean flag) {
|
||||||
|
mSharedLibrary = flag;
|
||||||
|
}
|
||||||
|
|
||||||
public void aaptPackage(File apkFile, File manifest, File resDir, File rawDir, File assetDir, File[] include)
|
public void aaptPackage(File apkFile, File manifest, File resDir, File rawDir, File assetDir, File[] include)
|
||||||
throws AndrolibException {
|
throws AndrolibException {
|
||||||
|
|
||||||
@ -428,10 +432,13 @@ final public class AndrolibResources {
|
|||||||
|
|
||||||
// force package id so that some frameworks build with correct id
|
// force package id so that some frameworks build with correct id
|
||||||
// disable if user adds own aapt (can't know if they have this feature)
|
// disable if user adds own aapt (can't know if they have this feature)
|
||||||
if (mPackageId != null && ! customAapt) {
|
if (mPackageId != null && ! customAapt && ! mSharedLibrary) {
|
||||||
cmd.add("--forced-package-id");
|
cmd.add("--forced-package-id");
|
||||||
cmd.add(mPackageId);
|
cmd.add(mPackageId);
|
||||||
}
|
}
|
||||||
|
if (mSharedLibrary) {
|
||||||
|
cmd.add("--shared-lib");
|
||||||
|
}
|
||||||
if (mMinSdkVersion != null) {
|
if (mMinSdkVersion != null) {
|
||||||
cmd.add("--min-sdk-version");
|
cmd.add("--min-sdk-version");
|
||||||
cmd.add(mMinSdkVersion);
|
cmd.add(mMinSdkVersion);
|
||||||
@ -847,6 +854,8 @@ final public class AndrolibResources {
|
|||||||
private String mPackageOriginal = null;
|
private String mPackageOriginal = null;
|
||||||
private String mPackageId = null;
|
private String mPackageId = null;
|
||||||
|
|
||||||
|
private boolean mSharedLibrary = false;
|
||||||
|
|
||||||
private File mAaptBinary = null;
|
private File mAaptBinary = null;
|
||||||
|
|
||||||
private final static String[] IGNORED_PACKAGES = new String[] {
|
private final static String[] IGNORED_PACKAGES = new String[] {
|
||||||
|
@ -35,7 +35,7 @@ public class ResID {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public ResID(int package_, int type, int entry, int id) {
|
public ResID(int package_, int type, int entry, int id) {
|
||||||
this.package_ = package_;
|
this.package_ = (package_ == 0) ? 2 : package_;
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.entry = entry;
|
this.entry = entry;
|
||||||
this.id = id;
|
this.id = id;
|
||||||
|
@ -37,6 +37,7 @@ public class ResTable {
|
|||||||
private String mPackageOriginal;
|
private String mPackageOriginal;
|
||||||
private int mPackageId;
|
private int mPackageId;
|
||||||
private boolean mAnalysisMode = false;
|
private boolean mAnalysisMode = false;
|
||||||
|
private boolean mSharedLibrary = false;
|
||||||
|
|
||||||
private Map<String, String> mSdkInfo = new LinkedHashMap<String, String>();
|
private Map<String, String> mSdkInfo = new LinkedHashMap<String, String>();
|
||||||
private Map<String, String> mVersionInfo = new LinkedHashMap<String, String>();
|
private Map<String, String> mVersionInfo = new LinkedHashMap<String, String>();
|
||||||
@ -50,6 +51,13 @@ public class ResTable {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public ResResSpec getResSpec(int resID) throws AndrolibException {
|
public ResResSpec getResSpec(int resID) throws AndrolibException {
|
||||||
|
// The pkgId is 0x00. That means a shared library is using its
|
||||||
|
// own resource, so lie to the caller replacing with its own
|
||||||
|
// packageId
|
||||||
|
if (resID >> 24 == 0) {
|
||||||
|
int pkgId = (mPackageId == 0 ? 2 : mPackageId);
|
||||||
|
resID = (0xFF000000 & (pkgId << 24)) | resID;
|
||||||
|
}
|
||||||
return getResSpec(new ResID(resID));
|
return getResSpec(new ResID(resID));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -158,6 +166,10 @@ public class ResTable {
|
|||||||
mPackageId = id;
|
mPackageId = id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setSharedLibrary(boolean flag) {
|
||||||
|
mSharedLibrary = flag;
|
||||||
|
}
|
||||||
|
|
||||||
public void clearSdkInfo() {
|
public void clearSdkInfo() {
|
||||||
mSdkInfo.clear();
|
mSdkInfo.clear();
|
||||||
}
|
}
|
||||||
@ -193,4 +205,8 @@ public class ResTable {
|
|||||||
public int getPackageId() {
|
public int getPackageId() {
|
||||||
return mPackageId;
|
return mPackageId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean getSharedLibrary() {
|
||||||
|
return mSharedLibrary;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -90,6 +90,7 @@ public class ARSCDecoder {
|
|||||||
// for Apktool's use we need a non-zero packageId.
|
// for Apktool's use we need a non-zero packageId.
|
||||||
// AOSP indicates 0x02 is next, as 0x01 is system and 0x7F is private.
|
// AOSP indicates 0x02 is next, as 0x01 is system and 0x7F is private.
|
||||||
id = 2;
|
id = 2;
|
||||||
|
mResTable.setSharedLibrary(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
String name = mIn.readNullEndedString(128, true);
|
String name = mIn.readNullEndedString(128, true);
|
||||||
|
@ -10,6 +10,7 @@ versionInfo:
|
|||||||
versionCode: '1'
|
versionCode: '1'
|
||||||
versionName: '1.0'
|
versionName: '1.0'
|
||||||
compressionType: false
|
compressionType: false
|
||||||
|
sharedLibrary: false
|
||||||
unknownFiles:
|
unknownFiles:
|
||||||
hidden.file: '8'
|
hidden.file: '8'
|
||||||
unk_folder/unknown_file: '8'
|
unk_folder/unknown_file: '8'
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
version: 2.0.0
|
version: 2.0.0
|
||||||
apkFileName: testjar.jar
|
apkFileName: testjar.jar
|
||||||
|
sharedLibrary: false
|
||||||
|
Loading…
Reference in New Issue
Block a user