-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use sbyte instead of byte for accessing ranging data in Eddystone UID…
… frames to ease development and remove the need for manual casting.
- Loading branch information
Showing
7 changed files
with
57 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
@echo -------------------------------------------------------------------------- | ||
@echo Remember to update the release notes in /UniversalBeaconLibrary.nuspec | ||
@echo -------------------------------------------------------------------------- | ||
nuget pack ./UniversalBeaconLibrary.nuspec -OutputDirectory ./nupkg -Build -Symbols -Prop Configuration=Release | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2013/01/nuspec.xsd"> | ||
<metadata minClientVersion="3.0"> | ||
<id>UniversalBeaconLibrary</id> | ||
<version>1.8.0</version> | ||
<releaseNotes>Fix for correctly handling beacon advertisements that are null</releaseNotes> | ||
<title>Universal Beacon Library for the Universal Windows Platform (Windows 10 UWP)</title> | ||
<authors>Andreas Jakl</authors> | ||
<owners>Andreas Jakl</owners> | ||
<licenseUrl>https://github.com/andijakl/universal-beacon/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/andijakl/universal-beacon</projectUrl> | ||
<iconUrl>https://raw.githubusercontent.com/andijakl/universal-beacon/master/UniversalBeaconLibraryLogo.png</iconUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<summary>Support Bluetooth Beacons in UWP / Windows 10 apps. Manages beacon instances, advertisements, frames and protocols. Includes Eddystone parsing.</summary> | ||
<description>Adds support for Bluetooth Beacons to the Universal Windows Platform (Windows 10). Manages received Bluetooth advertisements, clusters them into individual beacons and parses the advertisement payloads according to specifications including the Eddystone open Bluetooth Smart beacon format from Google.</description> | ||
<copyright>Copyright 2015 - 2016 Andreas Jakl, Tieto Corporation. All rights reserved.</copyright> | ||
<tags>bluetooth beacon beacons ibeacon eddystone altbeacon bluetoothle bluetoothsmart bluetooth le bluetooth smart ble proximity universal</tags> | ||
<dependencies> | ||
<dependency id="Microsoft.NETCore.UniversalWindowsPlatform" version="5.0.0" /> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="bin\Release\UniversalBeaconLibrary.dll" target="lib\uap10.0\UniversalBeaconLibrary.dll" /> | ||
<file src="bin\Release\UniversalBeaconLibrary.pdb" target="lib\uap10.0\UniversalBeaconLibrary.pdb" /> | ||
<file src="Beacon\**\*.cs" target="src\Beacon" exclude="**\TemporaryGeneratedFile*.cs"/> | ||
<file src="Properties\**\*.cs" target="src\Properties" exclude="**\TemporaryGeneratedFile*.cs"/> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters