jpush / jpush-react-native

JPush's officially supported React Native plugin (Android & iOS). 极光推送官方支持的 React Native 插件(Android & iOS)。
http://docs.jiguang.cn
MIT License
1.35k stars 336 forks source link

缺少kotlin版本的demo #940

Open inkCrazy opened 5 months ago

inkCrazy commented 5 months ago
"jcore-react-native": "^2.1.6",
"jpush-react-native": "^3.0.6",
"react": "18.2.0",
"react-native": "0.73.6",

MainActivity.kt里面先不要调用jCoreModule.setAuth(false)不知道怎么写了
inkCrazy commented 5 months ago

import com.facebook.react.bridge.ReactContext import com.facebook.react.bridge.ReactApplicationContext import cn.jiguang.plugins.core.JCoreModule

override fun onCreate(savedInstanceState: Bundle?) { val reactContext = getReactNativeHost().getReactInstanceManager().getCurrentReactContext() as ReactApplicationContext?; val jCoreModule = JCoreModule(reactContext); //先不要授权极光推送 jCoreModule.setAuth(false); super.onCreate(null) }