From 4a54091f715353dee7ad605fab5e3be176a3cca9 Mon Sep 17 00:00:00 2001 From: Dimitar Tachev Date: Wed, 9 Oct 2019 08:49:49 +0300 Subject: [PATCH] feat: support snapshot libs out of the box In this way, we avoid the manual step when a snapshot build with `useLibs` is generated. * This should not affect the default builds as the additional folder does not exist. Related to: https://github.com/NativeScript/nativescript-cli/issues/5049 --- test-app/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-app/app/build.gradle b/test-app/app/build.gradle index 69c40bced..1703aa1e4 100644 --- a/test-app/app/build.gradle +++ b/test-app/app/build.gradle @@ -266,7 +266,7 @@ android { } sourceSets.main { - jniLibs.srcDir "$projectDir/libs/jni" + jniLibs.srcDirs = ["$projectDir/libs/jni", "$projectDir/snapshot-build/build/ndk-build/libs"] } signingConfigs {