Skip to content

Commit 87d9dd6

Browse files
fix
1 parent 4b0fd88 commit 87d9dd6

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

examples/android-chatter/build.gradle

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,13 @@ android {
2323
}
2424
packagingOptions {
2525
resources {
26-
pickFirsts += setOf("META-INF/license/LICENSE")
27-
excludes += setOf(
28-
"META-INF/io.netty.versions.properties",
29-
"META-INF/INDEX.LIST",
30-
"META-INF/versions/9/OSGI-INF/MANIFEST.MF",
31-
"META-INF/native-image/io.netty/netty-codec-native-quic/jni-config.json",
32-
"META-INF/native-image/io.netty/netty-codec-native-quic/reflect-config.json",
33-
"META-INF/native-image/io.netty/netty-codec-native-quic/resource-config.json"
34-
)
26+
pickFirsts.add("META-INF/license/LICENSE")
27+
excludes.add("META-INF/io.netty.versions.properties")
28+
excludes.add("META-INF/INDEX.LIST")
29+
excludes.add("META-INF/versions/9/OSGI-INF/MANIFEST.MF")
30+
excludes.add("META-INF/native-image/io.netty/netty-codec-native-quic/jni-config.json")
31+
excludes.add("META-INF/native-image/io.netty/netty-codec-native-quic/reflect-config.json")
32+
excludes.add("META-INF/native-image/io.netty/netty-codec-native-quic/resource-config.json")
3533
}
3634

3735
}

0 commit comments

Comments
 (0)