-
-
Notifications
You must be signed in to change notification settings - Fork 53
Fix warnings in UE 5.7 caused by deprecated API usage #1152
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
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
2c453cf
Add UE 5.7 to docker image build scripts
tustanivsky 9f3c967
Add UE 5.7 Android docker file
tustanivsky 0d06e69
Add UE 5.7 to Android docker image build script
tustanivsky 5c88a27
Fix comments
tustanivsky 7034040
Remove redundant step for Windows docker image build
tustanivsky 77916cb
Revert "Remove redundant step for Windows docker image build"
tustanivsky ed48bfb
Try stop docker service on Windows before setup
tustanivsky 30ad2b0
Disable client/server config for Linux
tustanivsky 9579ebd
Try newer ue4-docker for WIndows
tustanivsky 12450e4
Add 5.7 for Linux and Android to CI
tustanivsky 1fbcce8
Fix deprecated API usage for UE 5.7
tustanivsky 911ad9b
Update changelog
tustanivsky d9f3563
Add UE 5.7 to supported engine versions list
tustanivsky a70d5ab
Revert Windows docker image build steps
tustanivsky 6ad39d8
Clean up
tustanivsky fa308c2
Fix paths permissions
tustanivsky 35aaf12
Fix
tustanivsky e24e795
Fix
tustanivsky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -15,6 +15,7 @@ on: | |
| - 5.4 | ||
| - 5.5 | ||
| - 5.6 | ||
| - 5.7 | ||
| ue_repo: | ||
| description: Set Unreal Engine repository | ||
| required: true | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,6 +16,7 @@ on: | |
| - 5.4 | ||
| - 5.5 | ||
| - 5.6 | ||
| - 5.7 | ||
| ue_repo: | ||
| description: Set Unreal Engine repository | ||
| required: true | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| ARG NAMESPACE | ||
| ARG PREREQS_TAG | ||
| FROM ${NAMESPACE}/ue4-base-build-prerequisites:${PREREQS_TAG} | ||
|
|
||
| # Switch to root to install additional packages | ||
| USER root | ||
|
|
||
| # Install Java 21 (required for UE 5.7 Android builds) | ||
| RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
| openjdk-21-jdk \ | ||
| wget \ | ||
| unzip && \ | ||
| rm -rf /var/lib/apt/lists/* | ||
|
|
||
| # Set up environment variables for Android SDK/NDK | ||
| # Unreal Engine checks multiple environment variable names, so we set all of them | ||
| ENV JAVA_HOME=/usr/lib/jvm/java-21-openjdk-amd64 | ||
| ENV ANDROID_HOME=/home/ue4/android-sdk | ||
| ENV ANDROID_SDK_ROOT=/home/ue4/android-sdk | ||
| ENV ANDROID_NDK=/home/ue4/android-sdk/ndk/27.2.12479018 | ||
| ENV ANDROID_NDK_ROOT=/home/ue4/android-sdk/ndk/27.2.12479018 | ||
| ENV NDKROOT=/home/ue4/android-sdk/ndk/27.2.12479018 | ||
| ENV NDK_ROOT=/home/ue4/android-sdk/ndk/27.2.12479018 | ||
| ENV PATH=${PATH}:${ANDROID_HOME}/cmdline-tools/latest/bin:${ANDROID_HOME}/platform-tools | ||
|
|
||
| # Switch to ue4 user for SDK installation (to ensure correct permissions) | ||
| USER ue4 | ||
|
|
||
| # Download and install Android command-line tools | ||
| RUN mkdir -p ${ANDROID_HOME}/cmdline-tools && \ | ||
| cd ${ANDROID_HOME}/cmdline-tools && \ | ||
| wget -q https://dl.google.com/android/repository/commandlinetools-linux-9477386_latest.zip && \ | ||
| unzip -q commandlinetools-linux-9477386_latest.zip && \ | ||
| rm commandlinetools-linux-9477386_latest.zip && \ | ||
| mv cmdline-tools latest | ||
|
|
||
| # Accept licenses and install Android SDK components | ||
| # UE 5.7 requires: API Level 34, Build Tools 35.0.1, NDK r27c (27.2.12479018) | ||
| RUN yes | ${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager --licenses && \ | ||
| ${ANDROID_HOME}/cmdline-tools/latest/bin/sdkmanager \ | ||
| "platform-tools" \ | ||
| "platforms;android-34" \ | ||
| "build-tools;35.0.1" \ | ||
| "ndk;27.2.12479018" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| 5.7 | ||
| 5.6 | ||
| 5.5 | ||
| 5.4 | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.