From 7f0d5838eb5fb13fae498221365532d8aaaf7e93 Mon Sep 17 00:00:00 2001 From: Alexandros Schillings Date: Wed, 16 Apr 2014 08:32:37 +0100 Subject: [PATCH] Added build.xml and added the `dist` directory to gitignore --- README.md | 6 +++- documents/.~lock.COMPANY_IDENTIFIERS.ods# | 1 - library/.gitignore | 1 + library/build.xml | 40 +++++++++++++++++++++++ 4 files changed, 46 insertions(+), 2 deletions(-) delete mode 100644 documents/.~lock.COMPANY_IDENTIFIERS.ods# create mode 100644 library/build.xml diff --git a/README.md b/README.md index 7dd598c..fbf7673 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,10 @@ b. Create a Jar file (see Jarification below) and add it into your project. Type `ant jar` at the root of the Library Project to produce a Jar file. +The library jar along with it's javadoc jar will be found in the `dist` directory inside the library project. + +You will need to provide your own `local.properties` inside the library project. + ## Using the Library In the `onLeScan()` method of your `BluetoothAdapter.LeScanCallback()` create a new BluetoothLeDevice with the given information. @@ -90,7 +94,7 @@ An IBeaconDevice extends BluetoothLeDevice, so you still have access to the same * `getIBeaconData()`: Gets the raw IBeaconManufacturerData object. * `getUUID()`: Gets the device's UUID * `getMajor()`: Gets the device's Major value -* `getMinor()`: Gets the device's Major value +* `getMinor()`: Gets the device's Minor value ### Lookup Functions diff --git a/documents/.~lock.COMPANY_IDENTIFIERS.ods# b/documents/.~lock.COMPANY_IDENTIFIERS.ods# deleted file mode 100644 index a4af225..0000000 --- a/documents/.~lock.COMPANY_IDENTIFIERS.ods# +++ /dev/null @@ -1 +0,0 @@ -alex ,alex,alex-HP-ProBook-6550b,20.03.2014 16:05,file:///home/alex/.config/libreoffice/4; \ No newline at end of file diff --git a/library/.gitignore b/library/.gitignore index 47ab45a..7211978 100644 --- a/library/.gitignore +++ b/library/.gitignore @@ -4,3 +4,4 @@ local.properties .idea/ lint.xml /.apt_generated +/dist diff --git a/library/build.xml b/library/build.xml new file mode 100644 index 0000000..4aa9f98 --- /dev/null +++ b/library/build.xml @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +