Skip to content

Commit 9527aa5

Browse files
committed
Fix a bug in sample app's build.gradle.
1 parent 72d1b78 commit 9527aa5

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

xunwind_sample/build.gradle

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,17 @@ android {
4040
minifyEnabled false
4141
}
4242
}
43-
buildFeatures {
44-
prefab true
43+
if (!rootProject.ext.dependencyOnLocalLibrary) {
44+
buildFeatures {
45+
prefab true
46+
}
4547
}
4648
packagingOptions {
4749
pickFirst '**/libxunwind.so'
4850
}
51+
lintOptions {
52+
abortOnError false
53+
}
4954
}
5055

5156
dependencies {

0 commit comments

Comments
 (0)