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() ... }