From 495f5cf91228ce7c359c0b9e642739bf289d0848 Mon Sep 17 00:00:00 2001 From: Nickolay Ilchenko Date: Fri, 15 Sep 2017 12:15:10 +0300 Subject: [PATCH] Update README after changinh com.cboy -> org.devio --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f3ba4c4d..2d96f0ec 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ dependencies { 3. Update the MainApplication.java file to use `react-native-splash-screen` via the following changes: ```java -import com.cboy.rn.splashscreen.SplashScreenReactPackage; +import org.devio.rn.splashscreen.SplashScreenReactPackage; public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) { @@ -109,7 +109,7 @@ Update the `MainActivity.java` to use `react-native-splash-screen` via the follo ```java import android.os.Bundle; import com.facebook.react.ReactActivity; -import com.cboy.rn.splashscreen.SplashScreen; // here +import org.devio.rn.splashscreen.SplashScreen; // here public class MainActivity extends ReactActivity { @Override