Skip to content

Commit 262fa72

Browse files
committed
Bumping versions and updating README
1 parent f68b2f5 commit 262fa72

4 files changed

Lines changed: 16 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff 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

1414
Sample 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
125132
You will need the following permissions to access the Bluetooth Hardware
126133

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ext.compileSdkVersion = 18
44
ext.buildToolsVersion = "21.1.1"
55
ext.minSdkVersion = 18
6-
ext.targetSdkVersion = 18
6+
ext.targetSdkVersion = 22
77

88
buildscript {
99
repositories {

library/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apply plugin: 'com.android.library'
22

3-
final def versionMajor = 0
3+
final def versionMajor = 1
44
final def versionMinor = 0
5-
final def versionPatch = 2
6-
final def androidVersionCode = 2
5+
final def versionPatch = 0
6+
final def androidVersionCode = 100
77

88
final def targetSdk = rootProject.targetSdkVersion;
99
final def minSdkRed = rootProject.minSdkVersion;

sample_app/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
apply plugin: 'com.android.application'
22

3-
final def versionMajor = 0
3+
final def versionMajor = 1
44
final def versionMinor = 0
5-
final def versionPatch = 3
6-
final def androidVersionCode = 3
5+
final def versionPatch = 0
6+
final def androidVersionCode = 100
77

88
final def targetSdk = rootProject.targetSdkVersion;
99
final def minSdkRed = rootProject.minSdkVersion;

0 commit comments

Comments
 (0)