mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Use latest platform and build tools to be able to build for Android 13. Pick-to: 6.5 Change-Id: I00bd9948f528d398d471e91de1d22954d786be29 Reviewed-by: Juha Vuolle <juha.vuolle@qt.io> Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
135 lines
6.3 KiB
PowerShell
135 lines
6.3 KiB
PowerShell
############################################################################
|
|
##
|
|
## Copyright (C) 2022 The Qt Company Ltd.
|
|
## Contact: https://www.qt.io/licensing/
|
|
##
|
|
## This file is part of the provisioning scripts of the Qt Toolkit.
|
|
##
|
|
## $QT_BEGIN_LICENSE:LGPL$
|
|
## Commercial License Usage
|
|
## Licensees holding valid commercial Qt licenses may use this file in
|
|
## accordance with the commercial license agreement provided with the
|
|
## Software or, alternatively, in accordance with the terms contained in
|
|
## a written agreement between you and The Qt Company. For licensing terms
|
|
## and conditions see https://www.qt.io/terms-conditions. For further
|
|
## information use the contact form at https://www.qt.io/contact-us.
|
|
##
|
|
## GNU Lesser General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU Lesser
|
|
## General Public License version 3 as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.LGPL3 included in the
|
|
## packaging of this file. Please review the following information to
|
|
## ensure the GNU Lesser General Public License version 3 requirements
|
|
## will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
|
|
##
|
|
## GNU General Public License Usage
|
|
## Alternatively, this file may be used under the terms of the GNU
|
|
## General Public License version 2.0 or (at your option) the GNU General
|
|
## Public license version 3 or any later version approved by the KDE Free
|
|
## Qt Foundation. The licenses are as published by the Free Software
|
|
## Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
|
|
## included in the packaging of this file. Please review the following
|
|
## information to ensure the GNU General Public License requirements will
|
|
## be met: https://www.gnu.org/licenses/gpl-2.0.html and
|
|
## https://www.gnu.org/licenses/gpl-3.0.html.
|
|
##
|
|
## $QT_END_LICENSE$
|
|
##
|
|
#############################################################################
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script installs Android sdk and ndk
|
|
# It also runs update for SDK API level 21, latest SDK tools, latest platform-tools and build-tools version $sdkBuildToolsVersion
|
|
# Android 16 is the minimum requirement for Qt 5.7 applications, but we need something more recent than that for building Qt itself.
|
|
# E.g The Bluetooth features that require Android 21 will disable themselves dynamically when running on an Android 16 device.
|
|
# That's why we need to use Andoid-21 API version in Qt 5.9.
|
|
|
|
# NDK
|
|
$ndkVersionLatest = "r25b"
|
|
$ndkVersionDefault = $ndkVersionLatest
|
|
$ndkChecksumLatest = "b2e9b5ab2e1434a65ffd85780891878cf5c6fd92"
|
|
$ndkChecksumDefault = $ndkChecksumLatest
|
|
$ndkCachedUrlLatest = "\\ci-files01-hki.intra.qt.io\provisioning\android\android-ndk-$ndkVersionLatest-windows.zip"
|
|
$ndkOfficialUrlLatest = "https://dl.google.com/android/repository/android-ndk-$ndkVersionLatest-windows.zip"
|
|
$ndkCachedUrlDefault = "\\ci-files01-hki.intra.qt.io\provisioning\android\android-ndk-$ndkVersionDefault-windows.zip"
|
|
$ndkOfficialUrlDefault = "https://dl.google.com/android/repository/android-ndk-$ndkVersionDefault-windows.zip"
|
|
$ndkFolderLatest = "c:\Utils\Android\android-ndk-$ndkVersionLatest"
|
|
$ndkFolderDefault = "c:\Utils\Android\android-ndk-$ndkVersionDefault"
|
|
$ndkZip = "c:\Windows\Temp\android_ndk.zip"
|
|
|
|
# SDK
|
|
$toolsVersion = "2.1"
|
|
$toolsFile = "commandlinetools-win-6609375_latest.zip"
|
|
$sdkApi = "ANDROID_API_VERSION"
|
|
$sdkApiLevel = "android-33"
|
|
$sdkBuildToolsVersion = "33.0.1"
|
|
$toolsCachedUrl= "\\ci-files01-hki.intra.qt.io\provisioning\android\$toolsFile"
|
|
$toolsOfficialUrl = "https://dl.google.com/android/repository/$toolsFile"
|
|
$toolsChecksum = "e2e19c2ff584efa87ef0cfdd1987f92881323208"
|
|
$toolsFolder = "c:\Utils\Android\cmdline-tools"
|
|
|
|
$sdkZip = "c:\Windows\Temp\$toolsFile"
|
|
|
|
function Install($1, $2, $3, $4) {
|
|
$cacheUrl = $1
|
|
$zip = $2
|
|
$checksum = $3
|
|
$offcialUrl = $4
|
|
|
|
Download $offcialUrl $cacheUrl $zip
|
|
Verify-Checksum $zip "$checksum"
|
|
Extract-7Zip $zip C:\Utils\Android
|
|
Remove $zip
|
|
}
|
|
|
|
Write-Host "Installing Android NDK $ndkVersionDefault"
|
|
Install $ndkCachedUrlDefault $ndkZip $ndkChecksumDefault $ndkOfficialUrlDefault
|
|
Set-EnvironmentVariable "ANDROID_NDK_ROOT_DEFAULT" $ndkFolderDefault
|
|
|
|
if (Test-Path -Path $ndkFolderLatest) {
|
|
Write-Host "Android Latest version is the same than Default. NDK installation done."
|
|
} else {
|
|
Write-Host "Installing Android NDK $nkdVersionLatest"
|
|
Install $ndkCachedUrlLatest $ndkZip $ndkChecksumLatest $ndkOfficialUrlLatest
|
|
Set-EnvironmentVariable "ANDROID_NDK_ROOT_LATEST" $ndkFolderLatest
|
|
}
|
|
|
|
Install $toolsCachedUrl $sdkZip $toolsChecksum $sdkOfficialUrl
|
|
New-Item -ItemType directory -Path $toolsFolder
|
|
Move-Item -Path C:\Utils\Android\tools -Destination $toolsFolder\
|
|
Set-EnvironmentVariable "ANDROID_SDK_ROOT" "C:\Utils\Android"
|
|
Set-EnvironmentVariable "ANDROID_API_VERSION" $sdkApiLevel
|
|
|
|
if (IsProxyEnabled) {
|
|
$proxy = Get-Proxy
|
|
Write-Host "Using proxy ($proxy) with sdkmanager"
|
|
# Remove "http://" from the beginning
|
|
$proxy = $proxy.Remove(0,7)
|
|
$proxyhost,$proxyport = $proxy.split(':')
|
|
$sdkmanager_args = "--no_https", "--proxy=http", "--proxy_host=`"$proxyhost`"", "--proxy_port=`"$proxyport`""
|
|
}
|
|
|
|
New-Item -ItemType Directory -Force -Path C:\Utils\Android\licenses
|
|
$licenseString = "`nd56f5187479451eabf01fb78af6dfcb131a6481e"
|
|
Out-File -FilePath C:\Utils\Android\licenses\android-sdk-license -Encoding utf8 -InputObject $licenseString
|
|
|
|
# Get a PATH where Java's path is defined from previous provisioning
|
|
[Environment]::SetEnvironmentVariable("PATH", [Environment]::GetEnvironmentVariable("PATH", "Machine"), "Process")
|
|
|
|
# Attempt to catch all errors of sdkmanager.bat, even when hidden behind a pipeline.
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
cd $toolsFolder\tools\bin\
|
|
$sdkmanager_args += "platforms;$sdkApiLevel", "platform-tools", "build-tools;$sdkBuildToolsVersion", "--sdk_root=C:\Utils\Android"
|
|
$command = 'for($i=0;$i -lt 6;$i++) { $response += "y`n"}; $response | .\sdkmanager.bat @sdkmanager_args | Out-Null'
|
|
Invoke-Expression $command
|
|
$command = 'for($i=0;$i -lt 6;$i++) { $response += "y`n"}; $response | .\sdkmanager.bat --licenses'
|
|
iex $command
|
|
cmd /c "dir C:\Utils\android"
|
|
|
|
Write-Output "Android SDK tools= $toolsVersion" >> ~/versions.txt
|
|
Write-Output "Android SDK Build Tools = $sdkBuildToolsVersion" >> ~/versions.txt
|
|
Write-Output "Android SDK Api Level = $sdkApiLevel" >> ~/versions.txt
|
|
Write-Output "Android NDK = $ndkVersionDefault" >> ~/versions.txt
|