This repository was archived by the owner on Jun 24, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-10
lines changed
Expand file tree Collapse file tree 4 files changed +7
-10
lines changed Original file line number Diff line number Diff line change 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
105First 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.
Original file line number Diff line number Diff 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
1515Then, initialize the library on your Application, and that's it!
Original file line number Diff line number Diff 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 {
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
Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments