File tree 4 files changed +9
-2
lines changed
4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 21
21
- 2021.3.32f1
22
22
- 2022.3.13f1
23
23
- 2023.1.19f1
24
+ - 2023.2.2f1
24
25
targetPlatform :
25
26
- StandaloneOSX # Build a MacOS executable
26
27
- iOS # Build an iOS executable
Original file line number Diff line number Diff line change 50
50
- 2021.3.32f1
51
51
- 2022.3.13f1
52
52
- 2023.1.19f1
53
+ - 2023.2.2f1
53
54
targetPlatform :
54
55
- StandaloneOSX # Build a macOS standalone (Intel 64-bit) with mono backend.
55
56
- StandaloneWindows64 # Build a Windows 64-bit standalone with mono backend.
Original file line number Diff line number Diff line change 21
21
- 2021.3.32f1
22
22
- 2022.3.13f1
23
23
- 2023.1.19f1
24
+ - 2023.2.2f1
24
25
targetPlatform :
25
26
- Android # Build an Android apk.
26
27
- StandaloneWindows64 # Build a Windows 64-bit standalone.
Original file line number Diff line number Diff line change @@ -19,8 +19,12 @@ if [[ "$BUILD_TARGET" == "Android" ]]; then
19
19
SDKMANAGER=$( find $ANDROID_HOME_DIRECTORY /cmdline-tools -name sdkmanager)
20
20
if [ -z " ${SDKMANAGER} " ]
21
21
then
22
- echo " No sdkmanager found"
23
- exit 1
22
+ SDKMANAGER=$( find $ANDROID_HOME_DIRECTORY /tools/bin -name sdkmanager)
23
+ if [ -z " ${SDKMANAGER} " ]
24
+ then
25
+ echo " No sdkmanager found"
26
+ exit 1
27
+ fi
24
28
fi
25
29
26
30
if [[ -n " $ANDROID_SDK_MANAGER_PARAMETERS " ]]; then
You can’t perform that action at this time.
0 commit comments