-
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 #41 from lochidev/dev
Dev
- Loading branch information
Showing
15 changed files
with
144 additions
and
124 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
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,93 +1,75 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0-android34.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);net8.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.0.0</ApplicationDisplayVersion> | ||
<ApplicationVersion>23</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|net8.0-android|AnyCPU'"> | ||
<AndroidPackageFormat>aab</AndroidPackageFormat> | ||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'"> | ||
<AndroidCreatePackagePerAbi>False</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
<AndroidPackageFormat>aab</AndroidPackageFormat> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android34.0|AnyCPU'"> | ||
<AndroidPackageFormat>apk</AndroidPackageFormat> | ||
<AndroidCreatePackagePerAbi>True</AndroidCreatePackagePerAbi> | ||
<AndroidUseAapt2>True</AndroidUseAapt2> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android34.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> | ||
|
||
</Project> | ||
<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> | ||
</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
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
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,8 +1,10 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="23" | ||
android:versionName="7.0.0"> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="24" | ||
android:versionName="7.1.0"> | ||
<application android:allowBackup="true" android:icon="@mipmap/appicon" android:supportsRtl="true"></application> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="32" /> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="34" /> | ||
<!--<uses-permission android:name="android.permission.READ_CLIPBOARD_IN_BACKGROUND" /> | ||
<uses-permission android:name="android.permission.WRITE_CLIPBOARD_IN_BACKGROUND" />--> | ||
<uses-sdk android:minSdkVersion="24" android:targetSdkVersion="35" /> | ||
</manifest> |
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
Oops, something went wrong.