Giter Site home page Giter Site logo

rhdai / react-native-get-channel Goto Github PK

View Code? Open in Web Editor NEW

This project forked from 1556173267/react-native-get-channel

0.0 1.0 0.0 10 KB

React Native bridging library for android to get app channel

License: MIT License

Java 87.98% JavaScript 12.02%

react-native-get-channel's Introduction

react-native-get-channel

React Native bridging library for android to get app channel

install

npm install react-native-get-channel --save

Android

Automatic

react-native link react-native-get-channel

Manually

  • android/settings.gradle
include ':react-native-get-channel'
project(':react-native-get-channel').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-get-channel/android')
  • android/app/build.gradle
dependencies {
    compile project(':react-native-get-channel')
}
  • register module (in MainActivity.java)
...

import com.superhao.react_native_get_channel.GetChannelPackage; // <--- IMPORT

public class MainActivity extends ReactActivity {

    ...

    @Override
    protected List<ReactPackage> getPackages() {
        return Arrays.<ReactPackage>asList(
            new MainReactPackage(),
            new GetChannelPackage() // <--- ADD HERE
        );
    }
    
    ...

General Usage

  • Add channel information into AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.ownmoduletest">
    ...
    <application
      ...
      <meta-data android:name="JPUSH_APPKEY" android:value="12.324"/> // <--- ADD HERE
      ...
    </application>
    ...
</manifest>
import {getAppMetaData} from 'react-native-get-channel';
  _getChannel = ()=> {
    getAppMetaData('JPUSH_APPKEY').then((data)=>{
      alert(data);
    }).catch((error)=>{
      alert('获取失败');
    });
  }

react-native-get-channel's People

Contributors

1556173267 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.