-
Notifications
You must be signed in to change notification settings - Fork 655
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update fmd and spdlog third party modules to a recent combination that compiles on Android Should also fix #912 * Update validation layers for Android builds to 1.3.296 * Updated Android build files to work latest Android tooling * Replace ALooper_pollAll with ALooper_pollOnce Use of ALooper_pollAll has been deprecated on current Android versions * Remove package from Android manifest This has been deprecated with recent Android version Package name now comes from gradle setup * Update Android build instructions * Update gradle to 8.9 * Change gradle distribution url * Fix VVL download script Had a wrong "release only"dependency * adb spelling It's lower case on all platforms, upper case only works properly on windows * Trying to fix those annoying quality checks * Update Java version for Android CI builds * Android JDK setup * Revert adb name change * bump versions for Android and fix a few things. * Github CI has NDK 27 installed but not yet 28. It doesn't make a difference to Vulkan Samples, so downgrading for CI purposes is a good idea. * Update the JDK that github is using. * Update wording on required Android Studio version. --------- Co-authored-by: swinston <[email protected]>
- Loading branch information
1 parent
3792764
commit 04f03b3
Showing
14 changed files
with
90 additions
and
66 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -146,11 +146,11 @@ jobs: | |
with: | ||
submodules: "recursive" | ||
|
||
- name: set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
- name: set up JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: "11" | ||
distribution: "temurin" | ||
java-version: "21" | ||
distribution: "zulu" | ||
cache: gradle | ||
- name: ccache | ||
uses: hendrikmuhs/[email protected] | ||
|
This file contains 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 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 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 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,8 +1,8 @@ | ||
plugins { | ||
id 'com.android.application' version '7.4.2' apply false | ||
id 'com.android.library' version '7.4.2' apply false | ||
id 'com.android.application' version '8.7.2' apply false | ||
id 'com.android.library' version '8.7.2' apply false | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
tasks.register('clean', Delete) { | ||
delete rootProject.layout.buildDirectory | ||
} |
This file contains 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
Binary file not shown.
This file contains 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,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains 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 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 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 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