Skip to content

Commit

Permalink
Android: set build tools to 33.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ericoporto committed Aug 30, 2023
1 parent 2cae0f3 commit fee152c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Android/agsplayer/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

android {
compileSdkVersion 33
buildToolsVersion "33.0.1"
buildToolsVersion "33.0.2"
// the android plugin has a bug that requires specifying ndkVersion in every module, even when unused
// this version should match what is installed in the CI
ndkVersion '25.2.9519653'
Expand Down
2 changes: 1 addition & 1 deletion Android/library/runtime/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ else {

android {
compileSdkVersion 33
buildToolsVersion "33.0.1"
buildToolsVersion "33.0.2"
ndkVersion '25.2.9519653'

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion Android/mygame/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ projectProperties.load(new FileInputStream(projectPropertiesFile))

android {
compileSdkVersion = 33
buildToolsVersion = '33.0.1'
buildToolsVersion = '33.0.2'
def appIdParts = projectProperties['applicationId'].split(/\./)
def nameCount = appIdParts.size()
def appIdLastPart = appIdParts[nameCount-1]
Expand Down
2 changes: 1 addition & 1 deletion Editor/AGS.Editor/BuildTargets/BuildTargetAndroid.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ private void InstallSdkToolsIfNeeded()
{
string prjDir = GetAndroidProjectInCompiledDir();

string packages = "\"build-tools;33.0.1\" \"ndk;25.2.9519653\" \"platforms;android-33\"";
string packages = "\"build-tools;33.0.2\" \"ndk;25.2.9519653\" \"platforms;android-33\"";

AndroidUtilities.RunSdkManager(packages, prjDir);
}
Expand Down
2 changes: 1 addition & 1 deletion ci/android/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ghcr.io/cirruslabs/android-sdk:33-ndk
# CirrusCI Android NDK image uses Ubuntu 22.04
# ANDROID_NDK_VERSION=25.2.9519653
# ANDROID_BUILD_TOOLS_VERSION=33.0.1
# ANDROID_BUILD_TOOLS_VERSION=33.0.2

ARG APT_CONF_LOCAL=99local
RUN mkdir -p /etc/apt/apt.conf.d && \
Expand Down

0 comments on commit fee152c

Please sign in to comment.