You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
huangminlinux 6114053dac
add debug mode config update to 0.0.7
6 years ago
android add debug mode config update to 0.0.7 6 years ago
documents update to 0.0.5 6 years ago
example add debug mode config update to 0.0.7 6 years ago
ios add debug mode config update to 0.0.7 6 years ago
lib add debug mode config update to 0.0.7 6 years ago
test update to 0.0.5 6 years ago
.gitignore update gitignore 6 years ago
.packages add debug mode config update to 0.0.7 6 years ago
CHANGELOG.md udpate to 0.0.2 6 years ago
LICENSE create flutter project 6 years ago
README.md update to 0.0.6 fix swift project 6 years ago
pubspec.lock update to 0.0.5 6 years ago
pubspec.yaml add debug mode config update to 0.0.7 6 years ago

README.md

QQ Group

JPush Flutter Plugin

安装

在工程 pubspec.yaml 中加入 dependencies

dependencies:
  jpush_flutter: 0.0.6

配置

Android:

/android/app/build.gradle 中添加下列代码:

android: {
  ....
  defaultConfig {
    applicationId "替换成自己应用 ID"
    ...
    ndk {
	//选择要添加的对应 cpu 类型的 .so 库。
	abiFilters 'armeabi', 'armeabi-v7a', 'x86', 'x86_64', 'mips', 'mips64' // 'arm64-v8a',        
    }

    manifestPlaceholders = [
        JPUSH_PKGNAME : applicationId,
        JPUSH_APPKEY : "appkey", // NOTE: JPush 上注册的包名对应的 Appkey.
        JPUSH_CHANNEL : "developer-default", //暂时填写默认值即可.
    ]
  }    
}
iOS:
  • 在 iOS 工程中设置 TARGETS-> BUILD Phases -> LinkBinary with Libraries 找到 UserNotifications.framework 把 status 设为 optional
  • 在 xcode8 之后需要点开推送选项: TARGETS -> Capabilities -> Push Notification 设为 on 状态

使用

import 'package:jpush_flutter/jpush_flutter.dart';

APIs

注意 : 需要先调用 JPush.setup 来初始化插件,才能保证其他功能正常工作。

参考