mob_smssdk 0.0.2 copy "mob_smssdk: ^0.0.2" to clipboard
mob_smssdk: ^0.0.2 copied to clipboard

outdated

SMSSDK is the most popular social SDK for apps and mobile games ! We've already supported over 1000 country or zone in global world until now.中文官网:http://sms.mob.com

smssdk for Flutter #

为开发者提供全球通用的短信验证码工具,开发者可以用其在App植入短信验证码SDK、简单设置即可短信验证,集成快速便捷,且后期易于管理

开始 #

1.Flutter集成文档 SMSSDK-For-Flutter 在线文档

2.iOS平台配置参考 iOS集成文档

  • 实现 "一、注册应用获取appKey 和 appSecret"
  • 实现 "三、配置appkey和appSecret"

3.Android平台集成

######导入SMSSDK相关依赖

  1. 在项目根目录的build.gradle中添加以下代码:
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        **classpath 'com.mob.sdk:MobSDK:+'**
    }
  1. 在app/build.gradle中添加以下代码:
apply plugin: 'com.android.application'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
// 导入MobSDK
**apply plugin: 'com.mob.sdk'**
  1. 在pubspec.yaml文件中添加smssdk flutter插件:
flutter:
  # This section identifies this Flutter project as a plugin project.
  # The androidPackage and pluginClass identifiers should not ordinarily
  # be modified. They are used by the tooling to maintain consistency when
  # adding or updating assets for this project.
  plugin:
    androidPackage: cn.smssdk.flutter
    pluginClass: SmssdkPlugin

######添加代码

  1. 在MainActivity的onCreate中添加以下代码:
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    GeneratedPluginRegistrant.registerWith(this);
    // 注册SMSSDK Flutter插件
    **SmssdkPlugin.registerWith(registrarFor(SmssdkPlugin.CHANNEL));**
    // 初始化SMSSDK
    **MobSDK.init(this, MOB_APPKEY, MOB_APPSECRET);**
  }
  1. 在MainActivity的onDestory中添加以下代码:
	@Override
	protected void onDestroy() {
		super.onDestroy();
		// 执行回收操作
		**SmssdkPlugin.recycle();**
	}
0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

SMSSDK is the most popular social SDK for apps and mobile games ! We've already supported over 1000 country or zone in global world until now.中文官网:http://sms.mob.com

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on mob_smssdk