Skip to content
This repository has been archived by the owner on Dec 18, 2017. It is now read-only.

Commit

Permalink
Update to new support library
Browse files Browse the repository at this point in the history
  • Loading branch information
martijn00 committed Oct 22, 2016
1 parent c4751db commit baecabb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 189 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<AssemblyName>MvvmCross.Plugins.DownloadCache.Droid</AssemblyName>
<FileAlignment>512</FileAlignment>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v7.0</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>True</DebugSymbols>
Expand Down Expand Up @@ -72,9 +72,8 @@
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Xml" />
<Reference Include="Xamarin.Android.Support.v4, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Xamarin.Android.Support.v4.23.4.0.1\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll</HintPath>
<Private>True</Private>
<Reference Include="Xamarin.Android.Support.Compat">
<HintPath>..\..\packages\Xamarin.Android.Support.Compat.24.2.1\lib\MonoAndroid70\Xamarin.Android.Support.Compat.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="MvvmCross.Binding" version="4.3.0" targetFramework="monoandroid50" />
<package id="MvvmCross.Core" version="4.3.0" targetFramework="monoandroid50" />
<package id="MvvmCross.Platform" version="4.3.0" targetFramework="monoandroid50" />
<package id="Xamarin.Android.Support.v4" version="23.4.0.1" targetFramework="monoandroid50" />
<package id="MvvmCross.Binding" version="4.3.0" targetFramework="MonoAndroid50" />
<package id="MvvmCross.Core" version="4.3.0" targetFramework="MonoAndroid50" />
<package id="MvvmCross.Platform" version="4.3.0" targetFramework="MonoAndroid50" />
<package id="Xamarin.Android.Support.Compat" version="24.2.1" targetFramework="monoandroid70" />
</packages>

This file was deleted.

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion nuspec/MvvmCross.Plugin.DownloadCache.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ This package contains the 'DownloadCache' plugin for MvvmCross</description>
<dependency id="MvvmCross.Platform" version="4.3.0" />
<dependency id="MvvmCross.Binding" version="4.3.0" />
<dependency id="System.Collections.Immutable" version="1.2.0" />
<dependency id="Xamarin.Android.Support.v4" version="23.4.0" />
<dependency id="Xamarin.Android.Support.Compat" version="24.2.1" />
</group>
<group targetFramework="Xamarin.Mac20">
<dependency id="MvvmCross.Platform" version="4.3.0" />
Expand Down

2 comments on commit baecabb

@LRP-sgravel
Copy link

@LRP-sgravel LRP-sgravel commented on baecabb Nov 15, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This dependency change causes issues with Xamarin Forms. The fact it requires version 24 of an Android library causes a duplicate JAR with version 23 that Forms requires. Why did you update that dependency?

error : java.lang.IllegalArgumentException: already added :  Landroid/support/v4/accessibilityservice/AccessibilityServiceInfoCompat;

@LRP-sgravel
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See Issue #147

Please sign in to comment.