Skip to content

Commit 1c58305

Browse files
author
ablecao
committed
update README.md
1 parent 00ad172 commit 1c58305

File tree

1 file changed

+22
-3
lines changed

1 file changed

+22
-3
lines changed

README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Master Branch: [![Travis CI](https://travis-ci.org/xingePush/xinge-api-java.svg?
44
## 概述
55
[信鸽](http://xg.qq.com) 是腾讯云提供的一款支持**百亿级**消息的移动App推送平台,开发者可以调用Java SDK访问信鸽推送服务。
66

7-
目前最新的SDK版本是 `1.2.0-SNAPSHOT`,请及时更新SDK版本以获取最新的功能特性。
7+
目前最新的SDK版本是 `1.2.0`,请及时更新SDK版本以获取最新的功能特性。
88

99
## 引用SDK
1010
- 方法一:使用maven库(**推荐**)
@@ -15,14 +15,14 @@ Master Branch: [![Travis CI](https://travis-ci.org/xingePush/xinge-api-java.svg?
1515
<repositories>
1616
<repository>
1717
<id>xingePush</id>
18-
<url>https://raw.githubusercontent.com/xingePush/maven-repository/snapshot/</url>
18+
<url>https://raw.githubusercontent.com/xingePush/maven-repository/release/</url>
1919
</repository>
2020
</repositories>
2121
<dependencies>
2222
<dependency>
2323
<groupId>com.github.xingePush</groupId>
2424
<artifactId>xinge</artifactId>
25-
<version>1.2.0-SNAPSHOT</version>
25+
<version>1.2.0</version>
2626
</dependency>
2727
</dependencies>
2828
```
@@ -32,6 +32,25 @@ Master Branch: [![Travis CI](https://travis-ci.org/xingePush/xinge-api-java.svg?
3232
- 方法三:下载库文件
3333
-[信鸽官网](http://xg.qq.com/xg/ctr_index/download)下载最新版本的包
3434
- 使用时引用XingeApp包即可
35+
36+
**注意:** 对于REST API V2接口请使用 `1.1.8`版本,此版本和 `1.2.0`版本差异很大
37+
38+
```xml
39+
40+
<repositories>
41+
<repository>
42+
<id>xingePush</id>
43+
<url>https://raw.githubusercontent.com/xingePush/maven-repository/release/</url>
44+
</repository>
45+
</repositories>
46+
<dependencies>
47+
<dependency>
48+
<groupId>com.github.xingePush</groupId>
49+
<artifactId>xinge</artifactId>
50+
<version>1.1.8</version>
51+
</dependency>
52+
</dependencies>
53+
```
3554

3655
## 接口说明
3756
信鸽提供的主要推送和查询接口包括3种

0 commit comments

Comments
 (0)