Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 33aa9bd

Browse files
committed
Rereleased as gcm-push-client.
1 parent f736a88 commit 33aa9bd

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

CHANGELOG.MD

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
11
# Change Log
22

3-
## [1.1.0](https://github.com/devsu/gcm-push-client/releases/tag/1.1.0) (2015-12-22)
4-
5-
+ Fixed GCM.unregister() method deprecation by creating an UnregisterService.
6-
+ Fixed GCM.MESSAGE_TYPE_MESSAGE constant deprecation by creating a class that extends GcmListenerService.
7-
83
## [1.0.0](https://github.com/devsu/gcm-push-client/releases/tag/1.0.0) (2015-12-22)
94

105
First release of the GCM Push Client.
116

127
+ Initial commit.
138
+ Added Javadocs.
149
+ Added Readme and License
15-
+ Added Bintray plugin for gradle.
10+
+ Added Bintray plugin for gradle.
11+
+ Fixed GCM.unregister() method deprecation by creating an UnregisterService.
12+
+ Fixed GCM.MESSAGE_TYPE_MESSAGE constant deprecation by creating a class that extends GcmListenerService.

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Using GCM Push Client is very simple. You can import GCM Push Client on your bui
99
```
1010
// Remember to add your GCM Play Services dependency!
1111
compile 'com.google.android.gms:play-services-gcm:8.4.0'
12-
compile 'com.devsu:pushclient:1.1.0'
12+
compile 'com.devsu:gcm-push-client:1.0.0'
1313
```
1414

1515
Then, initialize the library on your Application, and that's it!

pushclient/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
minSdkVersion 12
99
targetSdkVersion 23
1010
versionCode 1
11-
versionName "1.1.0"
11+
versionName "1.0.0"
1212
}
1313

1414
buildTypes {
@@ -25,7 +25,7 @@ ext {
2525

2626
publishedGroupId = 'com.devsu'
2727
libraryName = 'GCM Push Client'
28-
artifact = 'pushclient'
28+
artifact = 'gcm-push-client'
2929

3030
libraryDescription = 'Library that allows you to easily receive GCM Push Messages on Android.'
3131

sample/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ android {
1010
minSdkVersion 12
1111
targetSdkVersion 23
1212
versionCode 1
13-
versionName "1.1.0"
13+
versionName "1.0.0"
1414
}
1515
buildTypes {
1616
release {

0 commit comments

Comments
 (0)