-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #43 from lochidev/dev
Dev
- Loading branch information
Showing
2 changed files
with
83 additions
and
74 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,84 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
<PropertyGroup> | ||
<TargetFrameworks>net9.0-android35.0</TargetFrameworks> | ||
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> | ||
<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> --> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>Expandroid</RootNamespace> | ||
<UseMaui>true</UseMaui> | ||
<SingleProject>true</SingleProject> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<EnableDefaultCssItems>false</EnableDefaultCssItems> | ||
<!-- Display name --> | ||
<ApplicationTitle>Expandroid</ApplicationTitle> | ||
<!-- App Identifier --> | ||
<ApplicationId>com.dingleinc.texttoolspro</ApplicationId> | ||
<ApplicationIdGuid>A9E98E65-AE83-5428-9AB1-578DC0552CB8</ApplicationIdGuid> | ||
<!-- Versions --> | ||
<ApplicationDisplayVersion>7.1.0</ApplicationDisplayVersion> | ||
<ApplicationVersion>24</ApplicationVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">24.0</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> | ||
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'"> | ||
<AndroidPackageFormat>aab</AndroidPackageFormat> | ||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android|AnyCPU'"> | ||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
<AndroidPackageFormat>aab</AndroidPackageFormat> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android.0|AnyCPU'"> | ||
<AndroidPackageFormat>apk</AndroidPackageFormat> | ||
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android.0|AnyCPU'"> | ||
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
<AndroidPackageFormat>apk</AndroidPackageFormat> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<!-- App Icon --> | ||
<MauiIcon Include="Resources\AppIcon\appicon.svg" BaseSize="512,512" /> | ||
<!-- Splash Screen --> | ||
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#D1F00F" BaseSize="512,512" /> | ||
<!-- Images --> | ||
<MauiImage Include="Resources\Images\*" /> | ||
<!-- Custom Fonts --> | ||
<MauiFont Include="Resources\Fonts\*" /> | ||
<!-- Raw Assets (also remove the "Resources\Raw" prefix) --> | ||
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove="Platforms\Android\Resources\Layout\floatview.xml" /> | ||
<None Remove="Platforms\Android\Resources\values\strings.xml" /> | ||
<None Remove="Platforms\Android\Resources\xml\accessibility_service.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="MudBlazor" Version="6.19.1" /> | ||
<PackageReference Include="YamlDotNet" Version="15.1.4" /> | ||
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" /> | ||
<PackageReference Include="CommunityToolkit.Maui" Version="7.0.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.6" /> | ||
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.6" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Resources\Images\" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<TargetFrameworks>net9.0-android35.0</TargetFrameworks> | ||
<!-- Uncomment to also build the tizen app. You will need to install tizen by following this: https://github.com/Samsung/Tizen.NET --> | ||
<!-- <TargetFrameworks>$(TargetFrameworks);net9.0-tizen</TargetFrameworks> --> | ||
<AndroidSupportedAbis>armeabi-v7a;arm64-v8a;x86;x86_64</AndroidSupportedAbis> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>Expandroid</RootNamespace> | ||
<UseMaui>true</UseMaui> | ||
<SingleProject>true</SingleProject> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<EnableDefaultCssItems>false</EnableDefaultCssItems> | ||
<!-- Display name --> | ||
<ApplicationTitle>Expandroid</ApplicationTitle> | ||
<!-- App Identifier --> | ||
<ApplicationId>com.dingleinc.texttoolspro</ApplicationId> | ||
<ApplicationIdGuid>A9E98E65-AE83-5428-9AB1-578DC0552CB8</ApplicationIdGuid> | ||
<!-- Versions --> | ||
<ApplicationDisplayVersion>7.1.0</ApplicationDisplayVersion> | ||
<ApplicationVersion>24</ApplicationVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">14.2</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">14.0</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">24.0</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</SupportedOSPlatformVersion> | ||
<TargetPlatformMinVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'windows'">10.0.17763.0</TargetPlatformMinVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'tizen'">6.5</SupportedOSPlatformVersion> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android|AnyCPU'"> | ||
<AndroidPackageFormat>aab</AndroidPackageFormat> | ||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android|AnyCPU'"> | ||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
<AndroidPackageFormat>aab</AndroidPackageFormat> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android.0|AnyCPU'"> | ||
<AndroidPackageFormat>apk</AndroidPackageFormat> | ||
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android.0|AnyCPU'"> | ||
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
<AndroidPackageFormat>apk</AndroidPackageFormat> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net9.0-android35.0|AnyCPU'"> | ||
<AndroidPackageFormat>apk</AndroidPackageFormat> | ||
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi> | ||
<AndroidLinkTool>r8</AndroidLinkTool> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net9.0-android35.0|AnyCPU'"> | ||
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<!-- App Icon --> | ||
<MauiIcon Include="Resources\AppIcon\appicon.svg" BaseSize="512,512" /> | ||
<!-- Splash Screen --> | ||
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#D1F00F" BaseSize="512,512" /> | ||
<!-- Images --> | ||
<MauiImage Include="Resources\Images\*" /> | ||
<!-- Custom Fonts --> | ||
<MauiFont Include="Resources\Fonts\*" /> | ||
<!-- Raw Assets (also remove the "Resources\Raw" prefix) --> | ||
<MauiAsset Include="Resources\Raw\**" LogicalName="%(RecursiveDir)%(Filename)%(Extension)" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Remove="Platforms\Android\Resources\Layout\floatview.xml" /> | ||
<None Remove="Platforms\Android\Resources\values\strings.xml" /> | ||
<None Remove="Platforms\Android\Resources\xml\accessibility_service.xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="MudBlazor" Version="6.19.1" /> | ||
<PackageReference Include="YamlDotNet" Version="15.1.4" /> | ||
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.2" /> | ||
<PackageReference Include="CommunityToolkit.Maui" Version="7.0.1" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.WebView.Maui" Version="8.0.6" /> | ||
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.6" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Resources\Images\" /> | ||
</ItemGroup> | ||
</Project> |
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