Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
/SealPublic

A Gradle Plugin for resolving AndroidManifest.xml merge conflicts.

License

NotificationsYou must be signed in to change notification settings

2BAB/Seal

Repository files navigation

Seal

Maven CentralActions StatusApache 2

English |中文说明

Seal is a Gradle Plugin to resolve AndroidManifest.xml merge conflicts, powered byNew Variant/Artifact API &Polyfill.

To be noticed, except the tag removing, any other delete/update features should always consider the "tools:replace", "tools:remove", and other official features thatManifestMerger provided as higher priority.

Functionality that Seal provided is more like thefirst aid tosave an urgent publish that is blocked by ManifestMerger, including pre/post processors to intercept the merge flow of AndroidManifest.xml. Developers should take responsibility to report bugs to library authors(who introduced problematic Manifest), ManifestMerger(Google), AAPT2(Google), which is the true way to solve the merge issues.

Quick Start

0x01. Add the plugin to classpath:

// Option 1.// Add `mavenCentral` to `pluginManagement{}` on `settings.gradle.kts` (or the root `build.gradle.kts`),// and then the seal plugin id.pluginManagement {repositories {...        mavenCentral()    }    plugins {...    id("me.2bab.seal") version"3.4.0" applyfalse    }}// Option 2.// Using classic `buildscript{}` block in root build.gradle.kts.buildscript {    repositories {...        mavenCentral()    }    dependencies {        classpath("com.android.tools.build:gradle:8.1.2")        classpath("me.2bab:seal:3.4.0")    }}

0x02. Apply the plugin:

// On Application's build.gradle.kts (do not use in Library project)plugins {    id("com.android.application")    kotlin("android")// Apply this plugin    id("me.2bab.seal")}

0x03. Configurations

seal {// 0. Two cases for before merge.    beforeMerge("Remove description attr for library input Manifest.")        .tag("application")        .attr("android:description")        .deleteAttr()    beforeMerge("Remove problematic replace attr for library input Manifest.")        .tag("application")        .attr("tools:replace")        .deleteAttr()// Full covered cases for after merge (1-5).// 1. The target of this operation is too broad, please specify the attr and value if possible.    afterMerge("Remove all uses-feature tags.")        .tag("uses-feature")        .deleteTag()// 2. The target of this operation is too broad, please specify the value if possible.    afterMerge("Remove all custom permission tags.")        .tag("permission")        .attr("android:protectionLevel")        .deleteTag()// 3. This is the way we recommend to delete the tag(s).    afterMerge("Remove invalid service tag.")        .tag("service")        .attr("android:name")        .value("me.xx2bab.seal.sample.library.LegacyService")        .deleteTag()// You should try to use "tools:remove" or "tools:replace" instead of "deleteAttr" if possible// 4. To delete an attr and its value.    afterMerge("Remove application's allowBackup attr.")        .tag("application")        .attr("android:allowBackup")        .deleteAttr()// You should try to use "tools:remove" or "tools:replace" instead of "deleteAttr" if possible// 5. Also u can specify the value as part of finding params.//    afterMerge("Remove application's allowBackup attr.")//        .tag("application")//        .attr("android:allowBackup")//        .value("true")//        .deleteAttr()}

The configuration is separated by 3 parts:

  1. To specify the hook entry which you can select frombeforeMerge(ruleName: String) orafterMerge(ruleName: String),before intercepts all merge inputs (all libraries, except the main application one), whileafter modifies the mergedAndroidManifest.xml;
  2. To specify the search params which you can passtag(name: String)attr(name: String)value(name: String) (currently we haven't support regex), please pass as precise as you can to locate the element
  3. To specify the delete type which you an select fromdeleteTag() ordeleteAttr(), to be noticed, only one delete action will be executed, DO NOT call more than onedeleteXXX

Common issues:

  1. Warning: AndroidManifest.xml already defines debuggable (inhttp://schemas.android.com/apk/res/android); using existing value in manifest.

That's because some out-of-date libraries setdebuggable at AndroidManifest, but now we pass this setting frombuild.gradle /build.gradle.kts to AAPT.

  1. Multiple entries with same key: @android:theme=REPLACE and android:theme=REPLACE / Multiple entries with same key: @android:allowBackup=REPLACE and android:allowBackup=REPLACE.

There is a library which definedandroid:allowBackup=true conflicts with yours (android:allowBackup=false). You wanna to override it usingtools:replace="android:allowBackup", but find thattools:replace="android:allowBackup" is also present at lib's manifest, finally the conflict shows above. (Also seethis)

  1. Sometimes xmlns is wrote in application or any other tags except manifest tag, may cause aapt'sconcealed defect,like debuggable setting of build.gradle would not work;

Please checkthis link for more info.

  1. Error:tools:replace specified at line:25 for attribute android:authorities, but no new value specified

Please checkthis link for more info.

Compatible Specification

Polyfill is only supported & tested on latest2 Minor versions of Android Gradle Plugin. Since3.0.2, the publish repository has been shifted toMaven Central.

AGP VersionLatest Support Version
8.1.x / 8.0.xMaven Central
7.2.x 7.1.x3.3.0
7.0.x3.1.0
4.2.x3.0.2
3.0.x2.0.0
2.3.x1.1.0

Why Seal use DOM parser API

Oracle Docs: Comparing StAX to Other JAXP APIs

Since we need to support "delete tag" feature, and export outputs simply, from the link above we can know DOM is easiest one to process that. Though it consumes more CPU and memory resources, luckily most ofAndroidManifest.xml are not complex and with the help of Gradle we can cache the task result if those input(s) didn't change.

License

Copyright Since 2017 2BABLicensed under the Apache License, Version 2.0 (the "License");you may not use this file except in compliance with the License.You may obtain a copy of the License at   http://www.apache.org/licenses/LICENSE-2.0Unless required by applicable law or agreed to in writing, softwaredistributed under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.See the License for the specific language governing permissions andlimitations under the License.

[8]ページ先頭

©2009-2025 Movatter.jp