Skip to content

Commit

Permalink
v0.1.11更新
Browse files Browse the repository at this point in the history
  • Loading branch information
wherewhere committed Mar 6, 2022
1 parent b108f6a commit 62e5cbd
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 35 deletions.
4 changes: 2 additions & 2 deletions APKInstaller/AAPTForNet/AAPTForNet.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<LangVersion>preview</LangVersion>
<LangVersion>preview</LangVersion>
<TargetFrameworks>net4.8;netcoreapp3.1;net6.0-windows10.0.22000.0;net7.0-windows10.0.22000.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net4.8'">
<PackageReference Include="System.IO.Compression" Version="4.3.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net4.8'">
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
Expand Down
26 changes: 13 additions & 13 deletions APKInstaller/APKInstaller/APKInstaller.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@
<UseWinUI>true</UseWinUI>
<AppxBundle>Never</AppxBundle>
<OutputType>WinExe</OutputType>
<LangVersion>preview</LangVersion>
<LangVersion>preview</LangVersion>
<Platforms>x86;x64;arm64</Platforms>
<VersionPrefix>0.1.10</VersionPrefix>
<VersionPrefix>0.1.11</VersionPrefix>
<RootNamespace>APKInstaller</RootNamespace>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<AppxBundlePlatforms>x64</AppxBundlePlatforms>
<GenerateTestArtifacts>False</GenerateTestArtifacts>
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Copyright>Copyright © 2017 - 2022 PavingBase. All Rights Reserved.</Copyright>
<PublishProfile>win10-$(Platform).pubxml</PublishProfile>
<AppxSymbolPackageEnabled>True</AppxSymbolPackageEnabled>
<EnablePreviewMsixTooling>true</EnablePreviewMsixTooling>
<EnablePreviewMsixTooling>true</EnablePreviewMsixTooling>
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
<TargetFramework>net6.0-windows10.0.22000.0</TargetFramework>
<TargetPlatformMaxVersion>10.0.22000.0</TargetPlatformMaxVersion>
<TargetPlatformMaxVersion>10.0.22000.0</TargetPlatformMaxVersion>
<TargetPlatformMinVersion>10.0.18362.0</TargetPlatformMinVersion>
<Description>An Android Application Installer for Windows</Description>
<Description>An Android Application Installer for Windows</Description>
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
<RepositoryUrl>https://github.com/Paving-Base/APK-Installer</RepositoryUrl>
<PackageProjectUrl>https://github.com/Paving-Base/APK-Installer</PackageProjectUrl>
<RepositoryUrl>https://github.com/Paving-Base/APK-Installer</RepositoryUrl>
<Copyright>Copyright © 2017 - 2022 PavingBase. All Rights Reserved.</Copyright>
<PackageProjectUrl>https://github.com/Paving-Base/APK-Installer</PackageProjectUrl>
<AppxPackageDir>C:\Users\qq251\Downloads\Github\APK-Installer\APKInstaller\APKInstaller\AppPackages\</AppxPackageDir>
</PropertyGroup>
<ItemGroup>
Expand Down Expand Up @@ -60,11 +60,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="CommunityToolkit.WinUI.Connectivity" Version="7.1.2" />
<PackageReference Include="CommunityToolkit.WinUI.UI" Version="7.1.2" />
<PackageReference Include="Downloader" Version="2.3.2" />
<PackageReference Include="SharpCompress" Version="0.30.1" />
<PackageReference Include="PInvoke.User32" Version="0.7.104" />
<PackageReference Include="CommunityToolkit.WinUI.Connectivity" Version="7.1.2" />
<PackageReference Include="CommunityToolkit.WinUI.UI" Version="7.1.2" />
<PackageReference Include="Downloader" Version="2.3.2" />
<PackageReference Include="SharpCompress" Version="0.30.1" />
<PackageReference Include="PInvoke.User32" Version="0.7.104" />
<PackageReference Include="AdvancedSharpAdbClient" Version="2.5.2" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.0.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="7.1.2" />
Expand Down
11 changes: 0 additions & 11 deletions APKInstaller/APKInstaller/Controls/WebXAML.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,9 @@
using CommunityToolkit.WinUI.Connectivity;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Controls.Primitives;
using Microsoft.UI.Xaml.Data;
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Markup;
using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Navigation;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Runtime.InteropServices.WindowsRuntime;
using Windows.Foundation;
using Windows.Foundation.Collections;

// To learn more about WinUI, the WinUI project structure,
// and more about our project templates, see: http://aka.ms/winui-project-info.
Expand Down
2 changes: 1 addition & 1 deletion APKInstaller/APKInstaller/Package.appxmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Identity
Name="18184wherewhere.AndroidAppInstaller"
Publisher="CN=2C3A37C0-35FC-4839-B08C-751C1C1AFBF5"
Version="0.1.10.0" />
Version="0.1.11.0" />

<Properties>
<DisplayName>APK 安装程序</DisplayName>
Expand Down
2 changes: 1 addition & 1 deletion APKInstaller/APKInstaller/Pages/MainPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public MainPage()
SizeChanged += Page_SizeChanged;
UIHelper.MainWindow.ExtendsContentIntoTitleBar = true;
CustomTitleBarRoot.HorizontalAlignment = HorizontalAlignment.Left;
Root.RowDefinitions.Add(new RowDefinition { Height= new GridLength(1, GridUnitType.Auto) });
Root.RowDefinitions.Add(new RowDefinition { Height = new GridLength(1, GridUnitType.Auto) });
Root.RowDefinitions.Add(new RowDefinition { Height = new GridLength(1, GridUnitType.Star) });
}
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<ToggleSwitch IsOn="{Binding ShowDialogs, Mode=TwoWay}" Style="{StaticResource ToggleSwitchSettingStyle}" />
</controls:Setting.ActionContent>
</controls:Setting>
<controls:Setting x:Uid="/SettingsPage/ShowMessagesSettings" Icon="&#xE82F;">
<controls:Setting x:Uid="/SettingsPage/ShowMessagesSettings" Icon="&#xE789;">
<controls:Setting.ActionContent>
<ToggleSwitch IsOn="{Binding ShowMessages, Mode=TwoWay}" Style="{StaticResource ToggleSwitchSettingStyle}" />
</controls:Setting.ActionContent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,11 @@
using APKInstaller.Helpers;
using APKInstaller.Models;
using APKInstaller.ViewModels.SettingsPages;
using CommunityToolkit.WinUI;
using CommunityToolkit.WinUI.UI.Controls;
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Markup;
using Microsoft.UI.Xaml.Navigation;
using System;
using System.IO;
using System.Text;
using Windows.Services.Store;
using Windows.Storage;
using Windows.System;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
using System.ComponentModel;
using Windows.ApplicationModel;
using Windows.ApplicationModel.Resources;
using Windows.Services.Store;

namespace APKInstaller.ViewModels.SettingsPages
{
Expand Down

0 comments on commit 62e5cbd

Please sign in to comment.