提交 9b635298 authored 作者: 张国庆's avatar 张国庆

修改注册通道分开注册

上级 fb0adbfc
...@@ -4,7 +4,6 @@ import android.os.Bundle ...@@ -4,7 +4,6 @@ import android.os.Bundle
import android.os.Handler import android.os.Handler
import android.os.Looper import android.os.Looper
import android.os.PersistableBundle import android.os.PersistableBundle
import android.util.Log
import com.alibaba.sdk.android.push.AndroidPopupActivity import com.alibaba.sdk.android.push.AndroidPopupActivity
import com.blankj.utilcode.util.LogUtils import com.blankj.utilcode.util.LogUtils
import org.json.JSONObject import org.json.JSONObject
......
...@@ -603,6 +603,7 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler { ...@@ -603,6 +603,7 @@ class RammusPlugin : FlutterPlugin, MethodCallHandler {
gottenApplication = flutterPluginBinding.applicationContext gottenApplication = flutterPluginBinding.applicationContext
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "com.jarvanmo/rammus") channel = MethodChannel(flutterPluginBinding.binaryMessenger, "com.jarvanmo/rammus")
RammusPushHandler.methodChannel = channel
channel.setMethodCallHandler(this) channel.setMethodCallHandler(this)
} }
......
...@@ -92,10 +92,37 @@ void register() { ...@@ -92,10 +92,37 @@ void register() {
if (Platform.isAndroid) _channel.invokeMethod("register"); if (Platform.isAndroid) _channel.invokeMethod("register");
} }
// static Future<String> get platformVersion async { ///注册厂商通道 华为
// final String version = await _channel.invokeMethod('getPlatformVersion'); void registerHW() {
// return version; if (Platform.isAndroid) _channel.invokeMethod("registerHuaWei");
// } }
///注册厂商通道 小米
void registerXM(String appId, String appKey) {
if (Platform.isAndroid) _channel.invokeMethod("registerXiaomi", {
"appId": appId,
"appKey": appKey,
});
}
///注册厂商通道 oppo
void registerOPPO(String appId, String appKey) {
if (Platform.isAndroid) _channel.invokeMethod("registerOppo", {
"appId": appId,
"appKey": appKey,
});
}
///注册厂商通道 vivo
void registerVIVO(String appId, String appKey) {
if (Platform.isAndroid) _channel.invokeMethod("registerVivo", {
"appId": appId,
"appKey": appKey,
});
}
///注册厂商通道 荣耀
void registerHonor() {
if (Platform.isAndroid) _channel.invokeMethod("registerHonor");
}
///这个返回结果永远都是[true],并不是SDK初始化结果 ///这个返回结果永远都是[true],并不是SDK初始化结果
///初始化结果请监听[initCloudChannelResult] ///初始化结果请监听[initCloudChannelResult]
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论