Skip to content

Commit a7333c3

Browse files
committed
ignore android runtime resources and manifest
1 parent fc9b08c commit a7333c3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ android {
9090
lintOptions {
9191
abortOnError false
9292
}
93+
94+
packagingOptions {
95+
exclude 'resources.arsc'
96+
exclude "AndroidManifest.xml"
97+
}
9398
}
9499

95100
repositories {

test-app/build.gradle

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -107,11 +107,6 @@ android {
107107
def tsk = variant.mergeAssets
108108
tsk.dependsOn(copyMetadata)
109109
}
110-
111-
packagingOptions {
112-
exclude 'resources.arsc'
113-
exclude "AndroidManifest.xml"
114-
}
115110
}
116111

117112
def sdkPath = android.sdkDirectory.getAbsolutePath();

0 commit comments

Comments
 (0)