Bumping versions and updating README
This commit is contained in:
@@ -9,7 +9,7 @@ It also offers:
|
||||
* For iBeacons: A decently inaccurate (due to real world issues) distance approximation.
|
||||
* All the new object types are Parcelable.
|
||||
|
||||
This will only work on Android 4.3 (API Level 18).
|
||||
This will only work on devices with Android 4.3 (API Level 18) and above.
|
||||
|
||||
Sample app available on the [Play Store](https://play.google.com/store/apps/details?id=uk.co.alt236.btlescan)
|
||||
|
||||
@@ -112,6 +112,10 @@ You can also lookup values and convert them to human friendly strings:
|
||||
* 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
|
||||
* v1.0.0:
|
||||
* Migrated project to Android Studio/ gradle
|
||||
* Fix for [issue 5](https://github.com/alt236/Bluetooth-LE-Library---Android/issues/5)
|
||||
* Fix for [issue 9](https://github.com/alt236/Bluetooth-LE-Library---Android/issues/9)
|
||||
|
||||
## Sample Application Changelog
|
||||
* v0.0.1
|
||||
@@ -120,7 +124,10 @@ You can also lookup values and convert them to human friendly strings:
|
||||
* Can now export scanned devices as a CSV file.
|
||||
* v0.0.3:
|
||||
* UI Refresh.
|
||||
|
||||
* v1.0.0:
|
||||
* Migrated project to Android Studio/ gradle
|
||||
* Using version v1.0.0 of the library project
|
||||
|
||||
## Permission Explanation
|
||||
You will need the following permissions to access the Bluetooth Hardware
|
||||
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@
|
||||
ext.compileSdkVersion = 18
|
||||
ext.buildToolsVersion = "21.1.1"
|
||||
ext.minSdkVersion = 18
|
||||
ext.targetSdkVersion = 18
|
||||
ext.targetSdkVersion = 22
|
||||
|
||||
buildscript {
|
||||
repositories {
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
apply plugin: 'com.android.library'
|
||||
|
||||
final def versionMajor = 0
|
||||
final def versionMajor = 1
|
||||
final def versionMinor = 0
|
||||
final def versionPatch = 2
|
||||
final def androidVersionCode = 2
|
||||
final def versionPatch = 0
|
||||
final def androidVersionCode = 100
|
||||
|
||||
final def targetSdk = rootProject.targetSdkVersion;
|
||||
final def minSdkRed = rootProject.minSdkVersion;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
apply plugin: 'com.android.application'
|
||||
|
||||
final def versionMajor = 0
|
||||
final def versionMajor = 1
|
||||
final def versionMinor = 0
|
||||
final def versionPatch = 3
|
||||
final def androidVersionCode = 3
|
||||
final def versionPatch = 0
|
||||
final def androidVersionCode = 100
|
||||
|
||||
final def targetSdk = rootProject.targetSdkVersion;
|
||||
final def minSdkRed = rootProject.minSdkVersion;
|
||||
|
||||
Reference in New Issue
Block a user