Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Coil2.0.0 [DEPENDS ON CoilBase2.0.0] #1372

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Android/Coil/build.cake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
var TARGET = Argument ("t", Argument ("target", "ci"));

var NUGET_VERSION = "1.4.0";
var NUGET_VERSION = "2.0.0";

var AAR_VERSION = "1.4.0";
var AAR_VERSION = "2.0.0";
var AAR_URL = $"https://repo1.maven.org/maven2/io/coil-kt/coil/{AAR_VERSION}/coil-{AAR_VERSION}.aar";

Task ("externals")
Expand Down
2 changes: 1 addition & 1 deletion Android/Coil/cgmanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"Maven": {
"ArtifactId": "coil",
"GroupId": "io.coil-kt",
"Version": "1.4.0",
"Version": "2.0.0",
"NuGetId": "Xamarin.Io.CoilKt.Coil"
}
}
Expand Down
4 changes: 2 additions & 2 deletions Android/Coil/source/Coil/Coil.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>coil xamarin android monodroid</PackageTags>
<PackageVersion>1.4.0</PackageVersion>
<PackageVersion>2.0.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Xamarin.Io.CoilKt.CoilBase" Version="1.4.0" />
<PackageReference Include="Xamarin.Io.CoilKt.CoilBase" Version="2.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Android/CoilBase/build.cake
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
var TARGET = Argument ("t", Argument ("target", "ci"));

var NUGET_VERSION = "1.4.0";
var NUGET_VERSION = "2.0.0";

var AAR_VERSION = "1.4.0";
var AAR_VERSION = "2.0.0";
var AAR_URL = $"https://repo1.maven.org/maven2/io/coil-kt/coil-base/{AAR_VERSION}/coil-base-{AAR_VERSION}.aar";

Task ("externals")
Expand Down
2 changes: 1 addition & 1 deletion Android/CoilBase/cgmanifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"Maven": {
"ArtifactId": "coil-base",
"GroupId": "io.coil-kt",
"Version": "1.4.0",
"Version": "2.0.0",
"NuGetId": "Xamarin.Io.CoilKt.CoilBase"
}
}
Expand Down
21 changes: 10 additions & 11 deletions Android/CoilBase/source/CoilBase/CoilBase.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,20 @@
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageTags>coil base xamarin android monodroid</PackageTags>
<PackageVersion>1.4.0</PackageVersion>
<PackageVersion>2.0.0</PackageVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Common.Java8" Version="2.3.1.1" />
<PackageReference Include="Square.OkHttp3" Version="4.9.1" />
<PackageReference Include="Square.OkIO" Version="2.10.0" />
<PackageReference Include="Xamarin.Kotlin.StdLib" Version="1.5.31" />
<PackageReference Include="Xamarin.KotlinX.Coroutines.Android" Version="1.5.2" />
<PackageReference Include="Xamarin.AndroidX.Annotation" Version="1.2.0.1" />
<PackageReference Include="Xamarin.AndroidX.AppCompat.AppCompatResources" Version="1.3.1.1" />
<PackageReference Include="Xamarin.AndroidX.Collection.Ktx" Version="1.1.0.1" />
<PackageReference Include="Xamarin.AndroidX.Core.Core.Ktx" Version="1.6.0.1" />
<PackageReference Include="Square.OkHttp3" Version="4.9.3" />
<PackageReference Include="Square.OkIO" Version="3.0.0" />
<PackageReference Include="Xamarin.Kotlin.StdLib" Version="1.6.10" />
<PackageReference Include="Xamarin.KotlinX.Coroutines.Android" Version="1.6.1" />
<PackageReference Include="Xamarin.AndroidX.Annotation" Version="1.3.0.3" />
<PackageReference Include="Xamarin.AndroidX.AppCompat.AppCompatResources" Version="1.4.1.1" />
<PackageReference Include="Xamarin.AndroidX.Collection.Ktx" Version="1.2.0.3" />
<PackageReference Include="Xamarin.AndroidX.Core.Core.Ktx" Version="1.7.0.2" />
<PackageReference Include="Xamarin.AndroidX.ExifInterface" Version="1.3.3" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Runtime" Version="2.3.1.2" />
<PackageReference Include="Xamarin.AndroidX.Lifecycle.Runtime" Version="2.4.1.1" />
</ItemGroup>

<ItemGroup>
Expand Down