Skip to content

Commit

Permalink
Update to v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RobAtticus committed Jun 2, 2016
1 parent 31c2519 commit ece23ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId 'com.iobeam.samples.android.wifirssi'
minSdkVersion 15
targetSdkVersion 22
versionCode 12
versionName "2.3"
versionCode 13
versionName "2.4"
}

buildTypes {
Expand All @@ -27,7 +27,7 @@ repositories {

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile('com.iobeam:iobeam-client-java:0.5.13') {
compile('com.iobeam:iobeam-client-java:0.6.1') {
exclude module: 'json'
}
compile 'com.android.support:appcompat-v7:22.2.1'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,11 +212,7 @@ private void addDataPoint(int rssi) {
wifiReadings.add(new String[]{SERIES_NAME}, new Object[]{rssi});

if (mCanSend && iobeam.getDataSize() >= BATCH_SIZE) {
try {
iobeam.sendAsync(mDataCallback);
} catch (ApiException e) {
e.printStackTrace();
}
iobeam.sendAsync(mDataCallback);
}
}

Expand Down

0 comments on commit ece23ba

Please sign in to comment.