$ npm install zhike-mobile-zhike-mobile-umeng-wrapper --save
$ react-native link zhike-mobile-zhike-mobile-umeng-wrapper
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜zhike-mobile-zhike-mobile-umeng-wrapper
and addRNZhikeMobileUmengWrapper.xcodeproj
- In XCode, in the project navigator, select your project. Add
libRNZhikeMobileUmengWrapper.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.reactlibrary.RNZhikeMobileUmengWrapperPackage;
to the imports at the top of the file - Add
new RNZhikeMobileUmengWrapperPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':zhike-mobile-zhike-mobile-umeng-wrapper' project(':zhike-mobile-zhike-mobile-umeng-wrapper').projectDir = new File(rootProject.projectDir, '../node_modules/zhike-mobile-zhike-mobile-umeng-wrapper/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':zhike-mobile-zhike-mobile-umeng-wrapper')
import RNZhikeMobileUmengWrapper from 'zhike-mobile-zhike-mobile-umeng-wrapper';
// TODO: What to do with the module?
RNZhikeMobileUmengWrapper;