From bad7c47518086561a4d742a32d746e109a48d8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Herculano?= Date: Thu, 2 May 2024 13:16:12 +0200 Subject: [PATCH] fix native message app build gradle --- NATIVEMESSAGE_GUIDE.md | 2 +- cmplibrary/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/NATIVEMESSAGE_GUIDE.md b/NATIVEMESSAGE_GUIDE.md index adf277057..314e7a705 100644 --- a/NATIVEMESSAGE_GUIDE.md +++ b/NATIVEMESSAGE_GUIDE.md @@ -118,7 +118,7 @@ available functions: - `removeNativeView`: allows the app to remove the native layout after the user take an action. ## A complete example -A complete example can be found into the `samples/native-message-demo` +A complete example can be found into the `samples/nat-message-demo` diff --git a/cmplibrary/build.gradle.kts b/cmplibrary/build.gradle.kts index a01c462f4..e944de1a1 100644 --- a/cmplibrary/build.gradle.kts +++ b/cmplibrary/build.gradle.kts @@ -120,7 +120,7 @@ addCommitPushConfig { "${rootDir.path}/CHANGELOG.md", "${rootDir.path}/README.md", "${rootDir.path}/samples/web-message-demo/build.gradle", - "${rootDir.path}/samples/native-message-demo/build.gradle" + "${rootDir.path}/samples/nat-message-demo/build.gradle" ) } @@ -138,7 +138,7 @@ replaceInFile { replaceWith = "com.sourcepoint.cmplibrary:cmplibrary:$versionName" } create("doc2") { - path = "${rootDir.path}/samples/native-message-demo/build.gradle" + path = "${rootDir.path}/samples/nat-message-demo/build.gradle" find = "com.sourcepoint.cmplibrary:cmplibrary:(\\d)+\\.(\\d)+\\.(\\d)+" replaceWith = "com.sourcepoint.cmplibrary:cmplibrary:$versionName" }