From d61a76edb9dc60c67e58327311ba0243d3695b3a Mon Sep 17 00:00:00 2001 From: Jordan Byron Date: Thu, 7 Mar 2019 17:59:14 -0500 Subject: [PATCH] Update README.md --- README.md | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 6f43373..e04d8ca 100644 --- a/README.md +++ b/README.md @@ -31,22 +31,17 @@ Add the following lines to your `AppDelegate.m` file: ### Manual Linking on Android -Add the following to `app/build.gradle` within the +Add the following to `app/build.gradle` within the `dependencies { ... }` section -``` -dependencies { - ... -} -``` -section - -`implementation project(':react-native-quick-actions')` +```java +implementation project(':react-native-quick-actions') +```` Add `import com.reactNativeQuickActions.AppShortcutsPackage;` to your `MainApplication.java` Also add `new AppShortcutsPackage()` within the -``` +```java public List createAdditionalReactPackages() { return Arrays.asList( ...