如何将应用程序直接安装到 Windows 10 Lumia 设备
How to install apps directly to Windows 10 Lumia device
我有诺基亚 Lumia 720 运行 Windows 10 Mobile Insider Preview 10.0.10512.100
我是 Windows phone 开发的新手。我想将应用程序直接推送到我的 Lumia 设备。
我遵循的步骤:
1) 按照
上的说明进行操作
2) 我在 Windows 10 台电脑上启用了开发者模式。
3) 按照步骤并启用了以下 Window 的策略:
->Allow all trusted apps to install
->Allows development of Windows Store apps and installing them from an integrated development environment (IDE)
然后我创建了一个 Windows 空白的 Visual C# 应用程序。现在我正在编辑 Package.appxmanifest
文件以编辑以下行:
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.1.0" MaxVersionTested="10.0.1.0" />
</Dependencies>
但是当右键单击 Package.appxmanifest
文件并单击查看代码时。代码中没有依赖行。
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest">
<Identity Name="a75442ea-6a4d-42f1-abf8-77ecbdc087f6"
Publisher="CN=Abhimanyu Aryan"
Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="a75442ea-6a4d-42f1-abf8-77ecbdc087f6" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>Test</DisplayName>
<PublisherDisplayName>Abhimanyu Aryan</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Prerequisites>
<OSMinVersion>6.3.1</OSMinVersion>
<OSMaxVersionTested>6.3.1</OSMaxVersionTested>
</Prerequisites>
<Resources>
<Resource Language="x-generate"/>
</Resources>
<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="Test.App">
<m3:VisualElements
DisplayName="Test"
Square150x150Logo="Assets\Logo.png"
Square44x44Logo="Assets\SmallLogo.png"
Description="Test"
ForegroundText="light"
BackgroundColor="transparent">
<m3:DefaultTile Wide310x150Logo="Assets\WideLogo.png" Square71x71Logo="Assets\Square71x71Logo.png"/>
<m3:SplashScreen Image="Assets\SplashScreen.png"/>
</m3:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClientServer" />
</Capabilities>
</Package>
要在 phone 上 运行 您的应用,您必须在 PHONE 上启用 Developer Mode
。
检查您正在开发的 UWP 应用程序:
- 右键点击你的孤子然后点击
Unload Project
- 之后右键单击它并单击
Edit YourApp.csproj
- 然后检查
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
是否存在?如果是,那么您来对地方了!
我有诺基亚 Lumia 720 运行 Windows 10 Mobile Insider Preview 10.0.10512.100
我是 Windows phone 开发的新手。我想将应用程序直接推送到我的 Lumia 设备。
我遵循的步骤:
1) 按照
2) 我在 Windows 10 台电脑上启用了开发者模式。
3) 按照步骤并启用了以下 Window 的策略:
->Allow all trusted apps to install
->Allows development of Windows Store apps and installing them from an integrated development environment (IDE)
然后我创建了一个 Windows 空白的 Visual C# 应用程序。现在我正在编辑 Package.appxmanifest
文件以编辑以下行:
<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.1.0" MaxVersionTested="10.0.1.0" />
</Dependencies>
但是当右键单击 Package.appxmanifest
文件并单击查看代码时。代码中没有依赖行。
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest" xmlns:m3="http://schemas.microsoft.com/appx/2014/manifest" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest">
<Identity Name="a75442ea-6a4d-42f1-abf8-77ecbdc087f6"
Publisher="CN=Abhimanyu Aryan"
Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="a75442ea-6a4d-42f1-abf8-77ecbdc087f6" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties>
<DisplayName>Test</DisplayName>
<PublisherDisplayName>Abhimanyu Aryan</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo>
</Properties>
<Prerequisites>
<OSMinVersion>6.3.1</OSMinVersion>
<OSMaxVersionTested>6.3.1</OSMaxVersionTested>
</Prerequisites>
<Resources>
<Resource Language="x-generate"/>
</Resources>
<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="Test.App">
<m3:VisualElements
DisplayName="Test"
Square150x150Logo="Assets\Logo.png"
Square44x44Logo="Assets\SmallLogo.png"
Description="Test"
ForegroundText="light"
BackgroundColor="transparent">
<m3:DefaultTile Wide310x150Logo="Assets\WideLogo.png" Square71x71Logo="Assets\Square71x71Logo.png"/>
<m3:SplashScreen Image="Assets\SplashScreen.png"/>
</m3:VisualElements>
</Application>
</Applications>
<Capabilities>
<Capability Name="internetClientServer" />
</Capabilities>
</Package>
要在 phone 上 运行 您的应用,您必须在 PHONE 上启用 Developer Mode
。
检查您正在开发的 UWP 应用程序:
- 右键点击你的孤子然后点击
Unload Project
- 之后右键单击它并单击
Edit YourApp.csproj
- 然后检查
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
是否存在?如果是,那么您来对地方了!