diff --git a/README.md b/README.md index 99713273..de38bd6d 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ 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: @@ -37,7 +37,7 @@ or Maven: org.onepf opfpush - 0.1.4 + 0.1.5 aar ``` @@ -46,7 +46,7 @@ for JAR dependency: org.onepf opfpush - 0.1.4 + 0.1.5 ``` diff --git a/opfpush-providers/adm/build.gradle b/opfpush-providers/adm/build.gradle index ab1a7515..ce99e325 100644 --- a/opfpush-providers/adm/build.gradle +++ b/opfpush-providers/adm/build.gradle @@ -26,7 +26,7 @@ android { defaultConfig { minSdkVersion 15 targetSdkVersion 21 - versionName "0.1.5-SNAPSHOT" + versionName "0.1.5" } lintOptions { @@ -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' } diff --git a/opfpush-providers/gcm/build.gradle b/opfpush-providers/gcm/build.gradle index 837089e1..c6b01548 100644 --- a/opfpush-providers/gcm/build.gradle +++ b/opfpush-providers/gcm/build.gradle @@ -26,7 +26,7 @@ android { defaultConfig { minSdkVersion 15 targetSdkVersion 21 - versionName "0.1.5-SNAPSHOT" + versionName "0.1.5" } lintOptions { @@ -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' } diff --git a/opfpush-providers/nokia/build.gradle b/opfpush-providers/nokia/build.gradle index cea7e9a4..be1b1392 100644 --- a/opfpush-providers/nokia/build.gradle +++ b/opfpush-providers/nokia/build.gradle @@ -26,7 +26,7 @@ android { defaultConfig { minSdkVersion 15 targetSdkVersion 21 - versionName "0.1.5-SNAPSHOT" + versionName "0.1.5" } lintOptions { @@ -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' } diff --git a/opfpush/build.gradle b/opfpush/build.gradle index ca248712..3ad69cfe 100644 --- a/opfpush/build.gradle +++ b/opfpush/build.gradle @@ -27,7 +27,7 @@ android { defaultConfig { minSdkVersion 15 targetSdkVersion 21 - versionName "0.1.5-SNAPSHOT" + versionName "0.1.5" } lintOptions { diff --git a/samples/opfpush-sample/build.gradle b/samples/opfpush-sample/build.gradle index 8dac69c7..5b2d5e93 100644 --- a/samples/opfpush-sample/build.gradle +++ b/samples/opfpush-sample/build.gradle @@ -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'