From 3c4b0b4903cd3ad7c8a1ebec7a2141dbc0bd8a2e Mon Sep 17 00:00:00 2001 From: Manol Donev Date: Wed, 24 Oct 2018 13:47:41 +0300 Subject: [PATCH] feat: use implementation for support.design Use implementation instead of debugImplementation for com.android.support:design. This fixes a release build error for master/detail template with compile sdk 28 / support library 28.0.0. Related to https://github.com/NativeScript/android-runtime/pull/1193 --- 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 59060e01c..e8cfff2a3 100644 --- a/test-app/app/build.gradle +++ b/test-app/app/build.gradle @@ -267,7 +267,7 @@ dependencies { implementation "com.android.support:multidex:1.0.2" implementation "com.android.support:support-v4:$supportVer" implementation "com.android.support:appcompat-v7:$supportVer" - debugImplementation "com.android.support:design:$supportVer" + implementation "com.android.support:design:$supportVer" def sbgProjectExists = !findProject(':static-binding-generator').is(null) if (sbgProjectExists) {