From 6986f1aef27ea6fa83bc0b0b7e7a969ce6083d34 Mon Sep 17 00:00:00 2001 From: Zeeshan Shabbir Date: Mon, 20 Jun 2022 19:16:44 +0200 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 178e09a..db67893 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ Include the following dependencies in your app's build.gradle : def barricadeVersion = "0.0.1" // Get the latest version from tags def barricadeAnnotationsVersion = "0.1.1"" // Get the latest version from tags dependencies { - implementation ("om.mutualmobile:barricade-annotations:$barricadeAnnotationsVersion") + implementation ("com.mutualmobile:barricade-annotations:$barricadeAnnotationsVersion") implementation ("com.mutualmobile:barricade2:$barricadeVersion") ksp ("com.mutualmobile:barricade-compiler:$barricadeVersion") } @@ -65,6 +65,7 @@ android { override fun onCreate() { super.onCreate() Barricade.Builder(this, BarricadeConfig.getInstance()) + .enableShakeToStart(this) .install() ... }