File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ It also offers:
99* For iBeacons: A decently inaccurate (due to real world issues) distance approximation.
1010* All the new object types are Parcelable.
1111
12- This will only work on Android 4.3 (API Level 18).
12+ This will only work on devices with Android 4.3 (API Level 18) and above.
1313
1414Sample app available on the [ Play Store] ( https://play.google.com/store/apps/details?id=uk.co.alt236.btlescan )
1515
@@ -112,6 +112,10 @@ You can also lookup values and convert them to human friendly strings:
112112 * Attempting to create an iBeaconDevice from a device which is not an iBeacon will now throw an IllegalArgumentException exception.
113113 * Fixed a ConcurrentModificationException on getRunningAverageRssi()
114114 * Added some Estimote UUIDs
115+ * v1.0.0:
116+ * Migrated project to Android Studio/ gradle
117+ * Fix for [ issue 5] ( https://github.com/alt236/Bluetooth-LE-Library---Android/issues/5 )
118+ * Fix for [ issue 9] ( https://github.com/alt236/Bluetooth-LE-Library---Android/issues/9 )
115119
116120## Sample Application Changelog
117121* v0.0.1
@@ -120,7 +124,10 @@ You can also lookup values and convert them to human friendly strings:
120124 * Can now export scanned devices as a CSV file.
121125* v0.0.3:
122126 * UI Refresh.
123-
127+ * v1.0.0:
128+ * Migrated project to Android Studio/ gradle
129+ * Using version v1.0.0 of the library project
130+
124131## Permission Explanation
125132You will need the following permissions to access the Bluetooth Hardware
126133
Original file line number Diff line number Diff line change 33ext. compileSdkVersion = 18
44ext. buildToolsVersion = " 21.1.1"
55ext. minSdkVersion = 18
6- ext. targetSdkVersion = 18
6+ ext. targetSdkVersion = 22
77
88buildscript {
99 repositories {
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.library'
22
3- final def versionMajor = 0
3+ final def versionMajor = 1
44final def versionMinor = 0
5- final def versionPatch = 2
6- final def androidVersionCode = 2
5+ final def versionPatch = 0
6+ final def androidVersionCode = 100
77
88final def targetSdk = rootProject. targetSdkVersion;
99final def minSdkRed = rootProject. minSdkVersion;
Original file line number Diff line number Diff line change 11apply plugin : ' com.android.application'
22
3- final def versionMajor = 0
3+ final def versionMajor = 1
44final def versionMinor = 0
5- final def versionPatch = 3
6- final def androidVersionCode = 3
5+ final def versionPatch = 0
6+ final def androidVersionCode = 100
77
88final def targetSdk = rootProject. targetSdkVersion;
99final def minSdkRed = rootProject. minSdkVersion;
You can’t perform that action at this time.
0 commit comments