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,13 +31,14 @@ 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"}}*** 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"}} 35 +* Add to: android/settings.gradle 35 35 36 36 {{code language="groovy"}} 37 37 include ':react-native-mobigate' 38 38 project(':react-native-mobigate').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-mobigate/android') 39 39 {{/code}} 40 -* **Add to: android/app/build.gradle41 +* Add to: android/app/build.gradle 41 41 42 42 {{code language="groovy"}} 43 43 dependencies { ... ... @@ -44,7 +44,7 @@ 44 44 implementation project(':react-native-mobigate') 45 45 } 46 46 {{/code}} 47 -* **Add the MobigatePackage class to your list of exported packages into: android/app/src/main/.../MainApplication.java48 +* Add the MobigatePackage class to your list of exported packages into: android/app/src/main/.../MainApplication.java 48 48 49 49 {{code language="java"}} 50 50 ...