Merge pull request #115 from jpush/dev

v0.5.1
master
raoxudong 5 years ago committed by GitHub
commit 57971823c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -332,7 +332,7 @@
"languageVersion": "2.0" "languageVersion": "2.0"
} }
], ],
"generated": "2019-12-31T07:03:35.878530Z", "generated": "2020-01-03T07:03:17.333610Z",
"generator": "pub", "generator": "pub",
"generatorVersion": "2.7.0" "generatorVersion": "2.7.0"
} }

@ -1,4 +1,4 @@
# Generated by pub on 2019-12-31 15:03:35.849743. # Generated by pub on 2020-01-03 15:03:17.309070.
analyzer:file:///Applications/flutter/.pub-cache/hosted/pub.flutter-io.cn/analyzer-0.37.0/lib/ analyzer:file:///Applications/flutter/.pub-cache/hosted/pub.flutter-io.cn/analyzer-0.37.0/lib/
args:file:///Applications/flutter/.pub-cache/hosted/pub.flutter-io.cn/args-1.5.2/lib/ args:file:///Applications/flutter/.pub-cache/hosted/pub.flutter-io.cn/args-1.5.2/lib/
async:file:///Applications/flutter/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/ async:file:///Applications/flutter/.pub-cache/hosted/pub.flutter-io.cn/async-2.3.0/lib/

@ -1,3 +1,5 @@
## 0.5.1
+ 修改 minSdkVersion 最小支持 17
## 0.5.0 ## 0.5.0
+ 适配最新版本 JPush SDK + 适配最新版本 JPush SDK
+ 适配新版 SDK 的新功能接口 + 适配新版 SDK 的新功能接口

@ -5,16 +5,18 @@
在工程 pubspec.yaml 中加入 dependencies 在工程 pubspec.yaml 中加入 dependencies
```yaml ```
dependencies:
jpush_flutter: 0.5.0
//github //github 集成
dependencies: dependencies:
jpush_flutter: jpush_flutter:
git: git:
url: git://github.com/jpush/jpush-flutter-plugin.git url: git://github.com/jpush/jpush-flutter-plugin.git
ref: master ref: master
// pub 集成
dependencies:
jpush_flutter: 0.5.1
``` ```
### 配置 ### 配置

@ -25,7 +25,7 @@ android {
compileSdkVersion 28 compileSdkVersion 28
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 17
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }
lintOptions { lintOptions {

@ -40,7 +40,7 @@ android {
applicationId "com.shikk.testJpush" //JPush . applicationId "com.shikk.testJpush" //JPush .
minSdkVersion 16 minSdkVersion 17
targetSdkVersion 28 targetSdkVersion 28
versionCode flutterVersionCode.toInteger() versionCode flutterVersionCode.toInteger()
versionName flutterVersionName versionName flutterVersionName

@ -157,7 +157,7 @@ packages:
path: ".." path: ".."
relative: true relative: true
source: path source: path
version: "0.5.0" version: "0.5.1"
js: js:
dependency: transitive dependency: transitive
description: description:

@ -1,6 +1,6 @@
name: jpush_flutter name: jpush_flutter
description: JIGUANG officially supported JPush Flutter plugin (Android & iOS). 极光推送官方支持的 Flutter 插件Android & iOS(https://www.jiguang.cn)。 description: JIGUANG officially supported JPush Flutter plugin (Android & iOS). 极光推送官方支持的 Flutter 插件Android & iOS(https://www.jiguang.cn)。
version: 0.5.0 version: 0.5.1
author: xudong.rao <xudong.rao@outlook.com> author: xudong.rao <xudong.rao@outlook.com>
homepage: https://www.jiguang.cn homepage: https://www.jiguang.cn

Loading…
Cancel
Save