Preparing to relase v0.0.2
This commit is contained in:
@@ -105,8 +105,19 @@ You can also lookup values and convert them to human friendly strings:
|
|||||||
|
|
||||||
**Note:** The data can be found as ODS (Open Office Spreadsheets) in the documents folder.
|
**Note:** The data can be found as ODS (Open Office Spreadsheets) in the documents folder.
|
||||||
|
|
||||||
## Changelog
|
## Library Changelog
|
||||||
* v0.0.1 First public release
|
* v0.0.1
|
||||||
|
* First public release
|
||||||
|
* v0.0.2:
|
||||||
|
* Attempting to create an iBeaconDevice from a device which is not an iBeacon will now throw an IllegalArgumentException exception.
|
||||||
|
* Fixed a ConcurrentModificationException on getRunningAverageRssi()
|
||||||
|
* Added some Estimote UUIDs
|
||||||
|
|
||||||
|
## Sample Application Changelog
|
||||||
|
* v0.0.1
|
||||||
|
* First public release
|
||||||
|
* v0.0.2:
|
||||||
|
* Can now export scanned devices as a CSV file.
|
||||||
|
|
||||||
## Permission Explanation
|
## Permission Explanation
|
||||||
You will need the following permissions to access the Bluetooth Hardware
|
You will need the following permissions to access the Bluetooth Hardware
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="uk.co.alt236.bluetoothlelib"
|
package="uk.co.alt236.bluetoothlelib"
|
||||||
android:versionCode="1"
|
android:versionCode="2"
|
||||||
android:versionName="0.0.1" >
|
android:versionName="0.0.2" >
|
||||||
|
|
||||||
<uses-sdk
|
<uses-sdk
|
||||||
android:minSdkVersion="18"
|
android:minSdkVersion="18"
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package uk.co.alt236.bluetoothlelib.device;
|
|||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="uk.co.alt236.btlescan"
|
package="uk.co.alt236.btlescan"
|
||||||
android:versionCode="1"
|
android:versionCode="2"
|
||||||
android:versionName="0.0.1" >
|
android:versionName="0.0.2" >
|
||||||
|
|
||||||
<uses-sdk
|
<uses-sdk
|
||||||
android:minSdkVersion="18"
|
android:minSdkVersion="18"
|
||||||
|
|||||||
Reference in New Issue
Block a user