diff --git a/README.md b/README.md index f7c0f09..e0411c6 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/build.gradle b/build.gradle index b094e1b..e6d3881 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ ext.compileSdkVersion = 18 ext.buildToolsVersion = "21.1.1" ext.minSdkVersion = 18 -ext.targetSdkVersion = 18 +ext.targetSdkVersion = 22 buildscript { repositories { diff --git a/library/build.gradle b/library/build.gradle index c10e553..1878ac4 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -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; diff --git a/sample_app/build.gradle b/sample_app/build.gradle index 7bcc0e6..7375806 100644 --- a/sample_app/build.gradle +++ b/sample_app/build.gradle @@ -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;