Changes for page React native integration
Last modified by Developer on 2020/01/03 12:47
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -31,14 +31,13 @@ 31 31 * **React Native <= 0.59** 32 32 ** Mostly automatic installation: 33 33 {{code language=""}}react-native link react-native-mobigate{{/code}} 34 -** Manual installation:{{showhide id="1" showmessage="Manually link the library on Android" hidemessage="Manually link the library on Android"}} 35 -* Add to: android/settings.gradle 34 +** Manual installation:{{showhide id="1" showmessage="Manually link the library on Android" hidemessage="Manually link the library on Android"}}*** Add to: android/settings.gradle 36 36 37 37 {{code language="groovy"}} 38 38 include ':react-native-mobigate' 39 39 project(':react-native-mobigate').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-mobigate/android') 40 40 {{/code}} 41 -* Add to: android/app/build.gradle 40 +*** Add to: android/app/build.gradle 42 42 43 43 {{code language="groovy"}} 44 44 dependencies { ... ... @@ -45,7 +45,7 @@ 45 45 implementation project(':react-native-mobigate') 46 46 } 47 47 {{/code}} 48 -* Add the MobigatePackage class to your list of exported packages into: android/app/src/main/.../MainApplication.java 47 +*** Add the MobigatePackage class to your list of exported packages into: android/app/src/main/.../MainApplication.java 49 49 50 50 {{code language="java"}} 51 51 ...