diff --git a/CHANGELOG b/CHANGELOG index 1068379..6847fcc 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +0.4.9 +===== +* Android library update, ConnectingActivity null exception fix. + 0.4.8 ===== * Permission and location service request messages. diff --git a/devicesetup/build.gradle b/devicesetup/build.gradle index 529ef78..2b1f129 100644 --- a/devicesetup/build.gradle +++ b/devicesetup/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' apply plugin: 'me.tatarka.retrolambda' // This is the library version used when deploying the artifact -version = '0.4.8' +version = '0.4.9' ext { bintrayRepo = 'android' @@ -34,8 +34,8 @@ ext { android { - compileSdkVersion 25 - buildToolsVersion '25.0.3' + compileSdkVersion 26 + buildToolsVersion '26.0.1' dexOptions { javaMaxHeapSize "2g" @@ -43,7 +43,7 @@ android { defaultConfig { minSdkVersion 15 - targetSdkVersion 25 + targetSdkVersion 26 versionCode 1 versionName "1.0" } @@ -80,7 +80,7 @@ android { dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') - compile 'io.particle:cloudsdk:0.4.6' + compile 'io.particle:cloudsdk:0.4.7' compile 'com.google.code.findbugs:jsr305:3.0.1' compile 'com.google.code.gson:gson:2.7' @@ -89,9 +89,9 @@ dependencies { compile 'uk.co.chrisjenx:calligraphy:2.2.0' compile 'com.segment.analytics.android:analytics:4.2.6' - compile 'com.android.support:appcompat-v7:25.4.0' - compile 'com.android.support:recyclerview-v7:25.4.0' - compile 'com.android.support:support-annotations:25.4.0' + compile 'com.android.support:appcompat-v7:26.0.1' + compile 'com.android.support:recyclerview-v7:26.0.1' + compile 'com.android.support:support-annotations:26.0.1' retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:2.3.0' diff --git a/exampleapp/build.gradle b/exampleapp/build.gradle index 3d893b2..f22080e 100644 --- a/exampleapp/build.gradle +++ b/exampleapp/build.gradle @@ -2,13 +2,13 @@ apply plugin: 'com.android.application' apply plugin: 'me.tatarka.retrolambda' android { - compileSdkVersion 25 - buildToolsVersion '25.0.3' + compileSdkVersion 26 + buildToolsVersion '26.0.1' defaultConfig { applicationId "io.particle.devicesetup.exampleapp" minSdkVersion 16 - targetSdkVersion 25 + targetSdkVersion 26 versionCode 1 versionName "1.0" } @@ -47,7 +47,7 @@ dependencies { // UNCOMMENT THE FOLLOWING TO USE A PUBLISHED VERSION OF THE SDK: // compile 'io.particle:devicesetup:0.2.0' - compile 'com.android.support:appcompat-v7:25.4.0' + compile 'com.android.support:appcompat-v7:26.0.1' retrolambdaConfig 'net.orfjackal.retrolambda:retrolambda:2.3.0' }