diff --git a/app/build.gradle.kts b/app/build.gradle.kts index cb249759b..c5864c808 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -46,6 +46,13 @@ android { testOptions { animationsDisabled = true } + packaging { + jniLibs { + // androidx.graphics:graphics-path ships a .so that llvm-strip cannot process; + // keep it as-is to silence "Unable to strip" warnings. + keepDebugSymbols += "**/libandroidx.graphics.path.so" + } + } } dependencies { diff --git a/chartLib/build.gradle.kts b/chartLib/build.gradle.kts index a855574e6..d8464bb59 100644 --- a/chartLib/build.gradle.kts +++ b/chartLib/build.gradle.kts @@ -40,6 +40,13 @@ android { testOptions { unitTests.isReturnDefaultValues = true // this prevents "not mocked" error } + packaging { + jniLibs { + // androidx.graphics:graphics-path ships a .so that llvm-strip cannot process; + // keep it as-is to silence "Unable to strip" warnings. + keepDebugSymbols += "**/libandroidx.graphics.path.so" + } + } } dependencies { diff --git a/chartLibCompose/build.gradle.kts b/chartLibCompose/build.gradle.kts index 1170ace2e..4d7692a6e 100644 --- a/chartLibCompose/build.gradle.kts +++ b/chartLibCompose/build.gradle.kts @@ -42,6 +42,13 @@ android { testOptions { unitTests.isReturnDefaultValues = true // this prevents "not mocked" error } + packaging { + jniLibs { + // androidx.graphics:graphics-path ships a .so that llvm-strip cannot process; + // keep it as-is to silence "Unable to strip" warnings. + keepDebugSymbols += "**/libandroidx.graphics.path.so" + } + } } dependencies {