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 @@ -199,6 +199,7 @@ dependencies {
199199 compile project(' :react-native-maps' )
200200 compile project(' :react-native-network-info' )
201201 compile project(' :react-native-onesignal' )
202+ compile project(' :react-native-restart' )
202203 compile project(' :react-native-vector-icons' )
203204 compile project(' :react-native-view-shot' )
204205 // 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 ;
@@ -49,6 +50,7 @@ protected List<ReactPackage> getPackages() {
4950 new LinearGradientPackage (),
5051 new MapsPackage (),
5152 new ReactNativeOneSignalPackage (),
53+ new ReactNativeRestartPackage (),
5254 new RNDeviceInfo (),
5355 new RNNetworkInfoPackage (),
5456 new RNViewShotPackage (),
Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ project(':react-native-network-info').projectDir = new File(rootProject.projectD
2929include ' :react-native-onesignal'
3030project(' :react-native-onesignal' ). projectDir = new File (rootProject. projectDir, ' ../node_modules/react-native-onesignal/android' )
3131
32+ include ' :react-native-restart'
33+ project(' :react-native-restart' ). projectDir = new File (rootProject. projectDir, ' ../node_modules/react-native-restart/android' )
34+
3235include ' :react-native-vector-icons'
3336project(' :react-native-vector-icons' ). projectDir = new File (rootProject. projectDir, ' ../node_modules/react-native-vector-icons/android' )
3437
You can’t perform that action at this time.
0 commit comments