Update to netstandard
|
@ -0,0 +1,80 @@
|
|||
# EditorConfig is awesome:http://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
# Don't use tabs for indentation.
|
||||
[*]
|
||||
indent_style = space
|
||||
# (Please don't specify an indent_size here; that has too many unintended consequences.)
|
||||
|
||||
# Code files
|
||||
[*.{cs,csx,vb,vbx}]
|
||||
indent_size = 4
|
||||
insert_final_newline = true
|
||||
charset = utf-8-bom
|
||||
|
||||
# Xml project files
|
||||
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
|
||||
indent_size = 2
|
||||
|
||||
# Xml config files
|
||||
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
|
||||
indent_size = 2
|
||||
|
||||
# JSON files
|
||||
[*.json]
|
||||
indent_size = 2
|
||||
|
||||
# Dotnet code style settings:
|
||||
[*.{cs,vb}]
|
||||
# Sort using and Import directives with System.* appearing first
|
||||
dotnet_sort_system_directives_first = true
|
||||
# Avoid "this." and "Me." if not necessary
|
||||
dotnet_style_qualification_for_field = false:suggestion
|
||||
dotnet_style_qualification_for_property = false:suggestion
|
||||
dotnet_style_qualification_for_method = false:suggestion
|
||||
dotnet_style_qualification_for_event = false:suggestion
|
||||
|
||||
# Use language keywords instead of framework type names for type references
|
||||
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
|
||||
dotnet_style_predefined_type_for_member_access = true:suggestion
|
||||
|
||||
# Suggest more modern language features when available
|
||||
dotnet_style_object_initializer = true:suggestion
|
||||
dotnet_style_collection_initializer = true:suggestion
|
||||
dotnet_style_coalesce_expression = true:suggestion
|
||||
dotnet_style_null_propagation = true:suggestion
|
||||
dotnet_style_explicit_tuple_names = true:suggestion
|
||||
|
||||
# CSharp code style settings:
|
||||
[*.cs]
|
||||
# Prefer "var" everywhere
|
||||
csharp_style_var_for_built_in_types = true:suggestion
|
||||
csharp_style_var_when_type_is_apparent = true:suggestion
|
||||
csharp_style_var_elsewhere = true:suggestion
|
||||
|
||||
# Prefer method-like constructs to have a block body
|
||||
csharp_style_expression_bodied_methods = false:none
|
||||
csharp_style_expression_bodied_constructors = false:none
|
||||
csharp_style_expression_bodied_operators = false:none
|
||||
|
||||
# Prefer property-like constructs to have an expression-body
|
||||
csharp_style_expression_bodied_properties = true:none
|
||||
csharp_style_expression_bodied_indexers = true:none
|
||||
csharp_style_expression_bodied_accessors = true:none
|
||||
|
||||
# Suggest more modern language features when available
|
||||
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
|
||||
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
|
||||
csharp_style_inlined_variable_declaration = true:suggestion
|
||||
csharp_style_throw_expression = true:suggestion
|
||||
csharp_style_conditional_delegate_call = true:suggestion
|
||||
|
||||
# Newline settings
|
||||
csharp_new_line_before_open_brace = anonymous_types,accessors,object_collection_array_initalizers,methods,properties,types
|
||||
csharp_new_line_before_else = false
|
||||
csharp_new_line_before_catch = false
|
||||
csharp_new_line_before_finally = false
|
||||
csharp_new_line_before_members_in_object_initializers = true
|
||||
csharp_new_line_before_members_in_anonymous_types = true
|
|
@ -0,0 +1,33 @@
|
|||
# This file is understood by git 1.7.2+.
|
||||
|
||||
# Windows specific files should always be crlf on checkout
|
||||
*.bat text eol=crlf
|
||||
*.cmd text eol=crlf
|
||||
*.ps1 text eol=crlf
|
||||
|
||||
# Check out the following as ln always for osx/linux/cygwin
|
||||
*.sh text eol=lf
|
||||
|
||||
# Opt in the following types to always normalize line endings
|
||||
# on checkin and always use native endings on checkout.
|
||||
*.config text
|
||||
*.cs text diff=csharp
|
||||
*.csproj text
|
||||
*.md text
|
||||
*.msbuild text
|
||||
*.nuspec text
|
||||
*.pp text
|
||||
*.ps1 text
|
||||
*.sln text
|
||||
*.tt text
|
||||
*.txt text
|
||||
*.xaml text
|
||||
*.xml text
|
||||
|
||||
# Binary files
|
||||
*.bmp binary
|
||||
*.jpeg binary
|
||||
*.jpg binary
|
||||
*.nupkg binary
|
||||
*.png binary
|
||||
*.sdf binary
|
|
@ -1,6 +1,9 @@
|
|||
## Ignore Visual Studio temporary files, build results, and
|
||||
## files generated by popular Visual Studio add-ons.
|
||||
|
||||
## Android Auto-generated files
|
||||
Resource.designer.cs
|
||||
|
||||
# User-specific files
|
||||
*.suo
|
||||
*.user
|
||||
|
@ -25,11 +28,9 @@ bld/
|
|||
# Visual Studo 2015 cache/options directory
|
||||
.vs/
|
||||
|
||||
# dotnet generated file
|
||||
project.lock.json
|
||||
|
||||
# MSTest test Results
|
||||
[Tt]est[Rr]esult*/
|
||||
[Tt]est[Rr]esult*
|
||||
[Bb]uild[Ll]og.*
|
||||
|
||||
# NUNIT
|
||||
|
@ -41,6 +42,12 @@ TestResult.xml
|
|||
[Rr]eleasePS/
|
||||
dlldata.c
|
||||
|
||||
# .NET Core
|
||||
project.lock.json
|
||||
project.fragment.lock.json
|
||||
artifacts/
|
||||
**/Properties/launchSettings.json
|
||||
|
||||
*_i.c
|
||||
*_p.c
|
||||
*_i.h
|
||||
|
@ -65,6 +72,10 @@ dlldata.c
|
|||
*.pidb
|
||||
*.svclog
|
||||
*.scc
|
||||
*.exe
|
||||
*.bak
|
||||
*.cache
|
||||
*.lib
|
||||
|
||||
# Chutzpah Test files
|
||||
_Chutzpah*
|
||||
|
@ -105,6 +116,7 @@ _TeamCity*
|
|||
# NCrunch
|
||||
_NCrunch_*
|
||||
.*crunch*.local.xml
|
||||
*.ncrunchproject
|
||||
|
||||
# MightyMoose
|
||||
*.mm.*
|
||||
|
@ -145,6 +157,13 @@ publish/
|
|||
!**/packages/build/
|
||||
# Uncomment if necessary however generally it will be regenerated when needed
|
||||
#!**/packages/repositories.config
|
||||
# NuGet v3's project.json files produces more ignoreable files
|
||||
*.nuget.props
|
||||
*.nuget.targets
|
||||
|
||||
#Allow NuGet.exe (do not ignore)
|
||||
!NuGet.exe
|
||||
*.orig
|
||||
|
||||
# Windows Azure Build Output
|
||||
csx/
|
||||
|
@ -198,17 +217,42 @@ FakesAssemblies/
|
|||
# Visual Studio 6 workspace options file
|
||||
*.opt
|
||||
|
||||
## Android Auto-generated files
|
||||
Resource.designer.cs
|
||||
#ignore thumbnails created by windows
|
||||
Thumbs.db
|
||||
|
||||
# Xcode
|
||||
.DS_Store
|
||||
*/build/*
|
||||
*.pbxuser
|
||||
!default.pbxuser
|
||||
*.mode1v3
|
||||
!default.mode1v3
|
||||
*.mode2v3
|
||||
!default.mode2v3
|
||||
*.perspectivev3
|
||||
!default.perspectivev3
|
||||
xcuserdata
|
||||
profile
|
||||
*.moved-aside
|
||||
DerivedData
|
||||
.idea/
|
||||
*.hmap
|
||||
*.xccheckout
|
||||
|
||||
#CocoaPods
|
||||
Pods
|
||||
nuspec/nuget.exe
|
||||
|
||||
# NuGet
|
||||
packages/
|
||||
repositories.config
|
||||
|
||||
#Build
|
||||
tools/Cake/
|
||||
tools/Addins/
|
||||
tools/gitlink/
|
||||
tools/GitVersion.CommandLine/
|
||||
tools/nuget.exe
|
||||
tools/packages.config.md5sum
|
||||
project.lock.json
|
||||
tools/*
|
||||
!tools/packages.config
|
||||
artifacts/
|
||||
*.nupkg
|
||||
|
||||
\.droidres/
|
||||
#linting
|
||||
.sonarqube/
|
||||
|
|
|
@ -0,0 +1,34 @@
|
|||
<Project>
|
||||
<PropertyGroup>
|
||||
<Copyright>Copyright (c) Martijn van Dijk</Copyright>
|
||||
<PackageLicenseUrl>https://github.com/martijn00/LottieXamarin/blob/master/LICENSE</PackageLicenseUrl>
|
||||
<PackageProjectUrl>https://github.com/martijn00/LottieXamarin</PackageProjectUrl>
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/martijn00/LottieXamarin/master/icon_lottie.png</PackageIconUrl>
|
||||
<Authors>Martijn van Dijk</Authors>
|
||||
<Owners>martijn00</Owners>
|
||||
<PackageTags>xamarin, monodroid, C#, xamarin.android, Forms, android, Lottie, animation, airbnb</PackageTags>
|
||||
<PackageReleaseNotes></PackageReleaseNotes>
|
||||
<RepositoryUrl>https://github.com/martijn00/LottieXamarin</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<Product>$(AssemblyName) ($(TargetFramework))</Product>
|
||||
<NeutralLanguage>en</NeutralLanguage>
|
||||
<Version>2.5.2</Version>
|
||||
|
||||
<LangVersion>latest</LangVersion>
|
||||
<NoWarn>$(NoWarn);1591;1701;1702;1705</NoWarn>
|
||||
<GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
|
||||
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' and '$(IsTestProject)' != 'true'">true</GeneratePackageOnBuild>
|
||||
|
||||
<Platform>AnyCPU</Platform>
|
||||
<DebugType>full</DebugType>
|
||||
<IsTestProject>$(MSBuildProjectName.Contains('UnitTest'))</IsTestProject>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="MSBuild.Sdk.Extras" Version="1.3.0-build.16" PrivateAssets="All" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(IsTestProject)' != 'true' and '$(SourceLinkEnabled)' != 'false'">
|
||||
<PackageReference Include="SourceLink.Create.CommandLine" Version="2.8.0" PrivateAssets="All" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -0,0 +1,39 @@
|
|||
<Project>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
||||
<DefineConstants>$(DefineConstants);PORTABLE</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'net452'">
|
||||
<DefineConstants>$(DefineConstants);NET_461;XAML</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0.16299'">
|
||||
<DefineConstants>$(DefineConstants);NETFX_CORE;XAML;WINDOWS_UWP</DefineConstants>
|
||||
<TargetPlatformVersion>10.0.16299.0</TargetPlatformVersion>
|
||||
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'Xamarin.iOS10'">
|
||||
<DefineConstants>$(DefineConstants);MONO;UIKIT;COCOA</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'Xamarin.Mac20'">
|
||||
<DefineConstants>$(DefineConstants);MONO;COCOA</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'Xamarin.TVOS10'">
|
||||
<DefineConstants>$(DefineConstants);MONO;COCOA</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'Xamarin.WatchOS10'">
|
||||
<DefineConstants>$(DefineConstants);MONO;COCOA</DefineConstants>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'MonoAndroid80'">
|
||||
<DefineConstants>$(DefineConstants);MONO;ANDROID</DefineConstants>
|
||||
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
|
||||
<AndroidResgenClass>Resource</AndroidResgenClass>
|
||||
<AndroidResgenFile>Resources\Resource.designer.cs</AndroidResgenFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'tizen40'">
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'uap10.0.16299' ">
|
||||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform" Version="6.0.8" />
|
||||
</ItemGroup>
|
||||
</Project>
|
|
@ -1,4 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Forms" version="2.5.0.280555" targetFramework="xamarinios10" />
|
||||
</packages>
|
|
@ -1,4 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Forms" version="2.5.0.280555" targetFramework="portable45-net45+win8+wp8+wpa81" />
|
||||
</packages>
|
|
@ -0,0 +1,23 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>MonoAndroid80</TargetFrameworks>
|
||||
<AssemblyName>Lottie.Android</AssemblyName>
|
||||
<RootNamespace>Lottie.Android</RootNamespace>
|
||||
<Description>Render After Effects animations natively on Android, iOS, MacOS, TVOs and UWP</Description>
|
||||
<PackageId>Com.Airbnb.Android.Lottie</PackageId>
|
||||
<IsBindingProject>true</IsBindingProject>
|
||||
<EnableDefaultItems>false</EnableDefaultItems>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="26.1.0.1" />
|
||||
<LibraryProjectZip Include="Jars\lottie-2.5.2.aar" />
|
||||
<TransformFile Include="Transforms\EnumFields.xml" />
|
||||
<TransformFile Include="Transforms\EnumMethods.xml" />
|
||||
<TransformFile Include="Transforms\Metadata.xml" />
|
||||
<Compile Include="Additions\LottieComposition.cs" />
|
||||
<Compile Include="Additions\LottieAnimationView.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
|
||||
</Project>
|
|
@ -1,131 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props" Condition="Exists('..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{0183ABDF-F583-4E8A-8055-5369192EE42D}</ProjectGuid>
|
||||
<ProjectTypeGuids>{10368E6C-D01B-4462-8E8B-01FC667A7035};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Lottie</RootNamespace>
|
||||
<AssemblyName>Lottie</AssemblyName>
|
||||
<TargetFrameworkVersion>v8.0</TargetFrameworkVersion>
|
||||
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
|
||||
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
|
||||
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
|
||||
<AndroidTlsProvider></AndroidTlsProvider>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
<AndroidClassParser>class-parse</AndroidClassParser>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AndroidLinkMode>None</AndroidLinkMode>
|
||||
<NoWarn>1591</NoWarn>
|
||||
<AndroidCodegenTarget>XamarinAndroid</AndroidCodegenTarget>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<DocumentationFile>bin\Release\Lottie.xml</DocumentationFile>
|
||||
<AndroidManagedSymbols>true</AndroidManagedSymbols>
|
||||
<AndroidUseSharedRuntime>false</AndroidUseSharedRuntime>
|
||||
<MandroidI18n></MandroidI18n>
|
||||
<AndroidKeyStore></AndroidKeyStore>
|
||||
<AndroidSigningKeyPass></AndroidSigningKeyPass>
|
||||
<AndroidTlsProvider></AndroidTlsProvider>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Mono.Android" />
|
||||
<Reference Include="Xamarin.Android.Support.Annotations">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Annotations.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.Annotations.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Arch.Core.Common">
|
||||
<HintPath>..\packages\Xamarin.Android.Arch.Core.Common.1.0.0\lib\MonoAndroid80\Xamarin.Android.Arch.Core.Common.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Arch.Lifecycle.Common">
|
||||
<HintPath>..\packages\Xamarin.Android.Arch.Lifecycle.Common.1.0.1\lib\MonoAndroid80\Xamarin.Android.Arch.Lifecycle.Common.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Arch.Lifecycle.Runtime">
|
||||
<HintPath>..\packages\Xamarin.Android.Arch.Lifecycle.Runtime.1.0.0\lib\MonoAndroid80\Xamarin.Android.Arch.Lifecycle.Runtime.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Compat">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Compat.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.Compat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Core.UI">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Core.UI.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.Core.UI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Core.Utils">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Core.Utils.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.Core.Utils.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Fragment">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Fragment.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.Fragment.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Media.Compat">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Media.Compat.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.Media.Compat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Vector.Drawable">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Vector.Drawable.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.Vector.Drawable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Animated.Vector.Drawable">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.Animated.Vector.Drawable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.AppCompat">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.v7.AppCompat.26.1.0.1\lib\MonoAndroid80\Xamarin.Android.Support.v7.AppCompat.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Additions\LottieComposition.cs" />
|
||||
<Compile Include="Additions\LottieAnimationView.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Additions\AboutAdditions.txt" />
|
||||
<None Include="Jars\AboutJars.txt" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<TransformFile Include="Transforms\EnumFields.xml" />
|
||||
<TransformFile Include="Transforms\EnumMethods.xml" />
|
||||
<TransformFile Include="Transforms\Metadata.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<LibraryProjectZip Include="Jars\lottie-2.5.2.aar" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.Bindings.targets" />
|
||||
<Import Project="..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets" Condition="Exists('..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Annotations.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Annotations.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Annotations.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Annotations.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Arch.Core.Common.1.0.0\build\MonoAndroid80\Xamarin.Android.Arch.Core.Common.targets" Condition="Exists('..\packages\Xamarin.Android.Arch.Core.Common.1.0.0\build\MonoAndroid80\Xamarin.Android.Arch.Core.Common.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Arch.Lifecycle.Common.1.0.1\build\MonoAndroid80\Xamarin.Android.Arch.Lifecycle.Common.targets" Condition="Exists('..\packages\Xamarin.Android.Arch.Lifecycle.Common.1.0.1\build\MonoAndroid80\Xamarin.Android.Arch.Lifecycle.Common.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Arch.Lifecycle.Runtime.1.0.0\build\MonoAndroid80\Xamarin.Android.Arch.Lifecycle.Runtime.targets" Condition="Exists('..\packages\Xamarin.Android.Arch.Lifecycle.Runtime.1.0.0\build\MonoAndroid80\Xamarin.Android.Arch.Lifecycle.Runtime.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Compat.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Compat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Compat.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Compat.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Core.UI.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Core.UI.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Core.UI.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Core.UI.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Core.Utils.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Core.Utils.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Core.Utils.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Core.Utils.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Fragment.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Fragment.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Fragment.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Fragment.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Media.Compat.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Media.Compat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Media.Compat.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Media.Compat.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Vector.Drawable.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Vector.Drawable.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Animated.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.Animated.Vector.Drawable.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.v7.AppCompat.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.v7.AppCompat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v7.AppCompat.26.1.0.1\build\MonoAndroid80\Xamarin.Android.Support.v7.AppCompat.targets')" />
|
||||
</Project>
|
|
@ -1,27 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using Android.App;
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle("Lottie")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("")]
|
||||
[assembly: AssemblyCopyright("martijnvandijk")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion("1.5.1.0")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
|
@ -1,16 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Android.Arch.Core.Common" version="1.0.0" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Arch.Lifecycle.Common" version="1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Arch.Lifecycle.Runtime" version="1.0.0" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.Annotations" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.Compat" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.Core.UI" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.Core.Utils" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.Fragment" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.Media.Compat" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.v7.AppCompat" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Android.Support.Vector.Drawable" version="26.1.0.1" targetFramework="monoandroid80" />
|
||||
<package id="Xamarin.Build.Download" version="0.4.7" targetFramework="monoandroid70" />
|
||||
</packages>
|
|
@ -1,170 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" />
|
||||
<Import Project="..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props" Condition="Exists('..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{A5328112-8844-41D1-9018-9EAFCA7FE5DC}</ProjectGuid>
|
||||
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Lottie.Forms.Droid</RootNamespace>
|
||||
<AssemblyName>Lottie.Forms.Droid</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
|
||||
<TargetFrameworkVersion>v7.0</TargetFrameworkVersion>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<AndroidTlsProvider>
|
||||
</AndroidTlsProvider>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="FormsViewGroup, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\FormsViewGroup.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Mono.Android" />
|
||||
<Reference Include="mscorlib" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="Xamarin.Android.Support.Annotations">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Annotations.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Compat">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Core.UI">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Core.UI.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Core.Utils">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Media.Compat">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Fragment">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Fragment.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Transition">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Transition.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Transition.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.Palette">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.Palette.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.RecyclerView">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Vector.Drawable">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Animated.Vector.Drawable">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.AppCompat">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Design">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.Design.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Design.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.MediaRouter">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.CardView">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.CardView.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.Android, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v4">
|
||||
<HintPath>..\packages\Xamarin.Android.Support.v4.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="AnimationViewRenderer.cs" />
|
||||
<Compile Include="Resources\Resource.Designer.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="AnimatorListener.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Include="Resources\AboutResources.txt" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AndroidResource Include="Resources\Values\Strings.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Lottie.Droid\Lottie.Droid.csproj">
|
||||
<Project>{0183abdf-f583-4e8a-8055-5369192ee42d}</Project>
|
||||
<Name>Lottie.Droid</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lottie.Forms\Lottie.Forms.csproj">
|
||||
<Project>{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}</Project>
|
||||
<Name>Lottie.Forms</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets" Condition="Exists('..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets" Condition="Exists('..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets')" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props'))" />
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets'))" />
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props'))" />
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets" Condition="Exists('..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets')" />
|
||||
<Import Project="..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" />
|
||||
</Project>
|
|
@ -1,30 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using Android.App;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Lottie.Forms.Droid2")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("EVRY Corporate IT")]
|
||||
[assembly: AssemblyProduct("Lottie.Forms.Droid2")]
|
||||
[assembly: AssemblyCopyright("Copyright © EVRY Corporate IT 2017")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
@ -1,44 +0,0 @@
|
|||
Images, layout descriptions, binary blobs and string dictionaries can be included
|
||||
in your application as resource files. Various Android APIs are designed to
|
||||
operate on the resource IDs instead of dealing with images, strings or binary blobs
|
||||
directly.
|
||||
|
||||
For example, a sample Android app that contains a user interface layout (main.axml),
|
||||
an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png)
|
||||
would keep its resources in the "Resources" directory of the application:
|
||||
|
||||
Resources/
|
||||
drawable/
|
||||
icon.png
|
||||
|
||||
layout/
|
||||
main.axml
|
||||
|
||||
values/
|
||||
strings.xml
|
||||
|
||||
In order to get the build system to recognize Android resources, set the build action to
|
||||
"AndroidResource". The native Android APIs do not operate directly with filenames, but
|
||||
instead operate on resource IDs. When you compile an Android application that uses resources,
|
||||
the build system will package the resources for distribution and generate a class called "R"
|
||||
(this is an Android convention) that contains the tokens for each one of the resources
|
||||
included. For example, for the above Resources layout, this is what the R class would expose:
|
||||
|
||||
public class R {
|
||||
public class drawable {
|
||||
public const int icon = 0x123;
|
||||
}
|
||||
|
||||
public class layout {
|
||||
public const int main = 0x456;
|
||||
}
|
||||
|
||||
public class strings {
|
||||
public const int first_string = 0xabc;
|
||||
public const int second_string = 0xbcd;
|
||||
}
|
||||
}
|
||||
|
||||
You would then use R.drawable.icon to reference the drawable/icon.png file, or R.layout.main
|
||||
to reference the layout/main.axml file, or R.strings.first_string to reference the first
|
||||
string in the dictionary file values/strings.xml.
|
|
@ -1,5 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="Hello">Hello World, Click Me!</string>
|
||||
<string name="ApplicationName">$projectname$</string>
|
||||
</resources>
|
|
@ -1,21 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Annotations" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Compat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Core.UI" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Core.Utils" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Design" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Fragment" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Media.Compat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Transition" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v4" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.AppCompat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.CardView" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.MediaRouter" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.Palette" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.RecyclerView" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Vector.Drawable" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Build.Download" version="0.4.7" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Forms" version="2.5.0.280555" targetFramework="monoandroid70" />
|
||||
</packages>
|
|
@ -1,143 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{68448EC2-A94F-42F6-BD98-2AC42446FC6E}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Lottie.Forms.UWP</RootNamespace>
|
||||
<AssemblyName>Lottie.Forms.UWP</AssemblyName>
|
||||
<DefaultLanguage>en-US</DefaultLanguage>
|
||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.15063.0</TargetPlatformVersion>
|
||||
<TargetPlatformMinVersion>10.0.10586.0</TargetPlatformMinVersion>
|
||||
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<OutputPath>bin\x86\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\ARM\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<OutputPath>bin\ARM\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Renderers\AnimationViewRenderer.cs" />
|
||||
<EmbeddedResource Include="Properties\Lottie.Forms.UWP.rd.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="LottieUWP">
|
||||
<Version>2.5.1</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
|
||||
<Version>6.0.8</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Xamarin.Forms">
|
||||
<Version>2.5.0.280555</Version>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Lottie.Forms\Lottie.Forms.csproj">
|
||||
<Project>{f03d2dd6-bbda-45b9-982e-4dca43fcb8e1}</Project>
|
||||
<Name>Lottie.Forms</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
||||
<VisualStudioVersion>14.0</VisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
|
@ -1,29 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Lottie.Forms.UWP")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lottie.Forms.UWP")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2017")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||
[assembly: ComVisible(false)]
|
|
@ -1,33 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file contains Runtime Directives, specifications about types your application accesses
|
||||
through reflection and other dynamic code patterns. Runtime Directives are used to control the
|
||||
.NET Native optimizer and ensure that it does not remove code accessed by your library. If your
|
||||
library does not do any reflection, then you generally do not need to edit this file. However,
|
||||
if your library reflects over types, especially types passed to it or derived from its types,
|
||||
then you should write Runtime Directives.
|
||||
|
||||
The most common use of reflection in libraries is to discover information about types passed
|
||||
to the library. Runtime Directives have three ways to express requirements on types passed to
|
||||
your library.
|
||||
|
||||
1. Parameter, GenericParameter, TypeParameter, TypeEnumerableParameter
|
||||
Use these directives to reflect over types passed as a parameter.
|
||||
|
||||
2. SubTypes
|
||||
Use a SubTypes directive to reflect over types derived from another type.
|
||||
|
||||
3. AttributeImplies
|
||||
Use an AttributeImplies directive to indicate that your library needs to reflect over
|
||||
types or methods decorated with an attribute.
|
||||
|
||||
For more information on writing Runtime Directives for libraries, please visit
|
||||
https://go.microsoft.com/fwlink/?LinkID=391919
|
||||
-->
|
||||
<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">
|
||||
<Library Name="Lottie.Forms.UWP">
|
||||
|
||||
<!-- add directives for your library here -->
|
||||
|
||||
</Library>
|
||||
</Directives>
|
|
@ -1,157 +0,0 @@
|
|||
{
|
||||
"images": [
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "29x29",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "29x29",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "29x29",
|
||||
"scale": "3x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "40x40",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "40x40",
|
||||
"scale": "3x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "57x57",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "57x57",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "60x60",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "iphone",
|
||||
"size": "60x60",
|
||||
"scale": "3x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "29x29",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "29x29",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "40x40",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "40x40",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "50x50",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "50x50",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "72x72",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "72x72",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "76x76",
|
||||
"scale": "1x"
|
||||
},
|
||||
{
|
||||
"idiom": "ipad",
|
||||
"size": "76x76",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"size": "24x24",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "notificationCenter",
|
||||
"subtype": "38mm"
|
||||
},
|
||||
{
|
||||
"size": "27.5x27.5",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "notificationCenter",
|
||||
"subtype": "42mm"
|
||||
},
|
||||
{
|
||||
"size": "29x29",
|
||||
"idiom": "watch",
|
||||
"role": "companionSettings",
|
||||
"scale": "2x"
|
||||
},
|
||||
{
|
||||
"size": "29x29",
|
||||
"idiom": "watch",
|
||||
"role": "companionSettings",
|
||||
"scale": "3x"
|
||||
},
|
||||
{
|
||||
"size": "40x40",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "appLauncher",
|
||||
"subtype": "38mm"
|
||||
},
|
||||
{
|
||||
"size": "44x44",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "longLook",
|
||||
"subtype": "42mm"
|
||||
},
|
||||
{
|
||||
"size": "86x86",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "quickLook",
|
||||
"subtype": "38mm"
|
||||
},
|
||||
{
|
||||
"size": "98x98",
|
||||
"idiom": "watch",
|
||||
"scale": "2x",
|
||||
"role": "quickLook",
|
||||
"subtype": "42mm"
|
||||
}
|
||||
],
|
||||
"info": {
|
||||
"version": 1,
|
||||
"author": "xcode"
|
||||
}
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
{
|
||||
"info" : {
|
||||
"version" : 1,
|
||||
"author" : "xcode"
|
||||
}
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict/>
|
||||
</plist>
|
|
@ -1,46 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDisplayName</key>
|
||||
<string>Lottie-Forms</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>Lottie-Forms</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>com.companyname.lottie-forms</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1.0</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>MinimumOSVersion</key>
|
||||
<string>8.0</string>
|
||||
<key>UIDeviceFamily</key>
|
||||
<array>
|
||||
<integer>1</integer>
|
||||
<integer>2</integer>
|
||||
</array>
|
||||
<key>UILaunchStoryboardName</key>
|
||||
<string>LaunchScreen</string>
|
||||
<key>UIRequiredDeviceCapabilities</key>
|
||||
<array>
|
||||
<string>armv7</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>UISupportedInterfaceOrientations~ipad</key>
|
||||
<array>
|
||||
<string>UIInterfaceOrientationPortrait</string>
|
||||
<string>UIInterfaceOrientationPortraitUpsideDown</string>
|
||||
<string>UIInterfaceOrientationLandscapeLeft</string>
|
||||
<string>UIInterfaceOrientationLandscapeRight</string>
|
||||
</array>
|
||||
<key>XSAppIconAssets</key>
|
||||
<string>Assets.xcassets/AppIcon.appiconset</string>
|
||||
</dict>
|
||||
</plist>
|
|
@ -1,150 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
|
||||
<ProjectGuid>{54014744-396B-4965-A996-296FCBED0FF4}</ProjectGuid>
|
||||
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Lottie.Forms.iOS</RootNamespace>
|
||||
<AssemblyName>Lottie.Forms.iOS</AssemblyName>
|
||||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
<MtouchFastDev>true</MtouchFastDev>
|
||||
<IOSDebuggerPort>43467</IOSDebuggerPort>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchArch>x86_64</MtouchArch>
|
||||
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
|
||||
<MtouchTlsProvider>Default</MtouchTlsProvider>
|
||||
<DeviceSpecificBuild>false</DeviceSpecificBuild>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\iPhone\Release</OutputPath>
|
||||
<DefineConstants>
|
||||
</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<MtouchFloat32>true</MtouchFloat32>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
<MtouchLink>SdkOnly</MtouchLink>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
|
||||
<MtouchTlsProvider>Default</MtouchTlsProvider>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
|
||||
<DefineConstants>
|
||||
</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchArch>x86_64</MtouchArch>
|
||||
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
|
||||
<MtouchTlsProvider>Default</MtouchTlsProvider>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhone\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;ENABLE_TEST_CLOUD;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<DeviceSpecificBuild>true</DeviceSpecificBuild>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
<MtouchFastDev>true</MtouchFastDev>
|
||||
<MtouchFloat32>true</MtouchFloat32>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
<MtouchLink>SdkOnly</MtouchLink>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<MtouchHttpClientHandler>HttpClientHandler</MtouchHttpClientHandler>
|
||||
<MtouchTlsProvider>Default</MtouchTlsProvider>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<StartupObject />
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.iOS, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.iOS" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json">
|
||||
<Visible>false</Visible>
|
||||
</ImageAsset>
|
||||
<ImageAsset Include="Assets.xcassets\Contents.json">
|
||||
<Visible>false</Visible>
|
||||
</ImageAsset>
|
||||
</ItemGroup>
|
||||
<ItemGroup />
|
||||
<ItemGroup>
|
||||
<None Include="Info.plist" />
|
||||
<None Include="Entitlements.plist" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Renderers\AnimationViewRenderer.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Lottie.Forms\Lottie.Forms.csproj">
|
||||
<Project>{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}</Project>
|
||||
<Name>Lottie.Forms</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lottie.iOS\Lottie.iOS.csproj">
|
||||
<Project>{8F0CC2B2-88E2-459B-AC92-F3A74071707E}</Project>
|
||||
<Name>Lottie.iOS</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BundleResource Include="Resources\HamburgerArrow.json" />
|
||||
<BundleResource Include="Resources\LottieLogo1.json" />
|
||||
<BundleResource Include="Resources\LottieLogo2.json" />
|
||||
<BundleResource Include="Resources\PinJump.json" />
|
||||
<BundleResource Include="Resources\TwitterHeart.json" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props'))" />
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" />
|
||||
</Project>
|
|
@ -1,110 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props" Condition="Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{FD4398E7-4790-4DDE-8D1D-9C11ED281737}</ProjectGuid>
|
||||
<ProjectTypeGuids>{A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Lottie.Forms.macOS</RootNamespace>
|
||||
<AssemblyName>Lottie.Forms.macOS</AssemblyName>
|
||||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
|
||||
<TargetFrameworkIdentifier>Xamarin.Mac</TargetFrameworkIdentifier>
|
||||
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<EnableCodeSigning>false</EnableCodeSigning>
|
||||
<CreatePackage>false</CreatePackage>
|
||||
<EnablePackageSigning>false</EnablePackageSigning>
|
||||
<IncludeMonoRuntime>false</IncludeMonoRuntime>
|
||||
<UseSGen>false</UseSGen>
|
||||
<HttpClientHandler>
|
||||
</HttpClientHandler>
|
||||
<TlsProvider>
|
||||
</TlsProvider>
|
||||
<LinkMode>
|
||||
</LinkMode>
|
||||
<XamMacArch>
|
||||
</XamMacArch>
|
||||
<AOTMode>None</AOTMode>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<DefineConstants>
|
||||
</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<EnableCodeSigning>false</EnableCodeSigning>
|
||||
<CreatePackage>false</CreatePackage>
|
||||
<EnablePackageSigning>false</EnablePackageSigning>
|
||||
<IncludeMonoRuntime>false</IncludeMonoRuntime>
|
||||
<UseSGen>false</UseSGen>
|
||||
<HttpClientHandler>
|
||||
</HttpClientHandler>
|
||||
<TlsProvider>
|
||||
</TlsProvider>
|
||||
<LinkMode>
|
||||
</LinkMode>
|
||||
<XamMacArch>
|
||||
</XamMacArch>
|
||||
<AOTMode>None</AOTMode>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.Mac\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.Mac\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.Mac\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Mac" />
|
||||
<Reference Include="Xamarin.Forms.Platform.macOS, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.Mac\Xamarin.Forms.Platform.macOS.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="Renderers\AnimationViewRenderer.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Lottie.Forms\Lottie.Forms.csproj">
|
||||
<Project>{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}</Project>
|
||||
<Name>Lottie.Forms</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Lottie.macOS\Lottie.macOS.csproj">
|
||||
<Project>{A4005F26-A5D2-40FD-B971-137126C6A500}</Project>
|
||||
<Name>Lottie.macOS</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props'))" />
|
||||
<Error Condition="!Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" />
|
||||
</Project>
|
|
@ -1,26 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle("Lottie.Forms.macOS")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("")]
|
||||
[assembly: AssemblyCopyright("martijnvandijk")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
|
@ -1,4 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Forms" version="2.5.0.280555" targetFramework="xamarinmac20" />
|
||||
</packages>
|
|
@ -1,60 +1,87 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}</ProjectGuid>
|
||||
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Lottie.Forms</RootNamespace>
|
||||
<AssemblyName>Lottie.Forms</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<TargetFrameworkProfile>Profile259</TargetFrameworkProfile>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="AnimationView.cs" />
|
||||
<Compile Include="EventArguments\FrameSegmentEventArgs.cs" />
|
||||
<Compile Include="EventArguments\ProgressSegmentEventArgs.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Xamarin.Forms.Core">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\portable-win+net45+wp80+win81+wpa81\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\portable-win+net45+wp80+win81+wpa81\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml">
|
||||
<HintPath>..\packages\Xamarin.Forms.2.5.0.280555\lib\portable-win+net45+wp80+win81+wpa81\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Folder Include="EventArguments\" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
||||
<Import Project="..\packages\Xamarin.Forms.2.5.0.280555\build\portable-win+net45+wp80+win81+wpa81\Xamarin.Forms.targets" Condition="Exists('..\packages\Xamarin.Forms.2.5.0.280555\build\portable-win+net45+wp80+win81+wpa81\Xamarin.Forms.targets')" />
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netstandard2.0;uap10.0.16299;Xamarin.iOS10;Xamarin.Mac20;MonoAndroid80</TargetFrameworks>
|
||||
<AssemblyName>Lottie.Forms</AssemblyName>
|
||||
<RootNamespace>Lottie.Forms</RootNamespace>
|
||||
<Description>Render After Effects animations natively on Android, iOS, MacOS, TVOs and UWP</Description>
|
||||
<PackageId>Com.Airbnb.Xamarin.Forms.Lottie</PackageId>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="Platforms\**\*.cs" />
|
||||
<None Include="Platforms\**\*.cs" />
|
||||
<None Include="Resources\*.cs" />
|
||||
<Compile Remove="Resources\*.cs" />
|
||||
<None Include="readme.txt" pack="true" PackagePath="." />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">
|
||||
<Compile Include="Platforms\Netstandard\**\*.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
|
||||
<Compile Include="Platforms\Net\**\*.cs" />
|
||||
<Compile Include="Platforms\Wpf\**\*.cs" />
|
||||
<Compile Include="Platforms\Console\**\*.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(TargetFramework)'!='netstandard2.0'">
|
||||
<Compile Include="Platforms\Shared\**\*.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('uap')) ">
|
||||
<Compile Include="Platforms\Windows-common\**\*.cs" />
|
||||
<Compile Include="Platforms\Uap\**\*.cs" />
|
||||
<PackageReference Include="LottieUWP" Version="2.5.2" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.iOS')) ">
|
||||
<Compile Include="Platforms\Apple-common\**\*.cs" />
|
||||
<Compile Include="Platforms\Ios\**\*.cs" />
|
||||
<Compile Include="Platforms\Xamarin-common\**\*.cs" />
|
||||
<ProjectReference Include="..\Lottie.iOS\Lottie.iOS.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.Mac')) ">
|
||||
<Compile Include="Platforms\Apple-common\**\*.cs" />
|
||||
<Compile Include="Platforms\Mac\**\*.cs" />
|
||||
<Compile Include="Platforms\Xamarin-common\**\*.cs" />
|
||||
<ProjectReference Include="..\Lottie.iOS\Lottie.iOS.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.TVOS')) ">
|
||||
<Compile Include="Platforms\Apple-common\**\*.cs" />
|
||||
<Compile Include="Platforms\Tvos\**\*.cs" />
|
||||
<Compile Include="Platforms\Xamarin-common\**\*.cs" />
|
||||
<ProjectReference Include="..\Lottie.iOS\Lottie.iOS.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.WatchOS')) ">
|
||||
<Compile Include="Platforms\Apple-common\**\*.cs" />
|
||||
<Compile Include="Platforms\Watchos\**\*.cs" />
|
||||
<Compile Include="Platforms\Xamarin-common\**\*.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('MonoAndroid')) ">
|
||||
<Compile Include="Platforms\Android\**\*.cs" />
|
||||
<Compile Include="Platforms\Xamarin-common\**\*.cs" />
|
||||
<PackageReference Include="Xamarin.Android.Support.Design" Version="26.1.0.1" />
|
||||
<PackageReference Include="Xamarin.Android.Support.v4" Version="26.1.0.1" />
|
||||
<PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="26.1.0.1" />
|
||||
<PackageReference Include="Xamarin.Android.Support.v7.CardView" Version="26.1.0.1" />
|
||||
<PackageReference Include="Xamarin.Android.Support.v7.MediaRouter" Version="26.1.0.1" />
|
||||
<ProjectReference Include="..\Lottie.Android\Lottie.Android.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('tizen')) ">
|
||||
<Compile Include="Platforms\Tizen\**\*.cs" />
|
||||
<Compile Include="Platforms\Xamarin-common\**\*.cs" />
|
||||
<PackageReference Include="Tizen.NET" Version="4.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Xamarin.Forms" Version="2.5.0.280555" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
|
||||
</Project>
|
|
@ -1,210 +1,210 @@
|
|||
using System;
|
||||
using System.ComponentModel;
|
||||
using Lottie.Forms;
|
||||
using Lottie.Forms.EventArguments;
|
||||
using Lottie.Forms.UWP.Renderers;
|
||||
using LottieUWP;
|
||||
using LottieUWP.Utils;
|
||||
using Xamarin.Forms.Platform.UWP;
|
||||
|
||||
[assembly: ExportRenderer(typeof(AnimationView), typeof(AnimationViewRenderer))]
|
||||
|
||||
namespace Lottie.Forms.UWP.Renderers
|
||||
{
|
||||
public class AnimationViewRenderer : ViewRenderer<AnimationView, LottieAnimationView>
|
||||
{
|
||||
private LottieAnimationView _animationView;
|
||||
private bool _needToReverseAnimationSpeed;
|
||||
private bool _needToResetFrames;
|
||||
|
||||
/// <summary>
|
||||
/// Used for registration with dependency service
|
||||
/// </summary>
|
||||
public static void Init()
|
||||
{
|
||||
// needed because of this linker issue: https://bugzilla.xamarin.com/show_bug.cgi?id=31076
|
||||
#pragma warning disable 0219
|
||||
var dummy = new AnimationViewRenderer();
|
||||
#pragma warning restore 0219
|
||||
}
|
||||
|
||||
protected override async void OnElementChanged(ElementChangedEventArgs<AnimationView> e)
|
||||
{
|
||||
base.OnElementChanged(e);
|
||||
|
||||
if (Control == null && e.NewElement != null)
|
||||
{
|
||||
_animationView = new LottieAnimationView();
|
||||
|
||||
SetNativeControl(_animationView);
|
||||
}
|
||||
|
||||
if (e.OldElement != null)
|
||||
{
|
||||
e.OldElement.OnPlay -= OnPlay;
|
||||
e.OldElement.OnPause -= OnPause;
|
||||
e.OldElement.OnPlayProgressSegment -= OnPlayProgressSegment;
|
||||
e.OldElement.OnPlayFrameSegment -= OnPlayFrameSegment;
|
||||
|
||||
_animationView.Tapped -= AnimationViewTapped;
|
||||
|
||||
_animationView.AnimatorUpdate -= PlaybackFinishedIfProgressReachesOne;
|
||||
|
||||
_animationView = null;
|
||||
}
|
||||
|
||||
if (e.NewElement != null)
|
||||
{
|
||||
e.NewElement.OnPlay += OnPlay;
|
||||
e.NewElement.OnPause += OnPause;
|
||||
e.NewElement.OnPlayProgressSegment += OnPlayProgressSegment;
|
||||
e.NewElement.OnPlayFrameSegment += OnPlayFrameSegment;
|
||||
|
||||
_animationView.RepeatCount = e.NewElement.Loop ? -1 : 0;
|
||||
_animationView.Speed = e.NewElement.Speed;
|
||||
_animationView.Tapped += AnimationViewTapped;
|
||||
_animationView.AnimatorUpdate += PlaybackFinishedIfProgressReachesOne;
|
||||
|
||||
if (!string.IsNullOrEmpty(e.NewElement.Animation))
|
||||
{
|
||||
await _animationView.SetAnimationAsync(e.NewElement.Animation);
|
||||
Element.Duration = TimeSpan.FromMilliseconds(_animationView.Duration);
|
||||
}
|
||||
|
||||
if (e.NewElement.AutoPlay)
|
||||
_animationView.PlayAnimation();
|
||||
}
|
||||
}
|
||||
|
||||
private void AnimationViewTapped(object sender, Windows.UI.Xaml.Input.TappedRoutedEventArgs e)
|
||||
{
|
||||
Element?.Click();
|
||||
}
|
||||
|
||||
private void PlaybackFinishedIfProgressReachesOne(object sender, ValueAnimator.ValueAnimatorUpdateEventArgs e)
|
||||
{
|
||||
if (((LottieValueAnimator)e.Animation).AnimatedValueAbsolute >= 1)
|
||||
{
|
||||
Element.PlaybackFinished();
|
||||
}
|
||||
}
|
||||
|
||||
private void OnPlay(object sender, EventArgs e)
|
||||
{
|
||||
if (_animationView != null)
|
||||
{
|
||||
if (_animationView.Progress > 0f)
|
||||
{
|
||||
_animationView.ResumeAnimation();
|
||||
}
|
||||
else
|
||||
{
|
||||
ResetReverse();
|
||||
_animationView.PlayAnimation();
|
||||
}
|
||||
Element.IsPlaying = true;
|
||||
}
|
||||
}
|
||||
|
||||
private void PrepareReverseAnimation(Action<float, float> action,
|
||||
float from, float to)
|
||||
{
|
||||
var minValue = Math.Min(from, to);
|
||||
var maxValue = Math.Max(from, to);
|
||||
var needReverse = from > to;
|
||||
|
||||
action(minValue, maxValue);
|
||||
|
||||
if (needReverse && !_needToReverseAnimationSpeed)
|
||||
{
|
||||
_needToReverseAnimationSpeed = true;
|
||||
_animationView.ReverseAnimationSpeed();
|
||||
}
|
||||
|
||||
_animationView.PlayAnimation();
|
||||
Element.IsPlaying = true;
|
||||
}
|
||||
|
||||
private void OnPlayProgressSegment(object sender, ProgressSegmentEventArgs e)
|
||||
{
|
||||
if (_animationView != null)
|
||||
{
|
||||
PrepareReverseAnimation((min, max) =>
|
||||
{
|
||||
_animationView.SetMinAndMaxProgress(min, max);
|
||||
}, e.From, e.To);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnPlayFrameSegment(object sender, FrameSegmentEventArgs e)
|
||||
{
|
||||
if (_animationView != null)
|
||||
{
|
||||
PrepareReverseAnimation((min, max) =>
|
||||
{
|
||||
_animationView.SetMinAndMaxFrame((int)min, (int)max);
|
||||
_needToResetFrames = true;
|
||||
}, e.From, e.To);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnPause(object sender, EventArgs e)
|
||||
{
|
||||
if (_animationView != null)
|
||||
{
|
||||
_animationView.PauseAnimation();
|
||||
Element.IsPlaying = false;
|
||||
}
|
||||
}
|
||||
|
||||
protected override async void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
|
||||
{
|
||||
if (_animationView == null)
|
||||
return;
|
||||
|
||||
if (e.PropertyName == AnimationView.AnimationProperty.PropertyName)
|
||||
{
|
||||
await _animationView.SetAnimationAsync(Element.Animation);
|
||||
Element.Duration = TimeSpan.FromMilliseconds(_animationView.Duration);
|
||||
|
||||
if (Element.AutoPlay)
|
||||
_animationView.PlayAnimation();
|
||||
}
|
||||
|
||||
if (e.PropertyName == AnimationView.ProgressProperty.PropertyName)
|
||||
{
|
||||
_animationView.PauseAnimation();
|
||||
_animationView.Progress = Element.Progress;
|
||||
}
|
||||
|
||||
if (e.PropertyName == AnimationView.LoopProperty.PropertyName)
|
||||
{
|
||||
_animationView.RepeatCount = Element.Loop ? -1 : 0;
|
||||
}
|
||||
|
||||
if (e.PropertyName == AnimationView.SpeedProperty.PropertyName)
|
||||
{
|
||||
_animationView.Speed = Element.Speed;
|
||||
}
|
||||
|
||||
base.OnElementPropertyChanged(sender, e);
|
||||
}
|
||||
|
||||
private void ResetReverse()
|
||||
{
|
||||
if (_needToResetFrames)
|
||||
{
|
||||
var composition = _animationView.Composition;
|
||||
|
||||
_animationView.SetMinAndMaxFrame((int)composition.StartFrame, (int)composition.EndFrame);
|
||||
_needToResetFrames = false;
|
||||
}
|
||||
|
||||
if (_needToReverseAnimationSpeed)
|
||||
{
|
||||
_needToReverseAnimationSpeed = false;
|
||||
_animationView.ReverseAnimationSpeed();
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.ComponentModel;
|
||||
using Lottie.Forms;
|
||||
using Lottie.Forms.EventArguments;
|
||||
using Lottie.Forms.UWP.Renderers;
|
||||
using LottieUWP;
|
||||
using LottieUWP.Utils;
|
||||
using Xamarin.Forms.Platform.UWP;
|
||||
|
||||
[assembly: ExportRenderer(typeof(AnimationView), typeof(AnimationViewRenderer))]
|
||||
|
||||
namespace Lottie.Forms.UWP.Renderers
|
||||
{
|
||||
public class AnimationViewRenderer : ViewRenderer<AnimationView, LottieAnimationView>
|
||||
{
|
||||
private LottieAnimationView _animationView;
|
||||
private bool _needToReverseAnimationSpeed;
|
||||
private bool _needToResetFrames;
|
||||
|
||||
/// <summary>
|
||||
/// Used for registration with dependency service
|
||||
/// </summary>
|
||||
public static void Init()
|
||||
{
|
||||
// needed because of this linker issue: https://bugzilla.xamarin.com/show_bug.cgi?id=31076
|
||||
#pragma warning disable 0219
|
||||
var dummy = new AnimationViewRenderer();
|
||||
#pragma warning restore 0219
|
||||
}
|
||||
|
||||
protected override async void OnElementChanged(ElementChangedEventArgs<AnimationView> e)
|
||||
{
|
||||
base.OnElementChanged(e);
|
||||
|
||||
if (Control == null && e.NewElement != null)
|
||||
{
|
||||
_animationView = new LottieAnimationView();
|
||||
|
||||
SetNativeControl(_animationView);
|
||||
}
|
||||
|
||||
if (e.OldElement != null)
|
||||
{
|
||||
e.OldElement.OnPlay -= OnPlay;
|
||||
e.OldElement.OnPause -= OnPause;
|
||||
e.OldElement.OnPlayProgressSegment -= OnPlayProgressSegment;
|
||||
e.OldElement.OnPlayFrameSegment -= OnPlayFrameSegment;
|
||||
|
||||
_animationView.Tapped -= AnimationViewTapped;
|
||||
|
||||
_animationView.AnimatorUpdate -= PlaybackFinishedIfProgressReachesOne;
|
||||
|
||||
_animationView = null;
|
||||
}
|
||||
|
||||
if (e.NewElement != null)
|
||||
{
|
||||
e.NewElement.OnPlay += OnPlay;
|
||||
e.NewElement.OnPause += OnPause;
|
||||
e.NewElement.OnPlayProgressSegment += OnPlayProgressSegment;
|
||||
e.NewElement.OnPlayFrameSegment += OnPlayFrameSegment;
|
||||
|
||||
_animationView.RepeatCount = e.NewElement.Loop ? -1 : 0;
|
||||
_animationView.Speed = e.NewElement.Speed;
|
||||
_animationView.Tapped += AnimationViewTapped;
|
||||
_animationView.AnimatorUpdate += PlaybackFinishedIfProgressReachesOne;
|
||||
|
||||
if (!string.IsNullOrEmpty(e.NewElement.Animation))
|
||||
{
|
||||
await _animationView.SetAnimationAsync(e.NewElement.Animation);
|
||||
Element.Duration = TimeSpan.FromMilliseconds(_animationView.Duration);
|
||||
}
|
||||
|
||||
if (e.NewElement.AutoPlay)
|
||||
_animationView.PlayAnimation();
|
||||
}
|
||||
}
|
||||
|
||||
private void AnimationViewTapped(object sender, Windows.UI.Xaml.Input.TappedRoutedEventArgs e)
|
||||
{
|
||||
Element?.Click();
|
||||
}
|
||||
|
||||
private void PlaybackFinishedIfProgressReachesOne(object sender, ValueAnimator.ValueAnimatorUpdateEventArgs e)
|
||||
{
|
||||
if (((LottieValueAnimator)e.Animation).AnimatedValueAbsolute >= 1)
|
||||
{
|
||||
Element.PlaybackFinished();
|
||||
}
|
||||
}
|
||||
|
||||
private void OnPlay(object sender, EventArgs e)
|
||||
{
|
||||
if (_animationView != null)
|
||||
{
|
||||
if (_animationView.Progress > 0f)
|
||||
{
|
||||
_animationView.ResumeAnimation();
|
||||
}
|
||||
else
|
||||
{
|
||||
ResetReverse();
|
||||
_animationView.PlayAnimation();
|
||||
}
|
||||
Element.IsPlaying = true;
|
||||
}
|
||||
}
|
||||
|
||||
private void PrepareReverseAnimation(Action<float, float> action,
|
||||
float from, float to)
|
||||
{
|
||||
var minValue = Math.Min(from, to);
|
||||
var maxValue = Math.Max(from, to);
|
||||
var needReverse = from > to;
|
||||
|
||||
action(minValue, maxValue);
|
||||
|
||||
if (needReverse && !_needToReverseAnimationSpeed)
|
||||
{
|
||||
_needToReverseAnimationSpeed = true;
|
||||
_animationView.ReverseAnimationSpeed();
|
||||
}
|
||||
|
||||
_animationView.PlayAnimation();
|
||||
Element.IsPlaying = true;
|
||||
}
|
||||
|
||||
private void OnPlayProgressSegment(object sender, ProgressSegmentEventArgs e)
|
||||
{
|
||||
if (_animationView != null)
|
||||
{
|
||||
PrepareReverseAnimation((min, max) =>
|
||||
{
|
||||
_animationView.SetMinAndMaxProgress(min, max);
|
||||
}, e.From, e.To);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnPlayFrameSegment(object sender, FrameSegmentEventArgs e)
|
||||
{
|
||||
if (_animationView != null)
|
||||
{
|
||||
PrepareReverseAnimation((min, max) =>
|
||||
{
|
||||
_animationView.SetMinAndMaxFrame((int)min, (int)max);
|
||||
_needToResetFrames = true;
|
||||
}, e.From, e.To);
|
||||
}
|
||||
}
|
||||
|
||||
private void OnPause(object sender, EventArgs e)
|
||||
{
|
||||
if (_animationView != null)
|
||||
{
|
||||
_animationView.PauseAnimation();
|
||||
Element.IsPlaying = false;
|
||||
}
|
||||
}
|
||||
|
||||
protected override async void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
|
||||
{
|
||||
if (_animationView == null)
|
||||
return;
|
||||
|
||||
if (e.PropertyName == AnimationView.AnimationProperty.PropertyName)
|
||||
{
|
||||
await _animationView.SetAnimationAsync(Element.Animation);
|
||||
Element.Duration = TimeSpan.FromMilliseconds(_animationView.Duration);
|
||||
|
||||
if (Element.AutoPlay)
|
||||
_animationView.PlayAnimation();
|
||||
}
|
||||
|
||||
if (e.PropertyName == AnimationView.ProgressProperty.PropertyName)
|
||||
{
|
||||
_animationView.PauseAnimation();
|
||||
_animationView.Progress = Element.Progress;
|
||||
}
|
||||
|
||||
if (e.PropertyName == AnimationView.LoopProperty.PropertyName)
|
||||
{
|
||||
_animationView.RepeatCount = Element.Loop ? -1 : 0;
|
||||
}
|
||||
|
||||
if (e.PropertyName == AnimationView.SpeedProperty.PropertyName)
|
||||
{
|
||||
_animationView.Speed = Element.Speed;
|
||||
}
|
||||
|
||||
base.OnElementPropertyChanged(sender, e);
|
||||
}
|
||||
|
||||
private void ResetReverse()
|
||||
{
|
||||
if (_needToResetFrames)
|
||||
{
|
||||
var composition = _animationView.Composition;
|
||||
|
||||
_animationView.SetMinAndMaxFrame((int)composition.StartFrame, (int)composition.EndFrame);
|
||||
_needToResetFrames = false;
|
||||
}
|
||||
|
||||
if (_needToReverseAnimationSpeed)
|
||||
{
|
||||
_needToReverseAnimationSpeed = false;
|
||||
_animationView.ReverseAnimationSpeed();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle("Lottie.Forms")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("")]
|
||||
[assembly: AssemblyCopyright("matthewrobbins")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
|
@ -0,0 +1,5 @@
|
|||
---------------------------------
|
||||
Lottie
|
||||
---------------------------------
|
||||
|
||||
Star on Github if this project helps you: https://github.com/martijn00/LottieXamarin
|
|
@ -1,64 +1,36 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{8F0CC2B2-88E2-459B-AC92-F3A74071707E}</ProjectGuid>
|
||||
<ProjectTypeGuids>{8FFB629D-F513-41CE-95D2-7ECE97B6EEEC};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Lottie.iOS</RootNamespace>
|
||||
<TargetFrameworks>Xamarin.iOS10;Xamarin.TVOS10;Xamarin.Mac20</TargetFrameworks>
|
||||
<AssemblyName>Lottie.iOS</AssemblyName>
|
||||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<RootNamespace>Lottie.iOS</RootNamespace>
|
||||
<Description>Render After Effects animations natively on Android, iOS, MacOS, TVOs and UWP</Description>
|
||||
<PackageId>Com.Airbnb.iOS.Lottie</PackageId>
|
||||
<IsBindingProject>true</IsBindingProject>
|
||||
<EnableDefaultItems>false</EnableDefaultItems>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<DefineConstants></DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="Xamarin.iOS" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Linker.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="LOTAnimationView.cs" />
|
||||
<Compile Include="StructsAndEnums.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ObjcBindingApiDefinition Include="ApiDefinitions.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ObjcBindingNativeLibrary Include="libLottie.a" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ObjcBindingCoreSource Include="StructsAndEnums.cs" />
|
||||
<Compile Include="Linker.cs" />
|
||||
<Compile Include="LOTAnimationView.cs" />
|
||||
<Compile Include="libLottie.linkwith.cs">
|
||||
<DependentUpon>libLottie.a</DependentUpon>
|
||||
<DependentUpon>libLottie.a</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.iOS')) ">
|
||||
<ObjcBindingApiDefinition Include="ApiDefinitions.Ios.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.Mac')) ">
|
||||
<ObjcBindingApiDefinition Include="ApiDefinitions.Mac.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition=" $(TargetFramework.StartsWith('Xamarin.TVOS')) ">
|
||||
<ObjcBindingApiDefinition Include="ApiDefinitions.Ios.cs" />
|
||||
</ItemGroup>
|
||||
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.ObjCBinding.CSharp.targets" />
|
||||
</Project>
|
||||
<Import Project="$(MSBuildSDKExtrasTargets)" Condition="Exists('$(MSBuildSDKExtrasTargets)')" />
|
||||
</Project>
|
|
@ -1,34 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
using Foundation;
|
||||
|
||||
// This attribute allows you to mark your assemblies as “safe to link”.
|
||||
// When the attribute is present, the linker—if enabled—will process the assembly
|
||||
// even if you’re using the “Link SDK assemblies only” option, which is the default for device builds.
|
||||
|
||||
[assembly: LinkerSafe]
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle("lottie_ios")]
|
||||
[assembly: AssemblyDescription("Xamarin binding ===Lottie is a mobile library for Andorid and iOS that parses Adobe After Effects animations exported as json with bodymovin and renders the vector animations natively on mobile and through React Native! For the first time, designers can create and ship beautiful animations without an enginineer painstakingly recreating it be hand. Since the animation is backed by JSON they are extremely small in size but can be large in complexity! Animations can be played, resized, looped, sped up, slowed down, and even interactively scrubbed.")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("")]
|
||||
[assembly: AssemblyCopyright("alex")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
|
@ -1,59 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{A4005F26-A5D2-40FD-B971-137126C6A500}</ProjectGuid>
|
||||
<ProjectTypeGuids>{810C163F-4746-4721-8B8E-88A3673A62EA};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Lottie.macOS</RootNamespace>
|
||||
<AssemblyName>Lottie.macOS</AssemblyName>
|
||||
<MacResourcePrefix>Resources</MacResourcePrefix>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>__MAC__;__UNIFIED__;DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<DefineConstants>__MAC__;__UNIFIED__;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Xamarin.Mac" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="libLottie.linkwith.cs">
|
||||
<DependentUpon>libLottie.a</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="..\Lottie.iOS\LOTAnimationView.cs">
|
||||
<Link>LOTAnimationView.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ObjcBindingApiDefinition Include="ApiDefinitions.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ObjcBindingCoreSource Include="StructsAndEnums.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ObjcBindingNativeLibrary Include="libLottie.a" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.ObjcBinding.CSharp.targets" />
|
||||
</Project>
|
|
@ -1,34 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
using Foundation;
|
||||
|
||||
// This attribute allows you to mark your assemblies as “safe to link”.
|
||||
// When the attribute is present, the linker—if enabled—will process the assembly
|
||||
// even if you’re using the “Link SDK assemblies only” option, which is the default for device builds.
|
||||
|
||||
[assembly: LinkerSafe]
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle("Lottie.macOS")]
|
||||
[assembly: AssemblyDescription("Lottie is a library that parses Adobe After Effects animations exported as json and renders the vector animations natively.")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lottie.macOS")]
|
||||
[assembly: AssemblyCopyright("Fabio Nuno")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
|
@ -1,23 +0,0 @@
|
|||
using System;
|
||||
using ObjCRuntime;
|
||||
|
||||
namespace Airbnb.Lottie
|
||||
{
|
||||
[Native]
|
||||
public enum LOTViewContentMode : ulong
|
||||
{
|
||||
ScaleToFill,
|
||||
ScaleAspectFit,
|
||||
ScaleAspectFill,
|
||||
Redraw,
|
||||
Center,
|
||||
Top,
|
||||
Bottom,
|
||||
Left,
|
||||
Right,
|
||||
TopLeft,
|
||||
TopRight,
|
||||
BottomLeft,
|
||||
BottomRight
|
||||
}
|
||||
}
|
Двоичные данные
Lottie.macOS/libLottie.a
|
@ -1,8 +0,0 @@
|
|||
using ObjCRuntime;
|
||||
|
||||
[assembly: LinkWith ("libLottie.a",
|
||||
Frameworks = "AppKit",
|
||||
IsCxx = true,
|
||||
SmartLink = true,
|
||||
LinkerFlags="-ObjC",
|
||||
ForceLoad = true)]
|
831
Lottie.sln
|
@ -1,44 +1,20 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 14
|
||||
VisualStudioVersion = 14.0.25420.1
|
||||
# Visual Studio 15
|
||||
VisualStudioVersion = 15.0.27520.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.Droid", "Lottie.Droid\Lottie.Droid.csproj", "{0183ABDF-F583-4E8A-8055-5369192EE42D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lottie.Forms", "Lottie.Forms\Lottie.Forms.csproj", "{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.Forms", "Lottie.Forms\Lottie.Forms.csproj", "{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lottie.iOS", "Lottie.iOS\Lottie.iOS.csproj", "{8F0CC2B2-88E2-459B-AC92-F3A74071707E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.Forms.iOS", "Lottie.Forms.iOS\Lottie.Forms.iOS.csproj", "{54014744-396B-4965-A996-296FCBED0FF4}"
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionItems", "{E8F45614-179E-47E6-8D29-E292E32BA282}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
appveyor.yml = appveyor.yml
|
||||
build.cake = build.cake
|
||||
Directory.build.props = Directory.build.props
|
||||
Directory.build.targets = Directory.build.targets
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.iOS", "Lottie.iOS\Lottie.iOS.csproj", "{8F0CC2B2-88E2-459B-AC92-F3A74071707E}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{C798DE1A-5CF4-4F1F-94C3-B0BF0CA6405F}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Example.Forms", "Example.Forms", "{A423AB68-D366-479C-ADCA-4B8F9A0AA252}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.Forms.Droid", "Lottie.Forms.Droid\Lottie.Forms.Droid.csproj", "{A5328112-8844-41D1-9018-9EAFCA7FE5DC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.Forms", "Examples\Example.Forms\Example.Forms\Example.Forms.csproj", "{BA40E6BD-F568-4301-A402-3846F176D49E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.Forms.Droid", "Examples\Example.Forms\Example.Forms.Droid\Example.Forms.Droid.csproj", "{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.Forms.iOS", "Examples\Example.Forms\Example.Forms.iOS\Example.Forms.iOS.csproj", "{8E64CF15-8657-4540-BDE6-626E5827F221}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.Droid", "Examples\Example.Droid\Example.Droid.csproj", "{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.iOS", "Examples\Example.iOS\Example.iOS.csproj", "{479F258B-F78C-4A5B-8351-23911CE800A2}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.macOS", "Lottie.macOS\Lottie.macOS.csproj", "{A4005F26-A5D2-40FD-B971-137126C6A500}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.macOS", "Examples\Example.macOS\Example.macOS.csproj", "{34527F69-F4D9-4775-99D9-FC59A15AEFD0}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.tvOS", "Lottie.tvOS\Lottie.tvOS.csproj", "{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.tvOS", "Examples\Example.tvOS\Example.tvOS.csproj", "{0A4C14BD-FD41-470F-8235-FE5A97405519}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.Forms.macOS", "Lottie.Forms.macOS\Lottie.Forms.macOS.csproj", "{FD4398E7-4790-4DDE-8D1D-9C11ED281737}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lottie.Forms.UWP", "Lottie.Forms.UWP\Lottie.Forms.UWP.csproj", "{68448EC2-A94F-42F6-BD98-2AC42446FC6E}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example.Forms.UWP", "Examples\Example.Forms\Example.Forms.UWP\Example.Forms.UWP.csproj", "{9E58BD10-4C83-49A9-80AB-CF123576DD55}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lottie.Android", "Lottie.Android\Lottie.Android.csproj", "{284C8E3C-3352-41AF-8A5A-AC2CFD918737}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
|
@ -68,54 +44,6 @@ Global
|
|||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|ARM.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|ARM.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|x64.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|x64.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|x86.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.AppStore|x86.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|x64.Build.0 = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{0183ABDF-F583-4E8A-8055-5369192EE42D}.Release|x86.Build.0 = Release|Any CPU
|
||||
{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
|
||||
|
@ -164,48 +92,6 @@ Global
|
|||
{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}.Release|x64.Build.0 = Release|Any CPU
|
||||
{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}.Release|x86.Build.0 = Release|Any CPU
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|ARM.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|ARM.Build.0 = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|iPhone.ActiveCfg = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|iPhone.Build.0 = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|x64.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|x64.Build.0 = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|x86.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Ad-Hoc|x86.Build.0 = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|ARM.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|ARM.Build.0 = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|iPhone.ActiveCfg = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|iPhone.Build.0 = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|x64.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|x64.Build.0 = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|x86.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.AppStore|x86.Build.0 = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|ARM.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|iPhone.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|iPhone.Build.0 = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|x64.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Debug|x86.ActiveCfg = Debug|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|Any CPU.ActiveCfg = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|Any CPU.Build.0 = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|ARM.ActiveCfg = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|iPhone.ActiveCfg = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|iPhone.Build.0 = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|x64.ActiveCfg = Release|iPhone
|
||||
{54014744-396B-4965-A996-296FCBED0FF4}.Release|x86.ActiveCfg = Release|iPhone
|
||||
{8F0CC2B2-88E2-459B-AC92-F3A74071707E}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{8F0CC2B2-88E2-459B-AC92-F3A74071707E}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{8F0CC2B2-88E2-459B-AC92-F3A74071707E}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
|
||||
|
@ -254,653 +140,60 @@ Global
|
|||
{8F0CC2B2-88E2-459B-AC92-F3A74071707E}.Release|x64.Build.0 = Release|Any CPU
|
||||
{8F0CC2B2-88E2-459B-AC92-F3A74071707E}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{8F0CC2B2-88E2-459B-AC92-F3A74071707E}.Release|x86.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|x64.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Ad-Hoc|x86.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|ARM.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|x64.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|x64.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.AppStore|x86.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|x64.Build.0 = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{A5328112-8844-41D1-9018-9EAFCA7FE5DC}.Release|x86.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|x64.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Ad-Hoc|x86.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|ARM.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|x64.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|x64.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.AppStore|x86.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|x64.Build.0 = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E}.Release|x86.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|x64.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|x86.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|ARM.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|ARM.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|iPhone.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|x64.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|x64.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|x64.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|x86.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.AppStore|x86.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|ARM.Deploy.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|iPhone.Deploy.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|x64.Deploy.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Debug|x86.Deploy.0 = Debug|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|Any CPU.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|ARM.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|iPhone.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|x64.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|x64.Deploy.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|x86.Build.0 = Release|Any CPU
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}.Release|x86.Deploy.0 = Release|Any CPU
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.AppStore|ARM.ActiveCfg = AppStore|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.AppStore|iPhone.Build.0 = AppStore|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.AppStore|x64.ActiveCfg = AppStore|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.AppStore|x86.ActiveCfg = AppStore|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|Any CPU.ActiveCfg = Debug|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|Any CPU.Build.0 = Debug|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|ARM.ActiveCfg = Debug|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|iPhone.ActiveCfg = Debug|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|iPhone.Build.0 = Debug|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|x64.ActiveCfg = Debug|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Debug|x86.ActiveCfg = Debug|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Release|Any CPU.ActiveCfg = Release|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Release|ARM.ActiveCfg = Release|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Release|iPhone.ActiveCfg = Release|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Release|iPhone.Build.0 = Release|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Release|x64.ActiveCfg = Release|iPhone
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221}.Release|x86.ActiveCfg = Release|iPhone
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|ARM.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|ARM.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|x64.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|x64.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|x86.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.AppStore|x86.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|x64.Build.0 = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656}.Release|x86.Build.0 = Release|Any CPU
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|ARM.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|ARM.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|iPhone.ActiveCfg = Release|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|iPhone.Build.0 = Release|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|x64.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|x64.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|x86.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Ad-Hoc|x86.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|ARM.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|ARM.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|iPhone.ActiveCfg = Release|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|iPhone.Build.0 = Release|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|x64.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|x64.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|x86.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.AppStore|x86.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|Any CPU.ActiveCfg = Debug|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|Any CPU.Build.0 = Debug|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|ARM.ActiveCfg = Debug|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|iPhone.ActiveCfg = Debug|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|iPhone.Build.0 = Debug|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Release|Any CPU.ActiveCfg = Release|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Release|ARM.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Release|iPhone.ActiveCfg = Release|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Release|iPhone.Build.0 = Release|iPhone
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Release|x64.ActiveCfg = Release|iPhoneSimulator
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2}.Release|x86.ActiveCfg = Release|iPhoneSimulator
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|ARM.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|ARM.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|x64.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|x64.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|x86.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.AppStore|x86.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|x64.Build.0 = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{A4005F26-A5D2-40FD-B971-137126C6A500}.Release|x86.Build.0 = Release|Any CPU
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|ARM.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|ARM.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|iPhone.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|iPhone.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|x64.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|x64.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|x86.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Ad-Hoc|x86.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|ARM.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|ARM.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|iPhone.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|iPhone.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|x64.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|x64.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|x86.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.AppStore|x86.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|ARM.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|ARM.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|iPhone.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|iPhone.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|x64.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Debug|x86.Build.0 = Debug|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|ARM.ActiveCfg = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|ARM.Build.0 = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|iPhone.ActiveCfg = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|iPhone.Build.0 = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|x64.ActiveCfg = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|x64.Build.0 = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|x86.ActiveCfg = Release|iPhoneSimulator
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0}.Release|x86.Build.0 = Release|iPhoneSimulator
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|iPhone.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|ARM.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|ARM.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|iPhone.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|x64.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|x64.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|x86.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.AppStore|x86.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|x64.Build.0 = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}.Release|x86.Build.0 = Release|Any CPU
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|ARM.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|ARM.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|iPhone.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|iPhone.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|x64.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|x64.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|x86.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Ad-Hoc|x86.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|Any CPU.Build.0 = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|ARM.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|ARM.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|iPhone.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|iPhone.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|x64.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|x64.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|x86.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.AppStore|x86.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|Any CPU.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|Any CPU.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|ARM.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|ARM.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|iPhone.ActiveCfg = Debug|iPhone
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|iPhone.Build.0 = Debug|iPhone
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|x64.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|x64.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|x86.ActiveCfg = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Debug|x86.Build.0 = Debug|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|Any CPU.ActiveCfg = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|ARM.ActiveCfg = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|ARM.Build.0 = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|iPhone.ActiveCfg = Release|iPhone
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|iPhone.Build.0 = Release|iPhone
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|x64.ActiveCfg = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|x64.Build.0 = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|x86.ActiveCfg = Release|iPhoneSimulator
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519}.Release|x86.Build.0 = Release|iPhoneSimulator
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|ARM.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|ARM.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|x64.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|x64.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|x86.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Ad-Hoc|x86.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|ARM.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|ARM.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|x64.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|x64.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|x86.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.AppStore|x86.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|x64.Build.0 = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{FD4398E7-4790-4DDE-8D1D-9C11ED281737}.Release|x86.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|ARM.Build.0 = Release|ARM
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|x64.ActiveCfg = Release|x64
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|x64.Build.0 = Release|x64
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|x86.ActiveCfg = Release|x86
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Ad-Hoc|x86.Build.0 = Release|x86
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|ARM.ActiveCfg = Release|ARM
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|ARM.Build.0 = Release|ARM
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|x64.ActiveCfg = Release|x64
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|x64.Build.0 = Release|x64
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|x86.ActiveCfg = Release|x86
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.AppStore|x86.Build.0 = Release|x86
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|ARM.ActiveCfg = Debug|ARM
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|ARM.Build.0 = Debug|ARM
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|x64.Build.0 = Debug|x64
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Debug|x86.Build.0 = Debug|x86
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|ARM.ActiveCfg = Release|ARM
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|ARM.Build.0 = Release|ARM
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|x64.ActiveCfg = Release|x64
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|x64.Build.0 = Release|x64
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|x86.ActiveCfg = Release|x86
|
||||
{68448EC2-A94F-42F6-BD98-2AC42446FC6E}.Release|x86.Build.0 = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|Any CPU.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|Any CPU.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|Any CPU.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|ARM.Build.0 = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|ARM.Deploy.0 = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|iPhone.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|iPhone.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|iPhone.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|x64.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|x64.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|x64.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|x86.ActiveCfg = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|x86.Build.0 = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Ad-Hoc|x86.Deploy.0 = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|Any CPU.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|Any CPU.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|Any CPU.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|ARM.ActiveCfg = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|ARM.Build.0 = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|ARM.Deploy.0 = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|iPhone.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|iPhone.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|iPhone.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|iPhoneSimulator.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|iPhoneSimulator.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|iPhoneSimulator.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|x64.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|x64.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|x64.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|x86.ActiveCfg = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|x86.Build.0 = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.AppStore|x86.Deploy.0 = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|Any CPU.ActiveCfg = Debug|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|ARM.ActiveCfg = Debug|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|ARM.Build.0 = Debug|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|ARM.Deploy.0 = Debug|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|iPhone.ActiveCfg = Debug|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|x64.Build.0 = Debug|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|x64.Deploy.0 = Debug|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|x86.ActiveCfg = Debug|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|x86.Build.0 = Debug|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Debug|x86.Deploy.0 = Debug|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|Any CPU.ActiveCfg = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|ARM.ActiveCfg = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|ARM.Build.0 = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|ARM.Deploy.0 = Release|ARM
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|iPhone.ActiveCfg = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|iPhoneSimulator.ActiveCfg = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|x64.ActiveCfg = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|x64.Build.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|x64.Deploy.0 = Release|x64
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|x86.ActiveCfg = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|x86.Build.0 = Release|x86
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55}.Release|x86.Deploy.0 = Release|x86
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|x64.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Ad-Hoc|x86.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|Any CPU.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|ARM.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|ARM.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|iPhone.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|iPhone.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|x64.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|x64.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|x86.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.AppStore|x86.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|ARM.ActiveCfg = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|ARM.Build.0 = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|iPhone.ActiveCfg = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|iPhone.Build.0 = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|x64.Build.0 = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|ARM.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|ARM.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|iPhone.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|iPhone.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|x64.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|x64.Build.0 = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{284C8E3C-3352-41AF-8A5A-AC2CFD918737}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(NestedProjects) = preSolution
|
||||
{A423AB68-D366-479C-ADCA-4B8F9A0AA252} = {C798DE1A-5CF4-4F1F-94C3-B0BF0CA6405F}
|
||||
{BA40E6BD-F568-4301-A402-3846F176D49E} = {A423AB68-D366-479C-ADCA-4B8F9A0AA252}
|
||||
{7E32A11A-AA96-4DAA-9181-FCB6C36250EC} = {A423AB68-D366-479C-ADCA-4B8F9A0AA252}
|
||||
{8E64CF15-8657-4540-BDE6-626E5827F221} = {A423AB68-D366-479C-ADCA-4B8F9A0AA252}
|
||||
{4EEBA7F8-013A-4CF9-BFE6-8834E70DB656} = {C798DE1A-5CF4-4F1F-94C3-B0BF0CA6405F}
|
||||
{479F258B-F78C-4A5B-8351-23911CE800A2} = {C798DE1A-5CF4-4F1F-94C3-B0BF0CA6405F}
|
||||
{34527F69-F4D9-4775-99D9-FC59A15AEFD0} = {C798DE1A-5CF4-4F1F-94C3-B0BF0CA6405F}
|
||||
{0A4C14BD-FD41-470F-8235-FE5A97405519} = {C798DE1A-5CF4-4F1F-94C3-B0BF0CA6405F}
|
||||
{9E58BD10-4C83-49A9-80AB-CF123576DD55} = {A423AB68-D366-479C-ADCA-4B8F9A0AA252}
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {FA645EF5-7121-4AD6-96C4-6BD29CBD178D}
|
||||
EndGlobalSection
|
||||
GlobalSection(MonoDevelopProperties) = preSolution
|
||||
version = 2.5
|
||||
|
|
|
@ -1,58 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{5F226A3E-3BD9-452B-A7AB-77F8A96CFE4D}</ProjectGuid>
|
||||
<ProjectTypeGuids>{4A1ED743-3331-459B-915A-4B17C7B6DBB6};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<RootNamespace>Lottie.tvOS</RootNamespace>
|
||||
<AssemblyName>Lottie.tvOS</AssemblyName>
|
||||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
|
||||
<ReleaseVersion>2.5.0.0</ReleaseVersion>
|
||||
<SynchReleaseVersion>false</SynchReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release</OutputPath>
|
||||
<DefineConstants>__IOS__;__UNIFIED__;__MOBILE__;__TVOS__;</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="Xamarin.TVOS" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="..\Lottie.iOS\libLottie.linkwith.cs">
|
||||
<Link>libLottie.linkwith.cs</Link>
|
||||
<DependentUpon>libLottie.a</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="..\Lottie.iOS\StructsAndEnums.cs">
|
||||
<Link>StructsAndEnums.cs</Link>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ObjcBindingNativeLibrary Include="libLottie.a" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ObjcBindingApiDefinition Include="..\Lottie.iOS\ApiDefinitions.cs">
|
||||
<Link>ApiDefinitions.cs</Link>
|
||||
</ObjcBindingApiDefinition>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\TVOS\Xamarin.TVOS.ObjCBinding.CSharp.targets" />
|
||||
</Project>
|
|
@ -1,34 +0,0 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
|
||||
using Foundation;
|
||||
|
||||
// This attribute allows you to mark your assemblies as “safe to link”.
|
||||
// When the attribute is present, the linker—if enabled—will process the assembly
|
||||
// even if you’re using the “Link SDK assemblies only” option, which is the default for device builds.
|
||||
|
||||
[assembly: LinkerSafe]
|
||||
|
||||
// Information about this assembly is defined by the following attributes.
|
||||
// Change them to the values specific to your project.
|
||||
|
||||
[assembly: AssemblyTitle("Lottie.tvOS")]
|
||||
[assembly: AssemblyDescription("Lottie is a library that parses Adobe After Effects animations exported as json and renders the vector animations natively.")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Lottie.tvOS")]
|
||||
[assembly: AssemblyCopyright("Fabio Nuno")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}".
|
||||
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
|
||||
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
|
||||
|
||||
[assembly: AssemblyVersion("1.0.*")]
|
||||
|
||||
// The following attributes are used to specify the signing key for the assembly,
|
||||
// if desired. See the Mono documentation for more information about signing.
|
||||
|
||||
//[assembly: AssemblyDelaySign(false)]
|
||||
//[assembly: AssemblyKeyFile("")]
|
Двоичные данные
Lottie.tvOS/libLottie.a
|
@ -352,3 +352,8 @@ If you would like to add more JSON files and screenshot tests, feel free to do s
|
|||
|
||||
## Issues or feature requests?
|
||||
File github issues for anything that is unexpectedly broken. If an After Effects file is not working, please attach it to your issue. Debugging without the original file is much more difficult.
|
||||
|
||||
# To build the source code
|
||||
|
||||
* msbuild Lottie.iOS.csproj /t:restore
|
||||
* msbuild Lottie.iOS.csproj /p:Configuration=Release
|
|
@ -1,208 +1,208 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props" Condition="Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props" Condition="Exists('..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}</ProjectGuid>
|
||||
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Example.Forms.Droid</RootNamespace>
|
||||
<AssemblyName>Example.Forms.Droid</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AndroidApplication>true</AndroidApplication>
|
||||
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
|
||||
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
|
||||
<TargetFrameworkVersion>v7.0</TargetFrameworkVersion>
|
||||
<AndroidSupportedAbis>armeabi,armeabi-v7a,x86</AndroidSupportedAbis>
|
||||
<AndroidStoreUncompressedFileExtensions />
|
||||
<MandroidI18n />
|
||||
<JavaMaximumHeapSize />
|
||||
<JavaOptions />
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<AndroidTlsProvider>
|
||||
</AndroidTlsProvider>
|
||||
<ReleaseVersion>2.5</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
|
||||
<AndroidLinkMode>None</AndroidLinkMode>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
|
||||
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="FormsViewGroup, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\FormsViewGroup.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Mono.Android" />
|
||||
<Reference Include="mscorlib" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.ObjectModel" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="Xamarin.Android.Support.Animated.Vector.Drawable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Compat, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Core.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Core.Utils, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Design.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Fragment, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Media.Compat, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Transition, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Transition.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.CardView, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.CardView.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.MediaRouter, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.Palette, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.Palette.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Vector.Drawable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.Android, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Annotations, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="MainActivity.cs" />
|
||||
<Compile Include="Resources\Resource.Designer.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AndroidAsset Include="Assets\LottieLogo1.json" />
|
||||
<None Include="packages.config">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Include="Resources\AboutResources.txt" />
|
||||
<None Include="Assets\AboutAssets.txt" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AndroidResource Include="Resources\drawable\icon.png" />
|
||||
<AndroidResource Include="Resources\drawable-hdpi\icon.png" />
|
||||
<AndroidResource Include="Resources\drawable-xhdpi\icon.png" />
|
||||
<AndroidResource Include="Resources\drawable-xxhdpi\icon.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Properties\AndroidManifest.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AndroidResource Include="Resources\layout\Tabbar.axml" />
|
||||
<AndroidResource Include="Resources\layout\Toolbar.axml" />
|
||||
<AndroidResource Include="Resources\values\styles.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Lottie.Forms.Droid\Lottie.Forms.Droid.csproj">
|
||||
<Project>{a5328112-8844-41d1-9018-9eafca7fe5dc}</Project>
|
||||
<Name>Lottie.Forms.Droid</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Example.Forms\Example.Forms.csproj">
|
||||
<Project>{BA40E6BD-F568-4301-A402-3846F176D49E}</Project>
|
||||
<Name>Example.Forms</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets" Condition="Exists('..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets" Condition="Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" />
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props" Condition="Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props" Condition="Exists('..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{7E32A11A-AA96-4DAA-9181-FCB6C36250EC}</ProjectGuid>
|
||||
<ProjectTypeGuids>{EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Example.Forms.Droid</RootNamespace>
|
||||
<AssemblyName>Example.Forms.Droid</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<AndroidApplication>true</AndroidApplication>
|
||||
<AndroidResgenFile>Resources\Resource.Designer.cs</AndroidResgenFile>
|
||||
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
|
||||
<AndroidManifest>Properties\AndroidManifest.xml</AndroidManifest>
|
||||
<AndroidUseLatestPlatformSdk>false</AndroidUseLatestPlatformSdk>
|
||||
<TargetFrameworkVersion>v7.0</TargetFrameworkVersion>
|
||||
<AndroidSupportedAbis>armeabi,armeabi-v7a,x86</AndroidSupportedAbis>
|
||||
<AndroidStoreUncompressedFileExtensions />
|
||||
<MandroidI18n />
|
||||
<JavaMaximumHeapSize />
|
||||
<JavaOptions />
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<AndroidTlsProvider>
|
||||
</AndroidTlsProvider>
|
||||
<ReleaseVersion>2.5</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AndroidUseSharedRuntime>True</AndroidUseSharedRuntime>
|
||||
<AndroidLinkMode>None</AndroidLinkMode>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<AndroidUseSharedRuntime>False</AndroidUseSharedRuntime>
|
||||
<AndroidLinkMode>SdkOnly</AndroidLinkMode>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="FormsViewGroup, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\FormsViewGroup.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Mono.Android" />
|
||||
<Reference Include="mscorlib" />
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.ObjectModel" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="Xamarin.Android.Support.Animated.Vector.Drawable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Compat, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Core.UI, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.UI.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Core.Utils, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Core.Utils.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Design, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Design.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Fragment, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Fragment.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Media.Compat, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Media.Compat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Transition, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Transition.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v4.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.AppCompat, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.CardView, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.CardView.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.MediaRouter, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.Palette, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.Palette.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.v7.RecyclerView, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Vector.Drawable, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.Android, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Android.Support.Annotations, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\lib\MonoAndroid70\Xamarin.Android.Support.Annotations.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="MainActivity.cs" />
|
||||
<Compile Include="Resources\Resource.Designer.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AndroidAsset Include="Assets\LottieLogo1.json" />
|
||||
<None Include="packages.config">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Include="Resources\AboutResources.txt" />
|
||||
<None Include="Assets\AboutAssets.txt" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AndroidResource Include="Resources\drawable\icon.png" />
|
||||
<AndroidResource Include="Resources\drawable-hdpi\icon.png" />
|
||||
<AndroidResource Include="Resources\drawable-xhdpi\icon.png" />
|
||||
<AndroidResource Include="Resources\drawable-xxhdpi\icon.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="Properties\AndroidManifest.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AndroidResource Include="Resources\layout\Tabbar.axml" />
|
||||
<AndroidResource Include="Resources\layout\Toolbar.axml" />
|
||||
<AndroidResource Include="Resources\values\styles.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Lottie.Forms.Droid\Lottie.Forms.Droid.csproj">
|
||||
<Project>{a5328112-8844-41d1-9018-9eafca7fe5dc}</Project>
|
||||
<Name>Lottie.Forms.Droid</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Example.Forms\Example.Forms.csproj">
|
||||
<Project>{BA40E6BD-F568-4301-A402-3846F176D49E}</Project>
|
||||
<Name>Example.Forms</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.props'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Annotations.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Annotations.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Compat.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Core.UI.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.UI.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Core.Utils.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Core.Utils.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Media.Compat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Media.Compat.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Fragment.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Fragment.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Transition.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Transition.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v4.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v4.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.Palette.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.Palette.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.RecyclerView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.RecyclerView.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Vector.Drawable.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Animated.Vector.Drawable.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.AppCompat.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.AppCompat.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.Design.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.Design.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.MediaRouter.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.MediaRouter.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets" Condition="Exists('..\..\..\packages\Xamarin.Android.Support.v7.CardView.25.3.1\build\MonoAndroid70\Xamarin.Android.Support.v7.CardView.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets" Condition="Exists('..\..\..\packages\Xamarin.Build.Download.0.4.7\build\Xamarin.Build.Download.targets')" />
|
||||
<Import Project="..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets" Condition="Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" />
|
||||
</Project>
|
До Ширина: | Высота: | Размер: 1.4 KiB После Ширина: | Высота: | Размер: 1.4 KiB |
До Ширина: | Высота: | Размер: 1.7 KiB После Ширина: | Высота: | Размер: 1.7 KiB |
До Ширина: | Высота: | Размер: 2.3 KiB После Ширина: | Высота: | Размер: 2.3 KiB |
До Ширина: | Высота: | Размер: 1.4 KiB После Ширина: | Высота: | Размер: 1.4 KiB |
|
@ -1,21 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Annotations" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Compat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Core.UI" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Core.Utils" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Design" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Fragment" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Media.Compat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Transition" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v4" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.AppCompat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.CardView" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.MediaRouter" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.Palette" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.RecyclerView" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Vector.Drawable" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Build.Download" version="0.4.7" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Forms" version="2.5.0.280555" targetFramework="monoandroid70" />
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Xamarin.Android.Support.Animated.Vector.Drawable" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Annotations" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Compat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Core.UI" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Core.Utils" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Design" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Fragment" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Media.Compat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Transition" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v4" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.AppCompat" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.CardView" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.MediaRouter" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.Palette" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.v7.RecyclerView" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Android.Support.Vector.Drawable" version="25.3.1" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Build.Download" version="0.4.7" targetFramework="monoandroid70" />
|
||||
<package id="Xamarin.Forms" version="2.5.0.280555" targetFramework="monoandroid70" />
|
||||
</packages>
|
До Ширина: | Высота: | Размер: 1.4 KiB После Ширина: | Высота: | Размер: 1.4 KiB |
До Ширина: | Высота: | Размер: 7.5 KiB После Ширина: | Высота: | Размер: 7.5 KiB |
До Ширина: | Высота: | Размер: 2.9 KiB После Ширина: | Высота: | Размер: 2.9 KiB |
До Ширина: | Высота: | Размер: 1.6 KiB После Ширина: | Высота: | Размер: 1.6 KiB |
До Ширина: | Высота: | Размер: 1.2 KiB После Ширина: | Высота: | Размер: 1.2 KiB |
До Ширина: | Высота: | Размер: 1.4 KiB После Ширина: | Высота: | Размер: 1.4 KiB |
До Ширина: | Высота: | Размер: 3.1 KiB После Ширина: | Высота: | Размер: 3.1 KiB |
|
@ -1,160 +1,160 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProjectGuid>{9E58BD10-4C83-49A9-80AB-CF123576DD55}</ProjectGuid>
|
||||
<OutputType>AppContainerExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Example.Forms.UWP</RootNamespace>
|
||||
<AssemblyName>Example.Forms.UWP</AssemblyName>
|
||||
<DefaultLanguage>en-US</DefaultLanguage>
|
||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.15063.0</TargetPlatformVersion>
|
||||
<TargetPlatformMinVersion>10.0.10586.0</TargetPlatformMinVersion>
|
||||
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
||||
<PackageCertificateKeyFile>Example.Forms.UWP_TemporaryKey.pfx</PackageCertificateKeyFile>
|
||||
<ReleaseVersion>2.5</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<OutputPath>bin\x86\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\ARM\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
|
||||
<OutputPath>bin\ARM\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="App.xaml.cs">
|
||||
<DependentUpon>App.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MainPage.xaml.cs">
|
||||
<DependentUpon>MainPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AppxManifest Include="Package.appxmanifest">
|
||||
<SubType>Designer</SubType>
|
||||
</AppxManifest>
|
||||
<Content Include="LottieLogo1.json" />
|
||||
<None Include="Example.Forms.UWP_TemporaryKey.pfx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Properties\Default.rd.xml" />
|
||||
<Content Include="Assets\LockScreenLogo.scale-200.png" />
|
||||
<Content Include="Assets\SplashScreen.scale-200.png" />
|
||||
<Content Include="Assets\Square150x150Logo.scale-200.png" />
|
||||
<Content Include="Assets\Square44x44Logo.scale-200.png" />
|
||||
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
|
||||
<Content Include="Assets\StoreLogo.png" />
|
||||
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ApplicationDefinition Include="App.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Page Include="MainPage.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
|
||||
<Version>6.0.8</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Xamarin.Forms">
|
||||
<Version>2.5.0.280555</Version>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Lottie.Forms.UWP\Lottie.Forms.UWP.csproj">
|
||||
<Project>{68448ec2-a94f-42f6-bd98-2ac42446fc6e}</Project>
|
||||
<Name>Lottie.Forms.UWP</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Example.Forms\Example.Forms.csproj">
|
||||
<Project>{ba40e6bd-f568-4301-a402-3846f176d49e}</Project>
|
||||
<Name>Example.Forms</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
||||
<VisualStudioVersion>14.0</VisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||
<ProjectGuid>{9E58BD10-4C83-49A9-80AB-CF123576DD55}</ProjectGuid>
|
||||
<OutputType>AppContainerExe</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Example.Forms.UWP</RootNamespace>
|
||||
<AssemblyName>Example.Forms.UWP</AssemblyName>
|
||||
<DefaultLanguage>en-US</DefaultLanguage>
|
||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.15063.0</TargetPlatformVersion>
|
||||
<TargetPlatformMinVersion>10.0.10586.0</TargetPlatformMinVersion>
|
||||
<MinimumVisualStudioVersion>14</MinimumVisualStudioVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
||||
<PackageCertificateKeyFile>Example.Forms.UWP_TemporaryKey.pfx</PackageCertificateKeyFile>
|
||||
<ReleaseVersion>2.5</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x86\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
||||
<OutputPath>bin\x86\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x86</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\ARM\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
|
||||
<OutputPath>bin\ARM\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>ARM</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<OutputPath>bin\x64\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>full</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
||||
<OutputPath>bin\x64\Release\</OutputPath>
|
||||
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
||||
<Optimize>true</Optimize>
|
||||
<NoWarn>;2008</NoWarn>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<PlatformTarget>x64</PlatformTarget>
|
||||
<UseVSHostingProcess>false</UseVSHostingProcess>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<Prefer32Bit>true</Prefer32Bit>
|
||||
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="App.xaml.cs">
|
||||
<DependentUpon>App.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="MainPage.xaml.cs">
|
||||
<DependentUpon>MainPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<AppxManifest Include="Package.appxmanifest">
|
||||
<SubType>Designer</SubType>
|
||||
</AppxManifest>
|
||||
<Content Include="LottieLogo1.json" />
|
||||
<None Include="Example.Forms.UWP_TemporaryKey.pfx" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="Properties\Default.rd.xml" />
|
||||
<Content Include="Assets\LockScreenLogo.scale-200.png" />
|
||||
<Content Include="Assets\SplashScreen.scale-200.png" />
|
||||
<Content Include="Assets\Square150x150Logo.scale-200.png" />
|
||||
<Content Include="Assets\Square44x44Logo.scale-200.png" />
|
||||
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
|
||||
<Content Include="Assets\StoreLogo.png" />
|
||||
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ApplicationDefinition Include="App.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</ApplicationDefinition>
|
||||
<Page Include="MainPage.xaml">
|
||||
<Generator>MSBuild:Compile</Generator>
|
||||
<SubType>Designer</SubType>
|
||||
</Page>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform">
|
||||
<Version>6.0.8</Version>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Xamarin.Forms">
|
||||
<Version>2.5.0.280555</Version>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Lottie.Forms.UWP\Lottie.Forms.UWP.csproj">
|
||||
<Project>{68448ec2-a94f-42f6-bd98-2ac42446fc6e}</Project>
|
||||
<Name>Lottie.Forms.UWP</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Example.Forms\Example.Forms.csproj">
|
||||
<Project>{ba40e6bd-f568-4301-a402-3846f176d49e}</Project>
|
||||
<Name>Example.Forms</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '14.0' ">
|
||||
<VisualStudioVersion>14.0</VisualStudioVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
|
@ -1,168 +1,174 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props" Condition="Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{8E64CF15-8657-4540-BDE6-626E5827F221}</ProjectGuid>
|
||||
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Example.Forms.iOS</RootNamespace>
|
||||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
|
||||
<AssemblyName>Example.Forms.iOS</AssemblyName>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<ReleaseVersion>2.5</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<MtouchArch>i386, x86_64</MtouchArch>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchArch>i386, x86_64</MtouchArch>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhone\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\iPhone\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>True</Optimize>
|
||||
<OutputPath>bin\iPhone\Ad-Hoc</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>False</ConsolePause>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<BuildIpa>True</BuildIpa>
|
||||
<CodesignProvision>Automatic:AdHoc</CodesignProvision>
|
||||
<CodesignKey>iPhone Distribution</CodesignKey>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|iPhone' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>True</Optimize>
|
||||
<OutputPath>bin\iPhone\AppStore</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>False</ConsolePause>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<CodesignProvision>Automatic:AppStore</CodesignProvision>
|
||||
<CodesignKey>iPhone Distribution</CodesignKey>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Main.cs" />
|
||||
<Compile Include="AppDelegate.cs" />
|
||||
<None Include="Entitlements.plist" />
|
||||
<None Include="Info.plist" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<ITunesArtwork Include="iTunesArtwork" />
|
||||
<ITunesArtwork Include="iTunesArtwork@2x" />
|
||||
<BundleResource Include="LottieLogo1.json" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BundleResource Include="Resources\Default-568h%402x.png" />
|
||||
<BundleResource Include="Resources\Default-Portrait.png" />
|
||||
<BundleResource Include="Resources\Default-Portrait%402x.png" />
|
||||
<BundleResource Include="Resources\Default.png" />
|
||||
<BundleResource Include="Resources\Default%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-60%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-60%403x.png" />
|
||||
<BundleResource Include="Resources\Icon-76.png" />
|
||||
<BundleResource Include="Resources\Icon-76%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-Small-40.png" />
|
||||
<BundleResource Include="Resources\Icon-Small-40%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-Small-40%403x.png" />
|
||||
<BundleResource Include="Resources\Icon-Small.png" />
|
||||
<BundleResource Include="Resources\Icon-Small%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-Small%403x.png" />
|
||||
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.iOS, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.iOS" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Lottie.Forms.iOS\Lottie.Forms.iOS.csproj">
|
||||
<Project>{54014744-396b-4965-a996-296fcbed0ff4}</Project>
|
||||
<Name>Lottie.Forms.iOS</Name>
|
||||
<IsAppExtension>false</IsAppExtension>
|
||||
<IsWatchApp>false</IsWatchApp>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Example.Forms\Example.Forms.csproj">
|
||||
<Project>{BA40E6BD-F568-4301-A402-3846F176D49E}</Project>
|
||||
<Name>Example.Forms</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Lottie.Forms\Lottie.Forms.csproj">
|
||||
<Project>{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}</Project>
|
||||
<Name>Lottie.Forms</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Lottie.iOS\Lottie.iOS.csproj">
|
||||
<Project>{8F0CC2B2-88E2-459B-AC92-F3A74071707E}</Project>
|
||||
<Name>Lottie.iOS</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets" Condition="Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" />
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props" Condition="Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">iPhoneSimulator</Platform>
|
||||
<ProductVersion>8.0.30703</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{8E64CF15-8657-4540-BDE6-626E5827F221}</ProjectGuid>
|
||||
<ProjectTypeGuids>{FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||
<OutputType>Exe</OutputType>
|
||||
<RootNamespace>Example.Forms.iOS</RootNamespace>
|
||||
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
|
||||
<AssemblyName>Example.Forms.iOS</AssemblyName>
|
||||
<NuGetPackageImportStamp>
|
||||
</NuGetPackageImportStamp>
|
||||
<ReleaseVersion>2.5</ReleaseVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhoneSimulator' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<MtouchArch>i386, x86_64</MtouchArch>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhoneSimulator' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\iPhoneSimulator\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<MtouchLink>None</MtouchLink>
|
||||
<MtouchArch>i386, x86_64</MtouchArch>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|iPhone' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\iPhone\Debug</OutputPath>
|
||||
<DefineConstants>DEBUG</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<MtouchDebug>true</MtouchDebug>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|iPhone' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\iPhone\Release</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<ConsolePause>false</ConsolePause>
|
||||
<CodesignKey>iPhone Developer</CodesignKey>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Ad-Hoc|iPhone' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>True</Optimize>
|
||||
<OutputPath>bin\iPhone\Ad-Hoc</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>False</ConsolePause>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<BuildIpa>True</BuildIpa>
|
||||
<CodesignProvision>Automatic:AdHoc</CodesignProvision>
|
||||
<CodesignKey>iPhone Distribution</CodesignKey>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'AppStore|iPhone' ">
|
||||
<DebugType>none</DebugType>
|
||||
<Optimize>True</Optimize>
|
||||
<OutputPath>bin\iPhone\AppStore</OutputPath>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
<ConsolePause>False</ConsolePause>
|
||||
<MtouchArch>ARMv7, ARM64</MtouchArch>
|
||||
<CodesignProvision>Automatic:AppStore</CodesignProvision>
|
||||
<CodesignKey>iPhone Distribution</CodesignKey>
|
||||
<CodesignEntitlements>Entitlements.plist</CodesignEntitlements>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Main.cs" />
|
||||
<Compile Include="AppDelegate.cs" />
|
||||
<None Include="Entitlements.plist" />
|
||||
<None Include="Info.plist" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<ITunesArtwork Include="iTunesArtwork" />
|
||||
<ITunesArtwork Include="iTunesArtwork@2x" />
|
||||
<BundleResource Include="LottieLogo1.json" />
|
||||
<None Include="packages.config" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<BundleResource Include="Resources\Default-568h%402x.png" />
|
||||
<BundleResource Include="Resources\Default-Portrait.png" />
|
||||
<BundleResource Include="Resources\Default-Portrait%402x.png" />
|
||||
<BundleResource Include="Resources\Default.png" />
|
||||
<BundleResource Include="Resources\Default%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-60%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-60%403x.png" />
|
||||
<BundleResource Include="Resources\Icon-76.png" />
|
||||
<BundleResource Include="Resources\Icon-76%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-Small-40.png" />
|
||||
<BundleResource Include="Resources\Icon-Small-40%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-Small-40%403x.png" />
|
||||
<BundleResource Include="Resources\Icon-Small.png" />
|
||||
<BundleResource Include="Resources\Icon-Small%402x.png" />
|
||||
<BundleResource Include="Resources\Icon-Small%403x.png" />
|
||||
<InterfaceDefinition Include="Resources\LaunchScreen.storyboard" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="Xamarin.Forms.Core, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Platform.iOS, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.Forms.Xaml, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
|
||||
<HintPath>..\..\..\packages\Xamarin.Forms.2.5.0.280555\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Xamarin.iOS" />
|
||||
<Reference Include="Lottie.iOS">
|
||||
<HintPath>..\..\..\Lottie.iOS\bin\Debug\xamarin.ios10\Lottie.iOS.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Lottie.iOS">
|
||||
<HintPath>..\..\..\Lottie.iOS\bin\Debug\xamarin.ios10\Lottie.iOS.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\..\Lottie.Forms.iOS\Lottie.Forms.iOS.csproj">
|
||||
<Project>{54014744-396b-4965-a996-296fcbed0ff4}</Project>
|
||||
<Name>Lottie.Forms.iOS</Name>
|
||||
<IsAppExtension>false</IsAppExtension>
|
||||
<IsWatchApp>false</IsWatchApp>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\Example.Forms\Example.Forms.csproj">
|
||||
<Project>{BA40E6BD-F568-4301-A402-3846F176D49E}</Project>
|
||||
<Name>Example.Forms</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Lottie.Forms\Lottie.Forms.csproj">
|
||||
<Project>{F03D2DD6-BBDA-45B9-982E-4DCA43FCB8E1}</Project>
|
||||
<Name>Lottie.Forms</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\..\..\Lottie.iOS\Lottie.iOS.csproj">
|
||||
<Project>{8F0CC2B2-88E2-459B-AC92-F3A74071707E}</Project>
|
||||
<Name>Lottie.iOS</Name>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.CSharp.targets" />
|
||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
||||
<PropertyGroup>
|
||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
||||
</PropertyGroup>
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.props'))" />
|
||||
<Error Condition="!Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets'))" />
|
||||
</Target>
|
||||
<Import Project="..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets" Condition="Exists('..\..\..\packages\Xamarin.Forms.2.5.0.280555\build\netstandard1.0\Xamarin.Forms.targets')" />
|
||||
</Project>
|