Skip to content
This repository has been archived by the owner on Apr 28, 2022. It is now read-only.

Commit

Permalink
Update version.
Browse files Browse the repository at this point in the history
Release 0.1.5.
  • Loading branch information
Roman Savin committed Mar 10, 2015
1 parent 4a4a2f8 commit 7f8777e
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 18 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -23,21 +23,21 @@ Android Device Messaging and has possibility to integrate new push service.
Download [the latest AAR][opfpush-latest-aar] or [the latest JAR][opfpush-latest-jar]. Also you can grab it via Gradle.
For AAR dependency:
```groovy
compile ('org.onepf:opfpush:0.1.4@aar') {
compile ('org.onepf:opfpush:0.1.5@aar') {
transitive = true
}
```
for JAR dependency:
```groovy
compile 'org.onepf:opfpush:0.1.4'
compile 'org.onepf:opfpush:0.1.5'
```

or Maven:
```xml
<dependency>
<groupId>org.onepf</groupId>
<artifactId>opfpush</artifactId>
<version>0.1.4</version>
<version>0.1.5</version>
<type>aar</type>
</dependency>
```
Expand All @@ -46,7 +46,7 @@ for JAR dependency:
<dependency>
<groupId>org.onepf</groupId>
<artifactId>opfpush</artifactId>
<version>0.1.4</version>
<version>0.1.5</version>
</dependency>
```

Expand Down
7 changes: 4 additions & 3 deletions opfpush-providers/adm/build.gradle
Expand Up @@ -26,7 +26,7 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 21
versionName "0.1.5-SNAPSHOT"
versionName "0.1.5"
}

lintOptions {
Expand Down Expand Up @@ -60,10 +60,11 @@ dependencies {
androidTestCompile 'org.robolectric:robolectric:2.4'

//noinspection NewerVersionAvailable
compile 'org.onepf:opfpush:0.1.5-SNAPSHOT@aar'
compile 'org.onepf:opfpush:0.1.5@aar'

provided 'com.amazon:amazon-device-messaging:1.0.1'
provided 'com.android.support:support-annotations:19.1.0'
provided 'com.google.code.findbugs:annotations:3.0.0'
//noinspection NewerVersionAvailable
provided 'org.onepf:opfutils:0.1.15-SNAPSHOT'
provided 'org.onepf:opfutils:0.1.15'
}
6 changes: 3 additions & 3 deletions opfpush-providers/gcm/build.gradle
Expand Up @@ -26,7 +26,7 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 21
versionName "0.1.5-SNAPSHOT"
versionName "0.1.5"
}

lintOptions {
Expand Down Expand Up @@ -61,11 +61,11 @@ dependencies {
androidTestCompile 'org.robolectric:robolectric:2.4'

//noinspection NewerVersionAvailable
compile 'org.onepf:opfpush:0.1.5-SNAPSHOT@aar'
compile 'org.onepf:opfpush:0.1.5@aar'
compile 'com.google.android.gms:play-services-base:6.5.87'

provided 'com.android.support:support-annotations:19.1.0'
provided 'com.google.code.findbugs:annotations:3.0.0'
//noinspection NewerVersionAvailable
provided 'org.onepf:opfutils:0.1.15-SNAPSHOT'
provided 'org.onepf:opfutils:0.1.15'
}
6 changes: 3 additions & 3 deletions opfpush-providers/nokia/build.gradle
Expand Up @@ -26,7 +26,7 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 21
versionName "0.1.5-SNAPSHOT"
versionName "0.1.5"
}

lintOptions {
Expand All @@ -51,11 +51,11 @@ check {

dependencies {
//noinspection NewerVersionAvailable
compile 'org.onepf:opfpush:0.1.5-SNAPSHOT@aar'
compile 'org.onepf:opfpush:0.1.5@aar'
compile 'com.nokia:push:1.0'

provided 'com.android.support:support-annotations:19.1.0'
provided 'com.google.code.findbugs:annotations:3.0.0'
//noinspection NewerVersionAvailable
provided 'org.onepf:opfutils:0.1.15-SNAPSHOT'
provided 'org.onepf:opfutils:0.1.15'
}
2 changes: 1 addition & 1 deletion opfpush/build.gradle
Expand Up @@ -27,7 +27,7 @@ android {
defaultConfig {
minSdkVersion 15
targetSdkVersion 21
versionName "0.1.5-SNAPSHOT"
versionName "0.1.5"
}

lintOptions {
Expand Down
8 changes: 4 additions & 4 deletions samples/opfpush-sample/build.gradle
Expand Up @@ -32,10 +32,10 @@ android {
}

dependencies {
compile 'org.onepf:opfpush-adm:0.1.5-SNAPSHOT@aar'
compile 'org.onepf:opfpush-gcm:0.1.5-SNAPSHOT@aar'
compile 'org.onepf:opfpush-nokia:0.1.5-SNAPSHOT@aar'
compile 'org.onepf:opfpush:0.1.5-SNAPSHOT@aar'
compile 'org.onepf:opfpush-adm:0.1.5@aar'
compile 'org.onepf:opfpush-gcm:0.1.5@aar'
compile 'org.onepf:opfpush-nokia:0.1.5@aar'
compile 'org.onepf:opfpush:0.1.5@aar'

compile 'com.google.android.gms:play-services:6.5.87'
compile 'com.nokia:push:1.0'
Expand Down

0 comments on commit 7f8777e

Please sign in to comment.