2.0.3 • Published 6 years ago

tnrn_sensor v2.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

npm react-native MIT bitHound Score Downloads

埋点 for React Native.

Support me with a Follow

Getting Started

First, cd to your RN project directory, and install RNMK through rnpm . If you don't have rnpm, you can install RNMK from npm with the command npm i -S tnrn_sensor and link it manually (see below).

iOS

  • React Native < 0.29 (Using rnpm)

    rnpm install tnrn_sensor

  • React Native >= 0.29

    $npm install -S tnrn_sensor

    $react-native link tnrn_sensor

Manually

  1. Add node_modules/tnrn_sensor/ios/RNKitSensor.xcodeproj to your xcode project, usually under the Libraries group
  2. Add libRNKitSensor.a (from Products under RNKitSensor.xcodeproj) to build target's Linked Frameworks and Libraries list
  3. Add tnrn_sensor framework to $(PROJECT_DIR)/Frameworks.

Android

  • React Native < 0.29 (Using rnpm)

    rnpm install tnrn_sensor

  • React Native >= 0.29

    $npm install -S tnrn_sensor

    $react-native link tnrn_sensor

Manually

  1. JDK 7+ is required
  2. Add the following snippet to your android/settings.gradle:

    include ':tnrn_sensor'
    project(':tnrn_sensor').projectDir = new File(rootProject.projectDir, '../node_modules/tnrn_sensor/android/app')
  3. Declare the dependency in your android/app/build.gradle

    dependencies {
        ...
        compile project(':tnrn_sensor')
    }
  4. Import import io.rnkit.sensor.SensorPackage; and register it in your MainActivity (or equivalent, RN >= 0.32 MainApplication.java):

    @Override
    protected List<ReactPackage> getPackages() {
        return Arrays.asList(
                new MainReactPackage(),
                new SensorPackage()
        );
    }

Finally, you're good to go, feel free to require tnrn_sensor in your JS files.

Have fun! :metal:

Questions

Feel free to contact me or create an issue

made with ♥

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.1.0

6 years ago

1.0.9

6 years ago

1.0.8

7 years ago