-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aafcd96
commit b53873a
Showing
6 changed files
with
215 additions
and
10 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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio Version 17 | ||
VisualStudioVersion = 17.4.33213.308 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Sample.Droid.Nuget", "samples\Sample\Sample.Droid.Nuget.csproj", "{3958DC96-3E5B-4D89-BC3F-8E6634FF5766}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{3958DC96-3E5B-4D89-BC3F-8E6634FF5766}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{3958DC96-3E5B-4D89-BC3F-8E6634FF5766}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{3958DC96-3E5B-4D89-BC3F-8E6634FF5766}.Debug|Any CPU.Deploy.0 = Debug|Any CPU | ||
{3958DC96-3E5B-4D89-BC3F-8E6634FF5766}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{3958DC96-3E5B-4D89-BC3F-8E6634FF5766}.Release|Any CPU.Build.0 = Release|Any CPU | ||
{3958DC96-3E5B-4D89-BC3F-8E6634FF5766}.Release|Any CPU.Deploy.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
GlobalSection(ExtensibilityGlobals) = postSolution | ||
SolutionGuid = {4BF56189-8DC5-41A9-9440-3C7B9F57E151} | ||
EndGlobalSection | ||
EndGlobal |
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 |
---|---|---|
@@ -0,0 +1,139 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFrameworks>net8.0-android</TargetFrameworks> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>Sample</RootNamespace> | ||
<UseMaui>true</UseMaui> | ||
<SingleProject>true</SingleProject> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<UseInterpreter>true</UseInterpreter> | ||
|
||
<!-- Display name --> | ||
<ApplicationTitle>Sample</ApplicationTitle> | ||
|
||
<!-- App Identifier --> | ||
<ApplicationId>com.i7chi.ffimagesample</ApplicationId> | ||
<ApplicationIdGuid>96efed10-1559-4cef-8f0f-4b9c19662fa0</ApplicationIdGuid> | ||
|
||
<!-- Versions --> | ||
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion> | ||
<ApplicationVersion>1</ApplicationVersion> | ||
|
||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'ios'">11.0</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'maccatalyst'">13.1</SupportedOSPlatformVersion> | ||
<SupportedOSPlatformVersion Condition="$([MSBuild]::GetTargetPlatformIdentifier('$(TargetFramework)')) == 'android'">21.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> | ||
<Configurations>Debug;Release</Configurations> | ||
<Platforms>Device;Simulator;AnyCPU</Platforms> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net7.0-ios|AnyCPU'"> | ||
<CreatePackage>false</CreatePackage> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net7.0-ios|AnyCPU'"> | ||
<CreatePackage>false</CreatePackage> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<MtouchFastDev>true</MtouchFastDev> | ||
<IOSDebugOverWiFi>true</IOSDebugOverWiFi> | ||
<MtouchDebug>true</MtouchDebug> | ||
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|Device' "> | ||
<MtouchDebug>true</MtouchDebug> | ||
<IOSDebugOverWiFi>true</IOSDebugOverWiFi> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="$(TargetFramework.Contains('-ios'))"> | ||
<!--DEBUG ON DEVICE--> | ||
<!--<RuntimeIdentifier Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">ios-arm64</RuntimeIdentifier>--> | ||
<!--<RuntimeIdentifier Condition="'$(Configuration)|$(Platform)'=='Release|Device'">ios-arm64</RuntimeIdentifier>--> | ||
<!--<RuntimeIdentifier Condition="'$(Configuration)|$(Platform)'=='Debug|Device'">ios-arm64</RuntimeIdentifier>--> | ||
<!--DEBUG ON SIMULATOR--> | ||
<RuntimeIdentifier Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">iossimulator-x64</RuntimeIdentifier> | ||
<RuntimeIdentifier Condition="'$(Configuration)|$(Platform)'=='Debug|Simulator'">iossimulator-x64</RuntimeIdentifier> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|Device'"> | ||
<ApplicationTitle>FFImage</ApplicationTitle> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|Simulator'"> | ||
<ApplicationTitle>FFImage</ApplicationTitle> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net8.0-android|AnyCPU'"> | ||
<ApplicationTitle>FFImage</ApplicationTitle> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|Device'"> | ||
<ApplicationTitle>FFImage</ApplicationTitle> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|Simulator'"> | ||
<ApplicationTitle>FFImage</ApplicationTitle> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Release|net8.0-android|AnyCPU'"> | ||
<ApplicationTitle>FFImage</ApplicationTitle> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<!-- App Icon --> | ||
<MauiIcon Include="Resources\AppIcon\appicon.svg" ForegroundFile="Resources\AppIcon\appiconfg.svg" Color="#512BD4" /> | ||
|
||
<!-- Splash Screen --> | ||
<MauiSplashScreen Include="Resources\Splash\splash.svg" Color="#512BD4" BaseSize="128,128" /> | ||
|
||
<!-- Images --> | ||
<MauiImage Include="Resources\Images\*" /> | ||
<MauiImage Update="Resources\Images\dotnet_bot.svg" BaseSize="168,208" /> | ||
<MauiImage Update="Resources\Images\no_avatar_4x.png" BaseSize="89,89" /> | ||
|
||
<!-- 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\drawable-hdpi\lake1.webp" /> | ||
<None Remove="Platforms\Android\Resources\drawable-mdpi\lake2.webp" /> | ||
<None Remove="Platforms\Android\Resources\drawable-xhdpi\lake3.webp" /> | ||
<None Remove="Platforms\Android\Resources\drawable-xxhdpi\lake4.webp" /> | ||
<None Remove="Platforms\Android\Resources\drawable-xxxhdpi\lake5.webp" /> | ||
<None Remove="Resources\Raw\svg001raw.svg" /> | ||
<None Remove="svg001.svg" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AndroidResource Include="Platforms\Android\Resources\drawable-hdpi\lake1.webp" /> | ||
<AndroidResource Include="Platforms\Android\Resources\drawable-mdpi\lake2.webp" /> | ||
<AndroidResource Include="Platforms\Android\Resources\drawable-xhdpi\lake3.webp" /> | ||
<AndroidResource Include="Platforms\Android\Resources\drawable-xxhdpi\lake4.webp" /> | ||
<AndroidResource Include="Platforms\Android\Resources\drawable-xxxhdpi\lake5.webp" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.2.0" /> | ||
<PackageReference Include="FFImageLoading.Maui" Version="1.1.5" /> | ||
<PackageReference Include="Microsoft.Maui.Controls" Version="8.0.7" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="7.0.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<EmbeddedResource Include="replace.svg" /> | ||
<EmbeddedResource Include="sample.svg" /> | ||
<EmbeddedResource Include="svg001.svg" /> | ||
<EmbeddedResource Include="tenor.gif" /> | ||
|
||
<MauiImage Update="Resources/Images/error.png" Resize="False" /> | ||
<MauiImage Update="Resources/Images/loading.png" Resize="False" /> | ||
<MauiAsset Include="sample.svg" Resize="False"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</MauiAsset> | ||
<MauiImage Update="Resources/Images/ic_star_black_24dp.png" BaseSize="24,24" /> | ||
</ItemGroup> | ||
</Project> |