mirror of
https://github.com/revanced/Apktool.git
synced 2025-01-05 17:45:52 +01:00
ApkDecoder.writeMetaFile(): don't write framework info if not decoding resources.
This commit is contained in:
parent
31e6dc51f1
commit
5d05136ab7
@ -187,7 +187,7 @@ public class ApkDecoder {
|
||||
meta.put("version", Androlib.getVersion());
|
||||
meta.put("apkFileName", mApkFile.getName());
|
||||
|
||||
if (hasResources()) {
|
||||
if (mDecodeResources != DECODE_RESOURCES_NONE && hasResources()) {
|
||||
meta.put("isFrameworkApk",
|
||||
Boolean.valueOf(mAndrolib.isFrameworkApk(getResTable())));
|
||||
putUsesFramework(meta);
|
||||
|
Loading…
Reference in New Issue
Block a user