6.7.0 - Alpha13 - 修复打包应用因权限冲突无法正常安装的问题
This commit is contained in:
@@ -109,6 +109,10 @@ public class ManifestEditor {
|
|||||||
super.onAttr(a);
|
super.onAttr(a);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if ("org.autojs.permission.PLUGIN".equals(((StringItem) a.value).data)) {
|
||||||
|
this.ignore = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if ("uses-permission".equals(this.name.data) && "name".equals(a.name.data) && a.value instanceof StringItem) {
|
if ("uses-permission".equals(this.name.data) && "name".equals(a.name.data) && a.value instanceof StringItem) {
|
||||||
this.ignore = !ManifestEditor.this.isPermissionRequired(((StringItem) a.value).data);
|
this.ignore = !ManifestEditor.this.isPermissionRequired(((StringItem) a.value).data);
|
||||||
|
|||||||
Reference in New Issue
Block a user