Skip to content

Commit d37787c

Browse files
committed
Set aaptOptions.ignoreAssetsPattern to something nonexistent but non-empty
1 parent aa79914 commit d37787c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Android/testbed/app/build.gradle.kts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,10 @@ android {
125125
path("src/main/c/CMakeLists.txt")
126126
}
127127

128-
// Set this property to something non-empty, otherwise it'll use the default
129-
// list, which ignores asset directories beginning with an underscore.
130-
aaptOptions.ignoreAssetsPattern = ".git"
128+
// Set this property to something nonexistent but non-empty. Otherwise it'll use the
129+
// default list, which ignores asset directories beginning with an underscore, and
130+
// maybe also other files required by tests.
131+
aaptOptions.ignoreAssetsPattern = "android-testbed-dont-ignore-anything"
131132

132133
compileOptions {
133134
sourceCompatibility = JavaVersion.VERSION_1_8

0 commit comments

Comments
 (0)