Skip to content
This repository has been archived by the owner on Feb 14, 2019. It is now read-only.

Commit

Permalink
library update, changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
CityVibes committed Aug 21, 2017
1 parent 2edcde3 commit de124f9
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
0.4.9
=====
* Android library update, ConnectingActivity null exception fix.

0.4.8
=====
* Permission and location service request messages.
Expand Down
16 changes: 8 additions & 8 deletions devicesetup/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -34,16 +34,16 @@ ext {


android {
compileSdkVersion 25
buildToolsVersion '25.0.3'
compileSdkVersion 26
buildToolsVersion '26.0.1'

dexOptions {
javaMaxHeapSize "2g"
}

defaultConfig {
minSdkVersion 15
targetSdkVersion 25
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
Expand Down Expand Up @@ -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'
Expand All @@ -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'

Expand Down
8 changes: 4 additions & 4 deletions exampleapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down Expand Up @@ -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'
}

Expand Down

0 comments on commit de124f9

Please sign in to comment.