Skip to content

Commit e28d698

Browse files
committed
Preparing to relase v0.0.2
1 parent e79b3f8 commit e28d698

4 files changed

Lines changed: 17 additions & 7 deletions

File tree

README.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,19 @@ You can also lookup values and convert them to human friendly strings:
105105

106106
**Note:** The data can be found as ODS (Open Office Spreadsheets) in the documents folder.
107107

108-
## Changelog
109-
* v0.0.1 First public release
108+
## Library Changelog
109+
* v0.0.1
110+
* First public release
111+
* v0.0.2:
112+
* Attempting to create an iBeaconDevice from a device which is not an iBeacon will now throw an IllegalArgumentException exception.
113+
* Fixed a ConcurrentModificationException on getRunningAverageRssi()
114+
* Added some Estimote UUIDs
115+
116+
## Sample Application Changelog
117+
* v0.0.1
118+
* First public release
119+
* v0.0.2:
120+
* Can now export scanned devices as a CSV file.
110121

111122
## Permission Explanation
112123
You will need the following permissions to access the Bluetooth Hardware

library/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="uk.co.alt236.bluetoothlelib"
4-
android:versionCode="1"
5-
android:versionName="0.0.1" >
4+
android:versionCode="2"
5+
android:versionName="0.0.2" >
66

77
<uses-sdk
88
android:minSdkVersion="18"

library/src/uk/co/alt236/bluetoothlelib/device/BluetoothLeDevice.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import java.io.Serializable;
44
import java.util.Arrays;
5-
import java.util.Collections;
65
import java.util.Iterator;
76
import java.util.Map;
87

sample_app/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="uk.co.alt236.btlescan"
4-
android:versionCode="1"
5-
android:versionName="0.0.1" >
4+
android:versionCode="2"
5+
android:versionName="0.0.2" >
66

77
<uses-sdk
88
android:minSdkVersion="18"

0 commit comments

Comments
 (0)