From 9527aa5edb6c3c1e39a5c85fe829666a6953447f Mon Sep 17 00:00:00 2001 From: CAI Kelun Date: Thu, 5 Aug 2021 00:18:02 +0800 Subject: [PATCH] Fix a bug in sample app's build.gradle. --- xunwind_sample/build.gradle | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/xunwind_sample/build.gradle b/xunwind_sample/build.gradle index 70760c6..a77724c 100644 --- a/xunwind_sample/build.gradle +++ b/xunwind_sample/build.gradle @@ -40,12 +40,17 @@ android { minifyEnabled false } } - buildFeatures { - prefab true + if (!rootProject.ext.dependencyOnLocalLibrary) { + buildFeatures { + prefab true + } } packagingOptions { pickFirst '**/libxunwind.so' } + lintOptions { + abortOnError false + } } dependencies {