Android imports

This commit is contained in:
Diego Mello 2018-02-15 14:48:20 -02:00
parent ad6b4e6493
commit 2966eed8d9
4 changed files with 5 additions and 4 deletions

View File

@ -1,4 +1,4 @@
package com.rocketchatrn; package chat.rocket.reactnative;
import android.content.Intent; import android.content.Intent;
import android.content.pm.ResolveInfo; import android.content.pm.ResolveInfo;

View File

@ -1,4 +1,4 @@
package com.rocketchatrn; package chat.rocket.reactnative;
import android.content.Context; import android.content.Context;
import android.content.Intent; import android.content.Intent;

View File

@ -44,7 +44,8 @@ public class MainApplication extends Application implements ReactApplication {
new ReactVideoPackage(), new ReactVideoPackage(),
new SplashScreenReactPackage(), new SplashScreenReactPackage(),
new RCTToastPackage(), new RCTToastPackage(),
new KeyboardInputPackage(MainApplication.this) new KeyboardInputPackage(MainApplication.this),
new RocketChatNativePackage()
); );
} }
}; };

View File

@ -1,4 +1,4 @@
package com.rocketchatrn; package chat.rocket.reactnative;
import com.facebook.react.ReactPackage; import com.facebook.react.ReactPackage;
import com.facebook.react.bridge.JavaScriptModule; import com.facebook.react.bridge.JavaScriptModule;