Skip to content
This repository was archived by the owner on Jun 20, 2023. It is now read-only.

Commit 80c792d

Browse files
committed
Bump for v25.0.1
1 parent 4dc50ab commit 80c792d

File tree

2 files changed

+16
-15
lines changed

2 files changed

+16
-15
lines changed

SupportConsts.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
static class __SupportConsts {
2-
public const string Url = "https://dl-ssl.google.com/android/repository/android_m2repository_r39.zip";
2+
public const string Url = "https://dl-ssl.google.com/android/repository/android_m2repository_r40.zip";
33

44
// We get the Sha1 hash from google's xml feed: https://dl.google.com/android/repository/addon.xml
55
// Search for the <sdk:checksum type="sha1">..</..> tag for the archive name android_m2repository_rXX.zip
6-
public const string Sha1sum = "89ad37d67a1018c42be36933cec3d7712141d42c";
7-
public const string Version = "25.0.0";
8-
public const string AarVersion = "25.0.0";
6+
public const string Sha1sum = "782e7233f18c890463e8602571d304e680ce354c";
7+
public const string Version = "25.0.1";
8+
public const string AarVersion = "25.0.1";
99
public const string PackageName = "Xamarin.Android.Support";
1010
}

build.cake

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111

1212
var TARGET = Argument ("t", Argument ("target", "Default"));
1313

14-
var NUGET_VERSION = "25.0.0-rc1";
15-
var COMPONENT_VERSION = "25.0.0.0";
16-
var AAR_VERSION = "25.0.0";
14+
var NUGET_VERSION = "25.0.1-rc1";
15+
var COMPONENT_VERSION = "25.0.1.0";
16+
var AAR_VERSION = "25.0.1";
1717

1818
// FROM: https://dl.google.com/android/repository/addon.xml
1919
// FROM: https://dl.google.com/android/repository/addon2-1.xml
20-
var M2_REPOSITORY_URL = "https://dl-ssl.google.com/android/repository/android_m2repository_r39.zip";
21-
var M2_REPOSITORY_SHA1 = "89ad37d67a1018c42be36933cec3d7712141d42c";
20+
var M2_REPOSITORY_URL = "https://dl-ssl.google.com/android/repository/android_m2repository_r40.zip";
21+
var M2_REPOSITORY_SHA1 = "782e7233f18c890463e8602571d304e680ce354c";
2222
var BUILD_TOOLS_URL = "https://dl-ssl.google.com/android/repository/build-tools_r25-macosx.zip";
23-
var DOCS_URL = "https://dl-ssl.google.com/android/repository/docs-23_r01.zip";
23+
//var DOCS_URL = "https://dl-ssl.google.com/android/repository/docs-23_r01.zip";
2424
var ANDROID_SDK_VERSION = IsRunningOnWindows () ? "v7.0" : "android-24";
2525
var RENDERSCRIPT_FOLDER = "android-7.1.1";
2626

@@ -229,11 +229,12 @@ Task ("externals")
229229
MoveFile (implFile, path + aarDir + "/libs/internal_impl.jar");
230230
}
231231

232-
// Get android docs
233-
if (!FileExists (path + "docs.zip")) {
234-
DownloadFile (DOCS_URL, path + "docs.zip");
235-
Unzip (path + "docs.zip", path);
236-
}
232+
// We get docs a different way now
233+
// // Get android docs
234+
// if (!FileExists (path + "docs.zip")) {
235+
// DownloadFile (DOCS_URL, path + "docs.zip");
236+
// Unzip (path + "docs.zip", path);
237+
// }
237238

238239
// Get Renderscript
239240
if (!FileExists (path + "buildtools.zip"))

0 commit comments

Comments
 (0)