Skip to content

Instantly share code, notes, and snippets.

@papeMK2
Created June 10, 2015 14:53
Show Gist options
  • Save papeMK2/6f881e0203ddbdc0b1e0 to your computer and use it in GitHub Desktop.
Save papeMK2/6f881e0203ddbdc0b1e0 to your computer and use it in GitHub Desktop.
UWP用のBluetooth設定をしたpackage.appmanifest
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" IgnorableNamespaces="uap mp">
<Identity Name="3c689bab-1e0a-4d03-91b6-49b0e0d81947" Publisher="CN=Tsubasa" Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="3c689bab-1e0a-4d03-91b6-49b0e0d81947" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
<Properties>
<DisplayName>Band</DisplayName>
<PublisherDisplayName>Tsubasa</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10069.0" MaxVersionTested="10.0.10069.0" />
</Dependencies>
<Resources>
<Resource Language="x-generate" />
</Resources>
<Applications>
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="Band.App">
<uap:VisualElements DisplayName="Band" Square150x150Logo="Assets\Logo.png" Square44x44Logo="Assets\SmallLogo.png" Description="Band" BackgroundColor="#464646">
<uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClient" />
<DeviceCapability Name="bluetooth.rfcomm">
<Device Id="any">
<!-- Used by the Microsoft Band SDK -->
<Function Type="serviceId:A502CA9A-2BA5-413C-A4E0-13804E47B38F" />
<!-- Used by the Microsoft Band SDK -->
<Function Type="serviceId:C742E1A2-6320-5ABC-9643-D206C677E580" />
</Device>
</DeviceCapability>
</Capabilities>
</Package>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment