react native 初始化的时候channel填什么呢,在哪设置
这个JPUSH_CHANNEL 需要怎么填呢。官网中没找到在哪配置
android {
defaultConfig {
applicationId "yourApplicationId" //在此替换你的应用包名
...
manifestPlaceholders = [
JPUSH_APPKEY: "yourAppKey", //在此替换你的APPKey
JPUSH_CHANNEL: "yourChannel" //在此替换你的channel
]
}
}