File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
src/main/java/com/allaboutolaf Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -194,6 +194,7 @@ dependencies {
194194 compile project(' :react-native-maps' )
195195 compile project(' :react-native-network-info' )
196196 compile project(' :react-native-onesignal' )
197+ compile project(' :react-native-restart' )
197198 compile project(' :react-native-vector-icons' )
198199 compile project(' :react-native-view-shot' )
199200 // this is for react-native itself
Original file line number Diff line number Diff line change 77
88// keep these sorted alphabetically
99import com .airbnb .android .react .maps .MapsPackage ;
10+ import com .avishayil .rnrestart .ReactNativeRestartPackage ;
1011import com .bugsnag .BugsnagReactNative ;
1112import com .BV .LinearGradient .LinearGradientPackage ;
1213import com .facebook .react .ReactApplication ;
@@ -56,6 +57,7 @@ protected List<ReactPackage> getPackages() {
5657 new LinearGradientPackage (),
5758 new MapsPackage (),
5859 new ReactNativeOneSignalPackage (),
60+ new ReactNativeRestartPackage (),
5961 new RNDeviceInfo (),
6062 new RNNetworkInfoPackage (),
6163 new RNViewShotPackage (),
Original file line number Diff line number Diff line change @@ -32,6 +32,9 @@ project(':react-native-network-info').projectDir = new File(rootProject.projectD
3232include ' :react-native-onesignal'
3333project(' :react-native-onesignal' ). projectDir = new File (rootProject. projectDir, ' ../node_modules/react-native-onesignal/android' )
3434
35+ include ' :react-native-restart'
36+ project(' :react-native-restart' ). projectDir = new File (rootProject. projectDir, ' ../node_modules/react-native-restart/android' )
37+
3538include ' :react-native-vector-icons'
3639project(' :react-native-vector-icons' ). projectDir = new File (rootProject. projectDir, ' ../node_modules/react-native-vector-icons/android' )
3740
You can’t perform that action at this time.
0 commit comments