Skip to content
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

Android build asks me for a licence.plist file #4

Open
BrunoDG opened this issue Sep 19, 2024 · 16 comments
Open

Android build asks me for a licence.plist file #4

BrunoDG opened this issue Sep 19, 2024 · 16 comments
Labels
question Further information is requested

Comments

@BrunoDG
Copy link

BrunoDG commented Sep 19, 2024

Hey guys, I've been following a tutorial on https://gamemaker.io/en/blog/bs-tech-automate-builds to create automatic builds on Android, that should be working. But when I try to run, the following message pops up on my igor-setup workflow's step:

Error

Run bscotch/igor-setup@v1
Inferring runtime from target-yyp: /home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp
Using local settings file: /home/runner/work/build-test/build-test/local_settings.json
Release build
System.Net.WebException: The remote server returned an error: (404) Not Found.
   at System.Net.HttpWebRequest.GetResponse()
   at System.Net.WebClient.GetWebResponse(WebRequest request)
   at System.Net.WebClient.DownloadBits(WebRequest request, Stream writeStream)
   at System.Net.WebClient.UploadBits(WebRequest request, Stream readStream, Byte[] buffer, Int32 chunkSize, Byte[] header, Byte[] footer)
   at System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
   at System.Net.WebClient.UploadString(Uri address, String method, String data)
   at System.Net.WebClient.UploadString(String address, String method, String data)
   at Igor.RuntimeBuilder.FetchLicense()
Igor complete.
Error: ENOENT: no such file or directory, open '/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/tempUser/licence.plist'

I tried looking at other places like forums and such, but no one seems to have that issue.

How to reproduce the following error

Use the following job:

  build-android:
    runs-on: ubuntu-latest
    steps:
      # Check out the repository with the GameMaker project
      - uses: actions/checkout@v4
        with:
          lfs: true
      # This step finds the yyp file in the repository and saves the path to an output
      - id: find_yyp
        name: Find the yyp file
        run: |
          yyp=$(find ${{ github.workspace }} -name "*.yyp")
          echo "YYP file found at: $yyp"
          echo "yyp-path=$yyp" >> $GITHUB_OUTPUT
      #region Android setup
      - name: Create the keystore file from secrets
        id: write_file
        uses: timheuer/[email protected]
        with:
          fileName: 'myTemporaryFile.keystore'
          encodedString: ${{ secrets.KEYSTORE }}
      - name: Create the local-settings-override-file for igor-setup
        run: |
          echo '{
          "machine.Platform Settings.Android.Keystore.filename": "${{ steps.write_file.outputs.filePath }}", 
          "machine.Platform Settings.Android.Keystore.keystore_password": "${{ secrets.SIGNING_KEY_PASSWORD }}", 
          "machine.Platform Settings.Android.Keystore.keystore_alias_password": "${{ secrets.SIGNING_STORE_PASSWORD }}", 
          "machine.Platform Settings.Android.Keystore.alias": "${{ secrets.SIGNING_KEY_ALIAS }}"
          }' \
          > local_settings.json
      - name: Set up ffmpeg # This step may be removed when https://github.com/YoYoGames/GameMaker-Bugs/issues/4977 is fixed
        uses: FedericoCarboni/setup-ffmpeg@v3
        with:
          ffmpeg-version: '6.1.0'
      - name: Set Up Android SDK platform-tools # The default Android SDK does not include platform-tools and its component `adb`, which is required by Igor for the Android build
        run: |
          ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager \
          --sdk_root=$ANDROID_SDK_ROOT \
          "platform-tools"
      #endregion
      # This step sets up the GameMaker build CLI tool Igor https://github.com/bscotch/igor-setup
      - name: use Igor Setup
        uses: bscotch/igor-setup@v1
        id: igor
        with:
          local-settings-override-file: ${{ github.workspace }}/local_settings.json
          target-yyp: ${{ steps.find_yyp.outputs.yyp-path }}
          access-key: ${{ secrets.GSA_ACCESS_KEY }} 

      # This step uses Igor to build the GameMaker project https://github.com/bscotch/igor-build
      - name: use Igor build
        uses: bscotch/igor-build@v1
        id: build
        with:
          yyp-path: ${{ steps.find_yyp.outputs.yyp-path }}
          user-dir: ${{ steps.igor.outputs.user-dir }}
      - name: upload build as artifact
        uses: actions/upload-artifact@v4
        with:
          name: android-build-${{ needs.define-vars.outputs.VRS }}.zip
          path: ${{ steps.build.outputs.out-dir }}
          retention-days: 1

At use Igor Setup step, it gives the licence.plist error. But there's no definition to create that file or folder. Although on a Windows instance it runs properly. Is there a bug with the Ubuntu folder?

@shichen85
Copy link
Member

shichen85 commented Sep 19, 2024

The 404 error indicates that when running igor runtime FetchLicense, Igor could not fetch the license from GameMaker's server. It could mean that your access key does not have license to the Android export or the Ubuntu Igor. If you have a Ubuntu machine, you can try running igor runtime FetchLicense there with your access key to see if it can successfully generate the license file. If not, you will want to sort that out with the GameMaker customer support.

For igor runtime FetchLicense, see https://manual.gamemaker.io/monthly/en/#t=Settings%2FBuilding_via_Command_Line.htm

@shichen85 shichen85 added the question Further information is requested label Sep 19, 2024
@BrunoDG
Copy link
Author

BrunoDG commented Sep 20, 2024

I think I solved this issue. Just redid the workflow and it worked well. Didn't understand yet what happened, but ok.

Now, I'm with another issue, but I don't know if it's correct to include it in here or if should I open another issue as question:

I've included the Temurin JDK as version 21, but it keeps telling me that my build.gradle is at version 11. The problem is that, I've included the new JAVA_HOME variable to redirect to version 21, although it keeps telling me that the version hasn't changed. How can I change the build.gradle file since it's not included on my gamemaker config?

@shichen85
Copy link
Member

I think I solved this issue. Just redid the workflow and it worked well. Didn't understand yet what happened, but ok.

Now, I'm with another issue, but I don't know if it's correct to include it in here or if should I open another issue as question:

I've included the Temurin JDK as version 21, but it keeps telling me that my build.gradle is at version 11. The problem is that, I've included the new JAVA_HOME variable to redirect to version 21, although it keeps telling me that the version hasn't changed. How can I change the build.gradle file since it's not included on my gamemaker config?

  1. Are you using a self-hosted runner or the GitHub hosted runner?
  2. GameMaker reads the JDK location from /home/runner/work/build-test/build-test/local_settings.json's machine.Platform Settings.Android.Paths.jdk_location key, which you can set in your Create the local-settings-override-file for igor-setup step. I don't see you setting that in your setup, so that might be the problem. If you don't set that, GameMaker will use the default value defined in "runtimes\runtime-2024.1000.0.648\bin\platform_setting_defaults.json"

@BrunoDG
Copy link
Author

BrunoDG commented Oct 7, 2024

Worked properly, thanks.

Another question is: Do I need to reference the Keystore base64 inside the local_settings, so it can change the default one for my new one? This is kinda weird, because the key my client gave me generated properly, but neither mine nor the client key are working on my action.

@shichen85
Copy link
Member

Worked properly, thanks.

Another question is: Do I need to reference the Keystore base64 inside the local_settings, so it can change the default one for my new one? This is kinda weird, because the key my client gave me generated properly, but neither mine nor the client key are working on my action.

GameMaker encrypts the value of "machine.Platform Settings.Android.Keystore.keystore_password" and "machine.Platform Settings.Android.Keystore.keystore_alias_password" based on the GameMaker account that is signed-in to the IDE. You can see this behavior when you sign in to the GameMaker IDE with two different accounts and set up the Android Platform preferences with the same keystore credentials. When you open the local_settings.json files of both accounts, the alue of "machine.Platform Settings.Android.Keystore.keystore_password" and "machine.Platform Settings.Android.Keystore.keystore_alias_password" will appear different.

What this means is that:

  1. You should make sure you are using the same GameMaker account to generate the Igor access-key and sign in to your GameMaker IDE
  2. Configure the Keystore File, its alias, and password as mentioned in the GameMaker guide Setting Up for Android.
  3. Locate the local_settings.json file, which stores your IDE preferences and the Android SDK configuration. Copy the entries "machine.Platform Settings.Android.Keystore.keystore_password" and "machine.Platform Settings.Android.Keystore.alias"'s values and store them as GitHub secrets.

@BrunoDG
Copy link
Author

BrunoDG commented Oct 11, 2024

GameMaker encrypts the value of "machine.Platform Settings.Android.Keystore.keystore_password" and "machine.Platform Settings.Android.Keystore.keystore_alias_password" based on the GameMaker account that is signed-in to the IDE. You can see this behavior when you sign in to the GameMaker IDE with two different accounts and set up the Android Platform preferences with the same keystore credentials. When you open the local_settings.json files of both accounts, the alue of "machine.Platform Settings.Android.Keystore.keystore_password" and "machine.Platform Settings.Android.Keystore.keystore_alias_password" will appear different.

What this means is that:

  1. You should make sure you are using the same GameMaker account to generate the Igor access-key and sign in to your GameMaker IDE
  2. Configure the Keystore File, its alias, and password as mentioned in the GameMaker guide Setting Up for Android.
  3. Locate the local_settings.json file, which stores your IDE preferences and the Android SDK configuration. Copy the entries "machine.Platform Settings.Android.Keystore.keystore_password" and "machine.Platform Settings.Android.Keystore.alias"'s values and store them as GitHub secrets.

I tried doing it, I was using my username and password before, but it wasn't logging in. This time, I tried sing the same user that is at GH Actions' account to run the setup and build. but keeps giving me the same error as before:

AndroidEnvironment
Manifest Permissions
Manifest Attributes
Manifest Metadata
Check GML functions
Licensing
System.FormatException: The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters.
at System.Convert.FromBase64CharPtr(Char* inputPtr, Int32 inputLength)
at System.Convert.FromBase64String(String s)
at Igor.Utils.FromBase64(String _message)
at Igor.Utils.Decrypt(String _encryptedString, String _key)
at Igor.AndroidUtils.GetKeystorePassword(String _target)
at Igor.AndroidBuilder.CreateTargetExe()
at Igor.AndroidBuilder.Package()
at System.RuntimeMethodHandle.InvokeMethod(Object target, Void** arguments, Signature sig, Boolean isConstructor)
at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)

When I remove the references to the Username and Alias for the account, it proceeds with the building process properly, until it hits this error after starting the gradle.build process:

FAILURE: Build failed with an exception.
* Where:
Build file '/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/build.gradle' line: 29
* What went wrong:
A problem occurred evaluating project ':com.creativehand.tinywitch'.
> path may not be null or empty string. path=''

Since there's nowhere to include said path on anywhere, nor the instructions and I don't have access to the gradle.build file of this project, I'm just responsible for creating the workflow itself, I can't seem to find where should I include said path. I'm starting to feel lost.

@shichen85
Copy link
Member

Worked properly, thanks.

Another question is: Do I need to reference the Keystore base64 inside the local_settings, so it can change the default one for my new one? This is kinda weird, because the key my client gave me generated properly, but neither mine nor the client key are working on my action.

Let's walk this back a little bit to make sure I understand your situation. When you say "refercen the Kystore base64 inside the local_settings", what do you mean?

@BrunoDG
Copy link
Author

BrunoDG commented Oct 16, 2024

Worked properly, thanks.
Another question is: Do I need to reference the Keystore base64 inside the local_settings, so it can change the default one for my new one? This is kinda weird, because the key my client gave me generated properly, but neither mine nor the client key are working on my action.

Let's walk this back a little bit to make sure I understand your situation. When you say "refercen the Kystore base64 inside the local_settings", what do you mean?

When I said "Reference the Keystore_base64 inside the local_settings", I meant converting the keystore file to a base64 string and using it as my keystore file, included the local_settings file. But the problem is: either while I'm using my keystore file or my client's keystore file, it keeps giving me the same error, as it is not a valid base64 file.

@shichen85
Copy link
Member

I see. If you look at the error stack you got, it mentioned:

at Igor.AndroidUtils.GetKeystorePassword(String _target)

So it is saying that "machine.Platform Settings.Android.Keystore.keystore_password": "${{ secrets.SIGNING_KEY_PASSWORD }}", is not a valid Base-64 string. Can you confirm that you copied the value from your local_settings.json file at %AppData%\GameMakerStudio2\<your_account_name>\ or ~/Library/Application Support/GameMakerStudio2/<your_account_name>/?

@BrunoDG
Copy link
Author

BrunoDG commented Oct 22, 2024

Ok, it did work. It was just because I was including the entire password, but not converting it as a base64 string. Weird, because it wasn't telling me to do so in the GameMaker guide Setting Up for Android.

Anyways, it worked at last. Also, it now gave me another error, that's telling me that "> path may not be null or empty string. path='' ". But where do I include that path variable? I don't see it anywhere to include that on my actions.

@shichen85
Copy link
Member

Ok, it did work. It was just because I was including the entire password, but not converting it as a base64 string. Weird, because it wasn't telling me to do so in the GameMaker guide Setting Up for Android.

Anyways, it worked at last. Also, it now gave me another error, that's telling me that "> path may not be null or empty string. path='' ". But where do I include that path variable? I don't see it anywhere to include that on my actions.

I think that error is suggesting that it could not find the java keystore file, as this stackoverflow thread showed. Can you post your updated workflow file here?

@BrunoDG
Copy link
Author

BrunoDG commented Oct 23, 2024

Ok, it did work. It was just because I was including the entire password, but not converting it as a base64 string. Weird, because it wasn't telling me to do so in the GameMaker guide Setting Up for Android.
Anyways, it worked at last. Also, it now gave me another error, that's telling me that "> path may not be null or empty string. path='' ". But where do I include that path variable? I don't see it anywhere to include that on my actions.

I think that error is suggesting that it could not find the java keystore file, as this stackoverflow thread showed. Can you post your updated workflow file here?

Of course! Here it is:

name: Continuous Integration for Android Export
# Controls when the workflow will run
on:
  # Triggers the workflow on push or pull request events but only for the "master" branch
  push:
    branches: [ "master" ]
  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:
  # This line allows you to run the workflow from another workflow
  # workflow_call: 
    
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
  define-vars:
    runs-on: windows-latest

    steps:
      - uses: actions/checkout@v4
        with:
          lfs: true
      
    # Reads JSON file and converts to ENV variables
      - id: read_json
        name: Reads JSON
        uses: GuillaumeFalourd/convert-json-to-env@v1
        with:
          json_file: ./metadata.json


  build-mobile:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest
    needs: define-vars

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
      - uses: actions/checkout@v4
        with:
          lfs: true

      # This step finds the yyp file in the repository and saves the path to an output
      - id: find_yyp
        name: Find the yyp file
        run: |
          yyp=$(find ${{ github.workspace }} -name "*.yyp")
          echo "YYP file found at: $yyp"
          echo "yyp-path=$yyp" >> $GITHUB_OUTPUT

      #region Android setup
      #- name: Create the keystore file from secrets
      #  id: write_file
      #  uses: timheuer/[email protected]
      #  with:
      #    fileName: 'myTemporaryFile.keystore'
      #    encodedString: ${{ secrets.KEYSTORE_BASE64 }}

      - name: Configuring Java version 21
        uses: actions/setup-java@v4
        with:
          distribution: 'temurin' # See 'Supported distributions' for available options
          java-version: '21'

      - name: Create the local-settings-override-file for igor-setup
       "machine.Platform Settings.Android.Keystore.filename": "${{ steps.write_file.outputs.filePath }}", 
       "machine.Platform Settings.Android.Keystore.keystore_password": "${{ secrets.KEYSTORE_PASSWORD }}", 
       "machine.Platform Settings.Android.Keystore.keystore_alias_password": "${{ secrets.KEYSTORE_PASSWORD }}", 
       "machine.Platform Settings.Android.Keystore.alias": "${{ secrets.KEYSTORE_USERNAME }}",
       # Those four lines were commented before, now they do work.
        run: |
          echo '{
          "machine.Platform Settings.Android.Paths.jdk_location": "${{ env.JAVA_HOME }}"
          }' \
          > local_settings.json
      
      - name: Set up ffmpeg # This step may be removed when https://github.com/YoYoGames/GameMaker-Bugs/issues/4977 is fixed
        uses: FedericoCarboni/setup-ffmpeg@v3
        with:
          ffmpeg-version: '6.1.0'

      - name: Set Up Android SDK platform-tools # The default Android SDK does not include platform-tools and its component `adb`, which is required by Igor for the Android build
        run: |
          ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager \
          --sdk_root=$ANDROID_SDK_ROOT \
          "platform-tools"
      #endregion

      # This step sets up the GameMaker build CLI tool Igor https://github.com/bscotch/igor-setup
      - name: use Igor Setup
        uses: bscotch/igor-setup@v1
        id: igor
        with:
          local-settings-override-file: ${{ github.workspace }}/local_settings.json
          target-yyp: ${{ steps.find_yyp.outputs.yyp-path }}
          access-key: ${{ secrets.ACCESS_KEY }}

      # This step uses Igor to build the GameMaker project https://github.com/bscotch/igor-build
      - name: use Igor build
        uses: bscotch/igor-build@v1
        id: build
        with:
          yyp-path: ${{ steps.find_yyp.outputs.yyp-path }}
          user-dir: ${{ steps.igor.outputs.user-dir }}
      
      # This step uploads the build to the artifacts, so you can download it from the GitHub Actions 
      # page or use it in another workflow
      - name: upload-build
        uses: actions/upload-artifact@v4
        with:
          name: android-build-${{ github.env.version }} # Built game name, change for your game.
          path: ${{ steps.build.outputs.out-dir }}
          retention-days: 1 
          # Longer retention days can incur additional charges. 
          # See https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts

This was my mistake, as the keystore and password files are commented. Now I've just uncommented them, tested at my workflow and I think it works properly. I have to retry though, since it's a password issue now. It tells me that my password is wrong for my key. Now I think I can handle the error. I'll post the update here when it works! :)

@BrunoDG
Copy link
Author

BrunoDG commented Nov 1, 2024

Is it normal that, even when including the correct password under the base64 import of the same project, it keeps telling me that the password for the keystore file is incorrect?

@shichen85
Copy link
Member

Is it normal that, even when including the correct password under the base64 import of the same project, it keeps telling me that the password for the keystore file is incorrect?

Not normal in my experience. If you want to share the whole log with the error message, we might have a better idea of what's going on.

@BrunoDG
Copy link
Author

BrunoDG commented Dec 31, 2024

Sorry for taking so long to answer, I've had some personal issues, but got back.
Here's the full log on my latest run:

2024-12-31T07:10:35.3405535Z Current runner version: '2.321.0'
2024-12-31T07:10:35.3433857Z ##[group]Operating System
2024-12-31T07:10:35.3434806Z Ubuntu
2024-12-31T07:10:35.3435350Z 24.04.1
2024-12-31T07:10:35.3435880Z LTS
2024-12-31T07:10:35.3436474Z ##[endgroup]
2024-12-31T07:10:35.3437066Z ##[group]Runner Image
2024-12-31T07:10:35.3437739Z Image: ubuntu-24.04
2024-12-31T07:10:35.3438359Z Version: 20241215.1.0
2024-12-31T07:10:35.3439550Z Included Software: https://github.com/actions/runner-images/blob/ubuntu24/20241215.1/images/ubuntu/Ubuntu2404-Readme.md
2024-12-31T07:10:35.3441559Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu24%2F20241215.1
2024-12-31T07:10:35.3442688Z ##[endgroup]
2024-12-31T07:10:35.3443264Z ##[group]Runner Image Provisioner
2024-12-31T07:10:35.3444020Z 2.0.404.1
2024-12-31T07:10:35.3444606Z ##[endgroup]
2024-12-31T07:10:35.3447213Z ##[group]GITHUB_TOKEN Permissions
2024-12-31T07:10:35.3449824Z Actions: write
2024-12-31T07:10:35.3450726Z Attestations: write
2024-12-31T07:10:35.3451855Z Checks: write
2024-12-31T07:10:35.3452506Z Contents: write
2024-12-31T07:10:35.3453106Z Deployments: write
2024-12-31T07:10:35.3453682Z Discussions: write
2024-12-31T07:10:35.3454339Z Issues: write
2024-12-31T07:10:35.3454893Z Metadata: read
2024-12-31T07:10:35.3455483Z Packages: write
2024-12-31T07:10:35.3456092Z Pages: write
2024-12-31T07:10:35.3456646Z PullRequests: write
2024-12-31T07:10:35.3457320Z RepositoryProjects: write
2024-12-31T07:10:35.3457969Z SecurityEvents: write
2024-12-31T07:10:35.3458525Z Statuses: write
2024-12-31T07:10:35.3459146Z ##[endgroup]
2024-12-31T07:10:35.3461513Z Secret source: Actions
2024-12-31T07:10:35.3462301Z Prepare workflow directory
2024-12-31T07:10:35.3787207Z Prepare all required actions
2024-12-31T07:10:35.3823786Z Getting action download info
2024-12-31T07:10:35.6050742Z Download action repository 'actions/checkout@v4' (SHA:11bd71901bbe5b1630ceea73d27597364c9af683)
2024-12-31T07:10:35.7224012Z Download action repository 'timheuer/[email protected]' (SHA:adaa40c0c581f276132199d4cf60afa07ce60eac)
2024-12-31T07:10:35.9592873Z Download action repository 'actions/setup-java@v4' (SHA:7a6d8a8234af8eb26422e24e3006232cccaa061b)
2024-12-31T07:10:36.2528362Z Download action repository 'FedericoCarboni/setup-ffmpeg@v3' (SHA:36c6454b5a2348e7794ba2d82a21506605921e3d)
2024-12-31T07:10:36.4979348Z Download action repository 'andstor/file-reader-action@v1' (SHA:babb053761401147562e75be79d832978cc97325)
2024-12-31T07:10:36.7166119Z Download action repository 'bscotch/igor-setup@v1' (SHA:0c065406cd5b22eb9b2ce7926cdb6e63775c6b8a)
2024-12-31T07:10:37.0094620Z Download action repository 'bscotch/igor-build@v1' (SHA:7cacbacf39d85bd8e0f22049530fd19cba28478f)
2024-12-31T07:10:37.2683772Z Download action repository 'actions/upload-artifact@v4' (SHA:6f51ac03b9356f520e9adb1b1b7802705f340c2b)
2024-12-31T07:10:37.6980620Z Complete job name: build-mobile
2024-12-31T07:10:37.7999901Z ##[group]Run actions/checkout@v4
2024-12-31T07:10:37.8002064Z with:
2024-12-31T07:10:37.8003191Z   lfs: true
2024-12-31T07:10:37.8004577Z   repository: CreativeHandOficial/build-test
2024-12-31T07:10:37.8006758Z   token: ***
2024-12-31T07:10:37.8008151Z   ssh-strict: true
2024-12-31T07:10:37.8009560Z   ssh-user: git
2024-12-31T07:10:37.8010648Z   persist-credentials: true
2024-12-31T07:10:37.8011888Z   clean: true
2024-12-31T07:10:37.8012760Z   sparse-checkout-cone-mode: true
2024-12-31T07:10:37.8013760Z   fetch-depth: 1
2024-12-31T07:10:37.8014584Z   fetch-tags: false
2024-12-31T07:10:37.8015418Z   show-progress: true
2024-12-31T07:10:37.8016272Z   submodules: false
2024-12-31T07:10:37.8017133Z   set-safe-directory: true
2024-12-31T07:10:37.8018439Z ##[endgroup]
2024-12-31T07:10:38.0313989Z Syncing repository: CreativeHandOficial/build-test
2024-12-31T07:10:38.0318114Z ##[group]Getting Git version info
2024-12-31T07:10:38.0320284Z Working directory is '/home/runner/work/build-test/build-test'
2024-12-31T07:10:38.0323680Z [command]/usr/bin/git version
2024-12-31T07:10:38.0378462Z git version 2.47.1
2024-12-31T07:10:38.0427862Z [command]/usr/bin/git lfs version
2024-12-31T07:10:38.0830554Z git-lfs/3.6.0 (GitHub; linux amd64; go 1.23.1)
2024-12-31T07:10:38.0838608Z ##[endgroup]
2024-12-31T07:10:38.0865022Z Temporarily overriding HOME='/home/runner/work/_temp/93f65fae-b967-4246-b02a-188b1a96decf' before making global git config changes
2024-12-31T07:10:38.0869591Z Adding repository directory to the temporary git global config as a safe directory
2024-12-31T07:10:38.0873386Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/build-test/build-test
2024-12-31T07:10:38.0927401Z Deleting the contents of '/home/runner/work/build-test/build-test'
2024-12-31T07:10:38.0931344Z ##[group]Initializing the repository
2024-12-31T07:10:38.0934047Z [command]/usr/bin/git init /home/runner/work/build-test/build-test
2024-12-31T07:10:38.1007052Z hint: Using 'master' as the name for the initial branch. This default branch name
2024-12-31T07:10:38.1012446Z hint: is subject to change. To configure the initial branch name to use in all
2024-12-31T07:10:38.1015679Z hint: of your new repositories, which will suppress this warning, call:
2024-12-31T07:10:38.1017972Z hint:
2024-12-31T07:10:38.1019475Z hint: 	git config --global init.defaultBranch <name>
2024-12-31T07:10:38.1021697Z hint:
2024-12-31T07:10:38.1023626Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2024-12-31T07:10:38.1026652Z hint: 'development'. The just-created branch can be renamed via this command:
2024-12-31T07:10:38.1028963Z hint:
2024-12-31T07:10:38.1030182Z hint: 	git branch -m <name>
2024-12-31T07:10:38.1032746Z Initialized empty Git repository in /home/runner/work/build-test/build-test/.git/
2024-12-31T07:10:38.1039602Z [command]/usr/bin/git remote add origin https://github.com/CreativeHandOficial/build-test
2024-12-31T07:10:38.1075461Z ##[endgroup]
2024-12-31T07:10:38.1078193Z ##[group]Disabling automatic garbage collection
2024-12-31T07:10:38.1080688Z [command]/usr/bin/git config --local gc.auto 0
2024-12-31T07:10:38.1144212Z ##[endgroup]
2024-12-31T07:10:38.1146479Z ##[group]Setting up auth
2024-12-31T07:10:38.1148731Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2024-12-31T07:10:38.1166569Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2024-12-31T07:10:38.1439476Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2024-12-31T07:10:38.1474633Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2024-12-31T07:10:38.1738557Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2024-12-31T07:10:38.1787205Z ##[endgroup]
2024-12-31T07:10:38.1792278Z [command]/usr/bin/git lfs install --local
2024-12-31T07:10:38.2174066Z Updated Git hooks.
2024-12-31T07:10:38.2175057Z Git LFS initialized.
2024-12-31T07:10:38.2204641Z ##[group]Fetching the repository
2024-12-31T07:10:38.2215780Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +473bf2dc5aad7b2fb70f0a78192b79a0e78ca444:refs/remotes/origin/master
2024-12-31T07:10:39.8880869Z From https://github.com/CreativeHandOficial/build-test
2024-12-31T07:10:39.8884722Z  * [new ref]         473bf2dc5aad7b2fb70f0a78192b79a0e78ca444 -> origin/master
2024-12-31T07:10:39.8935368Z ##[endgroup]
2024-12-31T07:10:39.8947167Z ##[group]Determining the checkout info
2024-12-31T07:10:39.8950342Z ##[endgroup]
2024-12-31T07:10:39.8955494Z ##[group]Fetching LFS objects
2024-12-31T07:10:39.8959373Z [command]/usr/bin/git lfs fetch origin refs/remotes/origin/master
2024-12-31T07:10:39.9339816Z fetch: Fetching reference refs/remotes/origin/master
2024-12-31T07:10:40.0191719Z ##[endgroup]
2024-12-31T07:10:40.0197038Z [command]/usr/bin/git sparse-checkout disable
2024-12-31T07:10:40.0254481Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
2024-12-31T07:10:40.0288621Z ##[group]Checking out the ref
2024-12-31T07:10:40.0292388Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
2024-12-31T07:10:40.4276077Z Reset branch 'master'
2024-12-31T07:10:40.4301413Z branch 'master' set up to track 'origin/master'.
2024-12-31T07:10:40.4662537Z ##[endgroup]
2024-12-31T07:10:40.4716232Z [command]/usr/bin/git log -1 --format=%H
2024-12-31T07:10:40.4758440Z 473bf2dc5aad7b2fb70f0a78192b79a0e78ca444
2024-12-31T07:10:40.4977104Z ##[group]Run yyp=$(find /home/runner/work/build-test/build-test -name "*.yyp")
2024-12-31T07:10:40.4977699Z �[36;1myyp=$(find /home/runner/work/build-test/build-test -name "*.yyp")�[0m
2024-12-31T07:10:40.4978099Z �[36;1mecho "YYP file found at: $yyp"�[0m
2024-12-31T07:10:40.4978407Z �[36;1mecho "yyp-path=$yyp" >> $GITHUB_OUTPUT�[0m
2024-12-31T07:10:40.5009048Z shell: /usr/bin/bash -e {0}
2024-12-31T07:10:40.5009355Z ##[endgroup]
2024-12-31T07:10:40.5200105Z YYP file found at: /home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp
2024-12-31T07:10:40.5264738Z ##[group]Run timheuer/[email protected]
2024-12-31T07:10:40.5265072Z with:
2024-12-31T07:10:40.5265288Z   fileName: myTemporaryFile.keystore
2024-12-31T07:10:40.5284436Z   encodedString: ***
2024-12-31T07:10:40.5284716Z ##[endgroup]
2024-12-31T07:10:40.5866227Z ##[group]Run actions/setup-java@v4
2024-12-31T07:10:40.5866527Z with:
2024-12-31T07:10:40.5866761Z   distribution: temurin
2024-12-31T07:10:40.5866989Z   java-version: 21
2024-12-31T07:10:40.5867201Z   java-package: jdk
2024-12-31T07:10:40.5867414Z   check-latest: false
2024-12-31T07:10:40.5867622Z   server-id: github
2024-12-31T07:10:40.5867832Z   server-username: GITHUB_ACTOR
2024-12-31T07:10:40.5868132Z   server-password: GITHUB_TOKEN
2024-12-31T07:10:40.5868380Z   overwrite-settings: true
2024-12-31T07:10:40.5868609Z   job-status: success
2024-12-31T07:10:40.5868943Z   token: ***
2024-12-31T07:10:40.5869144Z ##[endgroup]
2024-12-31T07:10:40.7791671Z ##[group]Installed distributions
2024-12-31T07:10:40.7850429Z Resolved Java 21.0.5+11 from tool-cache
2024-12-31T07:10:40.7852210Z Setting Java 21.0.5+11 as the default
2024-12-31T07:10:40.7881342Z Creating toolchains.xml for JDK version 21 from temurin
2024-12-31T07:10:40.8007436Z Writing to /home/runner/.m2/toolchains.xml
2024-12-31T07:10:40.8014359Z 
2024-12-31T07:10:40.8031735Z Java configuration:
2024-12-31T07:10:40.8032459Z   Distribution: temurin
2024-12-31T07:10:40.8033041Z   Version: 21.0.5+11
2024-12-31T07:10:40.8033580Z   Path: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:40.8034037Z 
2024-12-31T07:10:40.8034678Z ##[endgroup]
2024-12-31T07:10:40.8051979Z Creating settings.xml with server-id: github
2024-12-31T07:10:40.8052548Z Writing to /home/runner/.m2/settings.xml
2024-12-31T07:10:40.8150693Z ##[group]Run echo '{
2024-12-31T07:10:40.8150981Z �[36;1mecho '{�[0m
2024-12-31T07:10:40.8151687Z �[36;1m"machine.Platform Settings.Android.Paths.jdk_location": "/opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64",�[0m
2024-12-31T07:10:40.8152455Z �[36;1m"machine.Platform Settings.Android.Keystore.filename": "/home/runner/work/_temp/myTemporaryFile.keystore", �[0m
2024-12-31T07:10:40.8153191Z �[36;1m"machine.Platform Settings.Android.Keystore.keystore_password": "***",�[0m
2024-12-31T07:10:40.8153764Z �[36;1m"machine.Platform Settings.Android.Keystore.keystore_alias_password": "***",�[0m
2024-12-31T07:10:40.8154282Z �[36;1m"machine.Platform Settings.Android.Keystore.alias": "***"�[0m
2024-12-31T07:10:40.8154607Z �[36;1m}' \�[0m
2024-12-31T07:10:40.8154815Z �[36;1m> local_settings.json�[0m
2024-12-31T07:10:40.8184323Z shell: /usr/bin/bash -e {0}
2024-12-31T07:10:40.8214153Z env:
2024-12-31T07:10:40.8214686Z   JAVA_HOME: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:40.8215434Z   JAVA_HOME_21_X64: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:40.8216336Z ##[endgroup]
2024-12-31T07:10:40.8316724Z ##[group]Run FedericoCarboni/setup-ffmpeg@v3
2024-12-31T07:10:40.8317032Z with:
2024-12-31T07:10:40.8317234Z   ffmpeg-version: 6.1.0
2024-12-31T07:10:40.8317582Z   github-token: ***
2024-12-31T07:10:40.8317795Z env:
2024-12-31T07:10:40.8318085Z   JAVA_HOME: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:40.8318553Z   JAVA_HOME_21_X64: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:40.8318912Z ##[endgroup]
2024-12-31T07:10:41.4203661Z Installing ffmpeg version 6.1.0 from https://johnvansickle.com/ffmpeg/releases/ffmpeg-6.1-amd64-static.tar.xz
2024-12-31T07:10:42.7762470Z [command]/usr/bin/tar x --warning=no-unknown-keyword --overwrite -C /home/runner/work/_temp/c10a6372-d9a0-48d4-83ca-67d26d503a6b -f /home/runner/work/_temp/aedd97f1-cefe-446b-8483-254418c55c34
2024-12-31T07:10:46.2496418Z ##[group]Run ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager \
2024-12-31T07:10:46.2496943Z �[36;1m${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager \�[0m
2024-12-31T07:10:46.2497292Z �[36;1m--sdk_root=$ANDROID_SDK_ROOT \�[0m
2024-12-31T07:10:46.2497558Z �[36;1m"platform-tools"�[0m
2024-12-31T07:10:46.2525196Z shell: /usr/bin/bash -e {0}
2024-12-31T07:10:46.2525447Z env:
2024-12-31T07:10:46.2525745Z   JAVA_HOME: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:46.2526218Z   JAVA_HOME_21_X64: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:46.2526595Z ##[endgroup]
2024-12-31T07:10:51.4675369Z Loading package information...                                                  
2024-12-31T07:10:51.5612999Z Loading local repository...                                                     
2024-12-31T07:10:51.5617844Z [                                       ] 3% Loading local repository...        
2024-12-31T07:10:52.2312741Z [                                       ] 3% Fetch remote repository...         
2024-12-31T07:10:52.9074522Z [=                                      ] 3% Fetch remote repository...         
2024-12-31T07:10:52.9079237Z Warning: Errors during XML parse:
2024-12-31T07:10:52.9083934Z Warning: Additionally, the fallback loader failed to parse the XML.
2024-12-31T07:10:52.9101627Z                                                                                 
2024-12-31T07:10:52.9105798Z [=                                      ] 3% Fetch remote repository...         
2024-12-31T07:10:52.9109945Z                                                                                 
2024-12-31T07:10:53.1152454Z [=                                      ] 3% Fetch remote repository...         
2024-12-31T07:10:53.3298769Z [=                                      ] 4% Fetch remote repository...         
2024-12-31T07:10:53.3559432Z [=                                      ] 5% Fetch remote repository...         
2024-12-31T07:10:53.4057031Z Warning: Errors during XML parse:
2024-12-31T07:10:53.4057774Z [==                                     ] 5% Fetch remote repository...         
2024-12-31T07:10:53.4058369Z [==                                     ] 6% Fetch remote repository...         
2024-12-31T07:10:53.4058902Z                                                                                 
2024-12-31T07:10:53.4072953Z [==                                     ] 6% Fetch remote repository...         
2024-12-31T07:10:53.4076451Z Warning: Additionally, the fallback loader failed to parse the XML.
2024-12-31T07:10:53.4080552Z                                                                                 
2024-12-31T07:10:53.5727501Z [==                                     ] 6% Fetch remote repository...         
2024-12-31T07:10:53.8445647Z [==                                     ] 7% Fetch remote repository...         
2024-12-31T07:10:53.8597710Z [===                                    ] 8% Fetch remote repository...         
2024-12-31T07:10:53.8842553Z [===                                    ] 8% Computing updates...               
2024-12-31T07:10:53.9194175Z [===                                    ] 10% Computing updates...              
2024-12-31T07:10:53.9646175Z [===                                    ] 10% Installing Android SDK Platform-To
2024-12-31T07:10:53.9876064Z [===                                    ] 10% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.0178485Z [====                                   ] 10% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.0524691Z [====                                   ] 11% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.0783732Z [====                                   ] 12% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.0942410Z [=====                                  ] 13% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1050253Z [=====                                  ] 14% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1129824Z [=====                                  ] 15% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1173439Z [======                                 ] 15% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1260844Z [======                                 ] 16% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1348700Z [======                                 ] 17% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1408781Z [=======                                ] 18% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1481208Z [=======                                ] 19% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1503662Z [=======                                ] 20% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1530757Z [========                               ] 20% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1596569Z [========                               ] 21% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1635063Z [========                               ] 22% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1673330Z [=========                              ] 23% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1722084Z [=========                              ] 24% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1748232Z [=========                              ] 25% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1763306Z [==========                             ] 25% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1806737Z [==========                             ] 26% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1851830Z [==========                             ] 27% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1887225Z [===========                            ] 28% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1945350Z [===========                            ] 29% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1953074Z [===========                            ] 30% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.1988380Z [============                           ] 30% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.2019817Z [============                           ] 31% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.2053354Z [============                           ] 32% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.2065017Z [============                           ] 33% Downloading platform-tools_r35.0.2
2024-12-31T07:10:54.4135004Z [============                           ] 33% Unzipping...                      
2024-12-31T07:10:54.4141434Z [============                           ] 33% Unzipping... platform-tools/NOTICE
2024-12-31T07:10:54.4309356Z [=============                          ] 33% Unzipping... platform-tools/NOTICE
2024-12-31T07:10:54.4341963Z [=============                          ] 33% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.4429605Z [=============                          ] 34% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.4488698Z [=============                          ] 35% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.4546778Z [==============                         ] 35% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.4644848Z [==============                         ] 36% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.4751998Z [==============                         ] 37% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.4830073Z [===============                        ] 38% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.4926400Z [===============                        ] 39% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.4983777Z [===============                        ] 40% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.5020494Z [================                       ] 40% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.5090855Z [================                       ] 41% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.5147524Z [================                       ] 42% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.5287679Z [=================                      ] 43% Unzipping... platform-tools/adb   
2024-12-31T07:10:54.5327518Z [=================                      ] 43% Unzipping... platform-tools/etc1to
2024-12-31T07:10:54.5382076Z [=================                      ] 44% Unzipping... platform-tools/etc1to
2024-12-31T07:10:54.5430291Z [=================                      ] 44% Unzipping... platform-tools/fastbo
2024-12-31T07:10:54.5488197Z [=================                      ] 45% Unzipping... platform-tools/fastbo
2024-12-31T07:10:54.5534509Z [==================                     ] 45% Unzipping... platform-tools/fastbo
2024-12-31T07:10:54.5610557Z [==================                     ] 46% Unzipping... platform-tools/fastbo
2024-12-31T07:10:54.5632436Z [==================                     ] 47% Unzipping... platform-tools/fastbo
2024-12-31T07:10:54.5639814Z [==================                     ] 47% Unzipping... platform-tools/hprof-
2024-12-31T07:10:54.5754670Z [==================                     ] 47% Unzipping... platform-tools/make_f
2024-12-31T07:10:54.5761237Z [===================                    ] 48% Unzipping... platform-tools/make_f
2024-12-31T07:10:54.5835551Z [===================                    ] 48% Unzipping... platform-tools/mke2fs
2024-12-31T07:10:54.5882146Z [===================                    ] 49% Unzipping... platform-tools/mke2fs
2024-12-31T07:10:54.5883300Z [===================                    ] 49% Unzipping... platform-tools/source
2024-12-31T07:10:54.5918620Z [===================                    ] 49% Unzipping... platform-tools/sqlite
2024-12-31T07:10:54.5945141Z [===================                    ] 50% Unzipping... platform-tools/sqlite
2024-12-31T07:10:54.5980430Z [====================                   ] 50% Unzipping... platform-tools/sqlite
2024-12-31T07:10:54.6054225Z [====================                   ] 51% Unzipping... platform-tools/sqlite
2024-12-31T07:10:54.6119965Z [====================                   ] 52% Unzipping... platform-tools/sqlite
2024-12-31T07:10:54.6193237Z [=====================                  ] 53% Unzipping... platform-tools/sqlite
2024-12-31T07:10:54.6215913Z [=====================                  ] 54% Unzipping... platform-tools/sqlite
2024-12-31T07:10:54.6300922Z [=====================                  ] 54% Unzipping... platform-tools/lib64/
2024-12-31T07:10:54.6412682Z [=====================                  ] 55% Unzipping... platform-tools/lib64/
2024-12-31T07:10:54.6413341Z [=======================================] 100% Unzipping... platform-tools/lib64
2024-12-31T07:10:55.1549034Z 
2024-12-31T07:10:55.1824226Z ##[group]Run andstor/file-reader-action@v1
2024-12-31T07:10:55.1824741Z with:
2024-12-31T07:10:55.1825393Z   path: local_settings.json
2024-12-31T07:10:55.1825818Z   encoding: utf8
2024-12-31T07:10:55.1826152Z env:
2024-12-31T07:10:55.1826760Z   JAVA_HOME: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:55.1827596Z   JAVA_HOME_21_X64: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:55.1828511Z ##[endgroup]
2024-12-31T07:10:55.2210287Z File contents:
2024-12-31T07:10:55.2210706Z {
2024-12-31T07:10:55.2211835Z "machine.Platform Settings.Android.Paths.jdk_location": "/opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64",
2024-12-31T07:10:55.2213190Z "machine.Platform Settings.Android.Keystore.filename": "/home/runner/work/_temp/myTemporaryFile.keystore", 
2024-12-31T07:10:55.2214503Z "machine.Platform Settings.Android.Keystore.keystore_password": "***",
2024-12-31T07:10:55.2215521Z "machine.Platform Settings.Android.Keystore.keystore_alias_password": "***",
2024-12-31T07:10:55.2216350Z "machine.Platform Settings.Android.Keystore.alias": "***"
2024-12-31T07:10:55.2216851Z }
2024-12-31T07:10:55.2216999Z 
2024-12-31T07:10:55.2238769Z ##[warning]The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
2024-12-31T07:10:55.2309585Z ##[group]Run bscotch/igor-setup@v1
2024-12-31T07:10:55.2309862Z with:
2024-12-31T07:10:55.2310248Z   local-settings-override-file: /home/runner/work/build-test/build-test/local_settings.json
2024-12-31T07:10:55.2310834Z   target-yyp: /home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp
2024-12-31T07:10:55.2311489Z   access-key: ***
2024-12-31T07:10:55.2311693Z env:
2024-12-31T07:10:55.2311984Z   JAVA_HOME: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:55.2312448Z   JAVA_HOME_21_X64: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:10:55.2312804Z ##[endgroup]
2024-12-31T07:10:55.3705729Z Inferring runtime from target-yyp: /home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp
2024-12-31T07:10:55.7166462Z Using local settings file: /home/runner/work/build-test/build-test/local_settings.json
2024-12-31T07:10:56.8264987Z Release build
2024-12-31T07:10:57.7997829Z Igor complete.
2024-12-31T07:10:58.3011356Z ,Release build
2024-12-31T07:10:58.3012465Z Igor complete.
2024-12-31T07:10:58.3013138Z ,
2024-12-31T07:10:58.8553833Z ,Release build
2024-12-31T07:10:58.8554735Z Igor complete.
2024-12-31T07:10:58.8555707Z ,
2024-12-31T07:10:59.3015341Z ,Release build
2024-12-31T07:10:59.3022130Z Runtime: Version 2024.8.0.216
2024-12-31T07:10:59.3025933Z Date: Mon, 02 Sep 2024 19:32:50 Z
2024-12-31T07:10:59.3027935Z Release Notes: https://gms.yoyogames.com//Zeus-Runtime-Green-I.html
2024-12-31T07:10:59.3028797Z Contents:
2024-12-31T07:10:59.3029432Z     Base: https://gms.yoyogames.com/611e88ee-dc65-44cb-9562-283b7f0944fe.zip
2024-12-31T07:10:59.3030392Z     android: https://gms.yoyogames.com/5269d720-8ab1-4d70-9f4a-9550eb6429b5.zip
2024-12-31T07:10:59.3031715Z     base-module-linux-arm64: https://gms.yoyogames.com/d78163e4-84f9-4228-84b8-973966609cc3.zip
2024-12-31T07:10:59.3032742Z     base-module-linux-x64: https://gms.yoyogames.com/37a8faf0-43fb-45f9-92a5-a912d28282bc.zip
2024-12-31T07:10:59.3033816Z     base-module-osx-arm64: https://gms.yoyogames.com/3cccc7f8-bf25-4704-8738-c2a0a5a76f4a.zip
2024-12-31T07:10:59.3034899Z     base-module-osx-x64: https://gms.yoyogames.com/2fc6c1a2-37e9-426f-bff2-c5833dd53c6a.zip
2024-12-31T07:10:59.3035924Z     base-module-windows-x64: https://gms.yoyogames.com/b5cda1b1-3ded-47bc-b291-6d59f10c4734.zip
2024-12-31T07:10:59.3037028Z     html5: https://gms.yoyogames.com/a208bfce-d146-4799-8c95-a4564fa9f11b.zip
2024-12-31T07:10:59.3037889Z     ios: https://gms.yoyogames.com/57e45cdd-56a9-4bf7-af66-9bba06e821d7.zip
2024-12-31T07:10:59.3038809Z     linux: https://gms.yoyogames.com/d88a0255-0c7c-49f8-a688-1c32738c72a2.zip
2024-12-31T07:10:59.3039685Z     mac: https://gms.yoyogames.com/86353e47-8b8e-4bd9-9b1a-45ac0ed7b769.zip
2024-12-31T07:10:59.3040470Z     operagx: https://gms.yoyogames.com/d8523bd1-66ca-44b9-b7bf-9e2f4cddeebd.zip
2024-12-31T07:10:59.3041537Z     tvos: https://gms.yoyogames.com/69a36369-85a8-4be4-8416-63a5f8d8b75a.zip
2024-12-31T07:10:59.3102457Z     windows: https://gms.yoyogames.com/34e65137-ef21-42eb-9116-6de2d1a8e212.zip
2024-12-31T07:10:59.3103504Z Igor complete.
2024-12-31T07:10:59.3103827Z ,
2024-12-31T07:10:59.3104254Z /home/runner/work/build-test/build-test/bootstrapper/Igor
2024-12-31T07:10:59.3104876Z /rp=/home/runner/work/build-test/build-test/runtimes
2024-12-31T07:10:59.3105491Z /ru=https://gms.yoyogames.com/Zeus-Runtime.rss?day=2&hour=7
2024-12-31T07:10:59.3106307Z /uf=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/dev_4592832
2024-12-31T07:10:59.3107010Z /m=android,base-module-linux-x64
2024-12-31T07:10:59.3107405Z --
2024-12-31T07:10:59.3107719Z Runtime
2024-12-31T07:10:59.3108004Z Install
2024-12-31T07:10:59.3108286Z 2024.8.0.216
2024-12-31T07:10:59.3110512Z /home/runner/work/build-test/build-test/bootstrapper/Igor /rp=/home/runner/work/build-test/build-test/runtimes /ru=https://gms.yoyogames.com/Zeus-Runtime.rss?day=2&hour=7 /uf=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/dev_4592832 /m=android,base-module-linux-x64 -- Runtime Install 2024.8.0.216
2024-12-31T07:10:59.3902113Z Release build
2024-12-31T07:10:59.7542025Z Runtime URL: https://gms.yoyogames.com/Zeus-Runtime.rss?day=2&hour=7
2024-12-31T07:10:59.7546614Z Downloading and installing runtime 2024.8.0.216
2024-12-31T07:10:59.7620725Z target directory - /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216
2024-12-31T07:10:59.7653483Z     Downloading: /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/611e88ee-dc65-44cb-9562-283b7f0944fe.zip
2024-12-31T07:11:00.7757597Z     Downloading: /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/5269d720-8ab1-4d70-9f4a-9550eb6429b5.zip
2024-12-31T07:11:01.7768252Z     Downloading: /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/37a8faf0-43fb-45f9-92a5-a912d28282bc.zip
2024-12-31T07:11:03.7775724Z     Installing: /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/37a8faf0-43fb-45f9-92a5-a912d28282bc.zip
2024-12-31T07:11:11.1775412Z     Installing: /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/5269d720-8ab1-4d70-9f4a-9550eb6429b5.zip
2024-12-31T07:11:12.7872825Z     Installing: /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/611e88ee-dc65-44cb-9562-283b7f0944fe.zip
2024-12-31T07:11:13.9959146Z Installation complete.
2024-12-31T07:11:14.0635759Z Verifying:                     
2024-12-31T07:11:14.0640231Z 
2024-12-31T07:11:14.0644506Z Verification Inconclusive no manifest found.
2024-12-31T07:11:14.0646665Z Igor complete.
2024-12-31T07:11:14.0736459Z ##[warning]Runtime is missing ffmpeg!
2024-12-31T07:11:14.0737734Z Running post install scripts.
2024-12-31T07:11:14.0806919Z /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/bin/linux-post-install.sh: 50: pushd: not found
2024-12-31T07:11:14.0810598Z Installed modules: android,base-module-linux-x64
2024-12-31T07:11:14.0811495Z For runtime: 2024.8.0.216
2024-12-31T07:11:14.1183865Z ##[group]Run bscotch/igor-build@v1
2024-12-31T07:11:14.1184147Z with:
2024-12-31T07:11:14.1184483Z   yyp-path: /home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp
2024-12-31T07:11:14.1185046Z   user-dir: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/dev_4592832
2024-12-31T07:11:14.1185477Z   yyc: true
2024-12-31T07:11:14.1185667Z   save-logs: false
2024-12-31T07:11:14.1185860Z env:
2024-12-31T07:11:14.1186142Z   JAVA_HOME: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:11:14.1186595Z   JAVA_HOME_21_X64: /opt/hostedtoolcache/Java_Temurin-Hotspot_jdk/21.0.5-11/x64
2024-12-31T07:11:14.1186946Z ##[endgroup]
2024-12-31T07:11:14.2109986Z /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/bin/igor/linux/x64/Igor
2024-12-31T07:11:14.2114790Z /uf=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/dev_4592832
2024-12-31T07:11:14.2123982Z /rp=/home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216
2024-12-31T07:11:14.2125239Z /project=/home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp
2024-12-31T07:11:14.2129111Z /cache=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache
2024-12-31T07:11:14.2130060Z /temp=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp
2024-12-31T07:11:14.2131341Z /of=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp/Survivor_Game - Build Test.win
2024-12-31T07:11:14.2132230Z /tf=Survivor_Game - Build Test.aab
2024-12-31T07:11:14.2132656Z /config=Default
2024-12-31T07:11:14.2132990Z /runtime=YYC
2024-12-31T07:11:14.2133305Z /v
2024-12-31T07:11:14.2133593Z /ic
2024-12-31T07:11:14.2133878Z /cr
2024-12-31T07:11:14.2134173Z --
2024-12-31T07:11:14.2134480Z Android
2024-12-31T07:11:14.2134789Z Package
2024-12-31T07:11:14.2138902Z /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/bin/igor/linux/x64/Igor /uf=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/dev_4592832 /rp=/home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216 /project=/home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp /cache=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache /temp=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp /of=/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp/Survivor_Game - Build Test.win /tf=Survivor_Game - Build Test.aab /config=Default /runtime=YYC /v /ic /cr -- Android Package
2024-12-31T07:11:14.2143237Z cwd: /home/runner/work/build-test/build-test/out
2024-12-31T07:11:14.2143663Z Number of processors:
2024-12-31T07:11:14.2143995Z undefined
2024-12-31T07:11:14.2144301Z undefined
2024-12-31T07:11:14.2990137Z Options: /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/bin/platform_setting_defaults.json
2024-12-31T07:11:14.2991667Z 
2024-12-31T07:11:14.3014379Z Options: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/dev_4592832/local_settings.json
2024-12-31T07:11:14.3015547Z 
2024-12-31T07:11:14.3342652Z Setting up the Asset compiler
2024-12-31T07:11:14.3343779Z 
2024-12-31T07:11:14.3388227Z /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/bin/assetcompiler/linux/x64/GMAssetCompiler.dll  /c /mv=1 /zpex /iv=0 /rv=0 /bv=0 /j=2  /gn="Survivor Game - Build Test" /td="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache" /cd="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache" /rtp="/home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216" /zpuf="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/dev_4592832" /prefabs=""   /ic /m=llvm-android /tgt=8 /llvmSource="/home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/yyc/"  /nodnd /cfg="Default" /fU="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/functionsUsed.txt" /o="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp" /optionsini="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp/options.ini" /baseproject="/home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/BaseProject/BaseProject.yyp" "/home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp" /preprocess="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache"
2024-12-31T07:11:14.3406214Z 
2024-12-31T07:11:14.4735496Z Found Project Format 2
2024-12-31T07:11:14.4737185Z 
2024-12-31T07:11:14.9352089Z +++ GMSC serialisation:  SUCCESSFUL LOAD AND LINK TIME: 458.3502ms
2024-12-31T07:11:14.9352561Z 
2024-12-31T07:11:14.9359677Z Loaded Project: Survivor Game - Build Test
2024-12-31T07:11:14.9361629Z 
2024-12-31T07:11:15.1785360Z finished.
2024-12-31T07:11:15.1786907Z 
2024-12-31T07:11:15.1793537Z Found Project Format 2
2024-12-31T07:11:15.1794648Z 
2024-12-31T07:11:15.1916110Z +++ GMSC serialisation:  SUCCESSFUL LOAD AND LINK TIME: 11.6926ms
2024-12-31T07:11:15.1917473Z 
2024-12-31T07:11:15.1917722Z Loaded Project: __yy_sdf_shader
2024-12-31T07:11:15.1918406Z 
2024-12-31T07:11:15.1944230Z finished.
2024-12-31T07:11:15.1952376Z 
2024-12-31T07:11:15.1952597Z Found Project Format 2
2024-12-31T07:11:15.1952850Z 
2024-12-31T07:11:15.1986462Z +++ GMSC serialisation:  SUCCESSFUL LOAD AND LINK TIME: 3.8106ms
2024-12-31T07:11:15.1987811Z Loaded Project: __yy_sdf_effect_shader
2024-12-31T07:11:15.1988129Z 
2024-12-31T07:11:15.1994012Z finished.
2024-12-31T07:11:15.1995163Z 
2024-12-31T07:11:15.1998625Z Found Project Format 2
2024-12-31T07:11:15.1999956Z 
2024-12-31T07:11:15.2087517Z +++ GMSC serialisation:  SUCCESSFUL LOAD AND LINK TIME: 8.869ms
2024-12-31T07:11:15.2088845Z Loaded Project: __yy_sdf_blur_shader
2024-12-31T07:11:15.2089146Z 
2024-12-31T07:11:15.2093174Z finished.
2024-12-31T07:11:15.2096972Z 
2024-12-31T07:11:15.2268856Z Found Project Format 2
2024-12-31T07:11:15.2270078Z 
2024-12-31T07:11:15.2415292Z +++ GMSC serialisation:  SUCCESSFUL LOAD AND LINK TIME: 15.0239ms
2024-12-31T07:11:15.2416858Z Loaded Project: GMPresetParticles
2024-12-31T07:11:15.2417185Z 
2024-12-31T07:11:15.2447389Z finished.
2024-12-31T07:11:15.2450746Z 
2024-12-31T07:11:15.2704730Z Release build
2024-12-31T07:11:15.2706117Z 
2024-12-31T07:11:15.2708961Z Options: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/ExtensionOptions.json
2024-12-31T07:11:15.2711288Z 
2024-12-31T07:11:15.2716948Z PlatformOptions
2024-12-31T07:11:15.2718600Z 
2024-12-31T07:11:15.2722464Z Options: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/PlatformOptions.json
2024-12-31T07:11:15.2723218Z 
2024-12-31T07:11:15.2726569Z Options: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/MainOptions.json
2024-12-31T07:11:15.2727238Z 
2024-12-31T07:11:15.2799079Z About to execute:/usr/local/lib/android/sdk/platform-tools/adb devices
2024-12-31T07:11:15.2801511Z 
2024-12-31T07:11:18.3813427Z OptionsIni
2024-12-31T07:11:18.3816983Z PlatformOptions
2024-12-31T07:11:18.3817277Z 
2024-12-31T07:11:18.3832474Z /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/bin/assetcompiler/linux/x64/GMAssetCompiler.dll  /c /mv=1 /zpex /iv=0 /rv=0 /bv=0 /j=2  /gn="Survivor Game - Build Test" /td="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache" /cd="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache" /rtp="/home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216" /zpuf="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-user/dev_4592832" /prefabs=""   /ic /m=llvm-android /tgt=8 /llvmSource="/home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/yyc/"  /nodnd /cfg="Default" /fU="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/functionsUsed.txt" /o="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp" /optionsini="/home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp/options.ini" /baseproject="/home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/BaseProject/BaseProject.yyp" "/home/runner/work/build-test/build-test/Survivor Game - Build Test.yyp" /arch=16 /bt=exe /rt=yyc
2024-12-31T07:11:18.3839909Z 
2024-12-31T07:11:18.3867211Z Looking for built-in fallback image in /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/bin/BuiltinImages
2024-12-31T07:11:18.3870111Z 
2024-12-31T07:11:18.4038399Z Compile Constants...
2024-12-31T07:11:18.4162099Z finished.
2024-12-31T07:11:18.4165339Z Remove DnD...
2024-12-31T07:11:18.4184511Z finished.
2024-12-31T07:11:18.4186855Z Compile Scripts...
2024-12-31T07:11:18.4548790Z finished.
2024-12-31T07:11:18.4551607Z Compile Rooms...
2024-12-31T07:11:18.4633449Z finished..... 0 CC empty
2024-12-31T07:11:18.4634196Z Compile Objects...
2024-12-31T07:11:18.4750052Z ##[error]Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4754375Z ##[error]Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4770248Z ##[error]Warning : reference to extension macro EpicGames_LCT_AccountPortal which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4778152Z ##[error]Warning : reference to extension macro EpicGames_AS_BasicProfile which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_FriendsList which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_Presence which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4784394Z ##[error]Warning : reference to extension macro EpicGames_LCT_PersistentAuth which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4800507Z ##[error]Warning : reference to extension macro EpicGames_AS_BasicProfile which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_FriendsList which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_Presence which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4844869Z ##[error]Warning : reference to extension macro EpicGames_LCT_RefreshToken which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_BasicProfile which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_FriendsList which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_Presence which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_ECT_EPIC which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_InvalidUser which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_LA_NoFlags which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_Auth_MFARequired which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_InvalidUser which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_LCT_ExchangeCode which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_BasicProfile which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_FriendsList which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_AS_Presence which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4873980Z ##[error]Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4877793Z ##[error]Warning : reference to extension macro EpicGames_LA_Max which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4881874Z ##[error]Warning : reference to extension macro EpicGames_LS_NotLoggedIn which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4904955Z ##[error]Warning : reference to extension macro EpicGames_LS_UsingLocalProfile which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_LS_LoggedIn which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_MAIT_Epic which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_UCT_MouseKeyboard which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_MAIT_Epic which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll
Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4913983Z ##[error]Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4917808Z ##[error]Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4921787Z ##[error]Warning : reference to extension macro EpicGames_Success which is not available for this target - macro is in extension EpicOnlineServices and file EpicOnlineServices.dll

2024-12-31T07:11:18.4957848Z ##[error]Warning : reference to extension macro GOG_AVATAR_TYPE_MEDIUM which is not available for this target - macro is in extension GOG and file GOG.dll
Warning : reference to extension macro GOG_AVATAR_TYPE_MEDIUM which is not available for this target - macro is in extension GOG and file GOG.dll

2024-12-31T07:11:18.4962333Z ##[error]Warning : reference to extension macro GOG_AVATAR_TYPE_MEDIUM which is not available for this target - macro is in extension GOG and file GOG.dll

2024-12-31T07:11:18.4969177Z ##[error]Warning : reference to extension macro GOG_AVATAR_TYPE_MEDIUM which is not available for this target - macro is in extension GOG and file GOG.dll
Warning : reference to extension macro GOG_AVATAR_TYPE_MEDIUM which is not available for this target - macro is in extension GOG and file GOG.dll

2024-12-31T07:11:18.5092587Z ##[error]Warning : reference to extension macro steam_floating_gamepad_text_input_mode_single_line which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5105067Z ##[error]Warning : reference to extension macro steam_input_sce_pad_trigger_effect_trigger_mask_l2 which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro steam_input_sce_pad_trigger_effect_trigger_mask_r2 which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro steam_input_sce_pad_trigger_effect_mode_multiple_position_vibration which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro steam_input_sce_pad_trigger_effect_mode_off which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5120082Z ##[error]Warning : reference to extension macro steam_input_xbox_origin_a which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro steam_input_glyph_size_small which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5130385Z ##[error]Warning : reference to extension macro steam_input_glyph_style_knockout which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5167659Z ##[error]Warning : reference to extension macro steam_music_playback_undefined which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro steam_music_playback_playing which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5176086Z ##[error]Warning : reference to extension macro steam_music_playback_paused which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro steam_music_playback_idle which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5180439Z ##[error]Warning : reference to extension macro steam_lobby_list_filter_eq which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5356730Z ##[error]Warning : reference to extension macro steam_lobby_member_change_entered which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro steam_lobby_max_chat_message_size which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5364282Z ##[error]Warning : reference to extension macro steam_lobby_list_filter_eq which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5412910Z ##[error]Warning : reference to extension macro steam_lobby_type_public which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5432111Z ##[error]Warning : reference to extension macro ov_achievements which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5435543Z ##[error]Warning : reference to extension macro ov_community which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5481347Z ##[error]Warning : reference to extension macro ov_friends which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro ov_gamegroup which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro ov_players which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro ov_settings which is not available for this target - macro is in extension Steamworks and file Steamworks.ext
Warning : reference to extension macro steam_user_avatar_size_large which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5504841Z ##[error]Warning : reference to extension macro ugc_filetype_community which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5511378Z ##[error]Warning : reference to extension macro ugc_visibility_private which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5528711Z ##[error]Warning : reference to extension macro ugc_query_RankedByTrend which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5538437Z ##[error]Warning : reference to extension macro ugc_match_Items which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5542464Z ##[error]Warning : reference to extension macro ugc_list_Published which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5545944Z ##[error]Warning : reference to extension macro ugc_match_Items which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5549395Z ##[error]Warning : reference to extension macro ugc_sortorder_TitleAsc which is not available for this target - macro is in extension Steamworks and file Steamworks.ext

2024-12-31T07:11:18.5602472Z finished.... 3 empty events
2024-12-31T07:11:18.5604767Z 
2024-12-31T07:11:18.5604965Z Compile Timelines...
2024-12-31T07:11:18.5605363Z finished.
2024-12-31T07:11:18.5605547Z 
2024-12-31T07:11:18.5605697Z Compile Triggers...
2024-12-31T07:11:18.5606050Z finished.
2024-12-31T07:11:18.5606233Z 
2024-12-31T07:11:18.5612748Z Compile Extensions...
2024-12-31T07:11:18.5613166Z finished.
2024-12-31T07:11:18.5613349Z 
2024-12-31T07:11:18.5613518Z Global scripts...finished.
2024-12-31T07:11:18.5613907Z finished.
2024-12-31T07:11:18.5614221Z collapsing enums.
2024-12-31T07:11:18.5614453Z 
2024-12-31T07:11:18.5623823Z Final Compile...
2024-12-31T07:11:18.7872280Z finished.
2024-12-31T07:11:18.7872976Z 
2024-12-31T07:11:18.7887337Z ClangExeLocation=/bin/clang++
2024-12-31T07:11:18.7888239Z Using NDKDir = /usr/local/lib/android/sdk/ndk/27.2.12479018
2024-12-31T07:11:18.7888959Z 
2024-12-31T07:11:18.7911779Z Using PlatformDir = 
2024-12-31T07:11:18.7912894Z saving file /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp/Survivor Game - Build Test.droid
2024-12-31T07:11:18.7913802Z 
2024-12-31T07:11:18.8018154Z Writing Chunk... GEN8 size ... -0.00 MB
2024-12-31T07:11:18.8018699Z 
2024-12-31T07:11:18.8043588Z option_game_speed=60
2024-12-31T07:11:18.8045886Z 
2024-12-31T07:11:18.8050294Z Writing Chunk... OPTN size ... 0.00 MB
2024-12-31T07:11:18.8052644Z 
2024-12-31T07:11:18.8063453Z Writing Chunk... LANG size ... 0.00 MB
2024-12-31T07:11:18.8065154Z 
2024-12-31T07:11:18.8068128Z Writing Chunk... EXTN size ... 0.00 MB
2024-12-31T07:11:18.8069754Z 
2024-12-31T07:11:18.8086484Z Writing Chunk... SOND size ... 0.00 MB
2024-12-31T07:11:18.8087290Z 
2024-12-31T07:11:18.8141885Z Converting snd_attack_chimes_1 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.8143486Z Converting snd_attack_chimes_2 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.8143915Z 
2024-12-31T07:11:18.8560687Z Converting snd_click to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.8581485Z 
2024-12-31T07:11:18.8582140Z Converting snd_lightning_impact_1 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.8582692Z 
2024-12-31T07:11:18.8783147Z Converting snd_lightning_impact_2 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.8783615Z 
2024-12-31T07:11:18.8866256Z Converting snd_lightning_throw to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.8867047Z 
2024-12-31T07:11:18.9045171Z Converting snd_melee_hit_1 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.9045964Z 
2024-12-31T07:11:18.9094165Z Converting snd_lose to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.9094575Z 
2024-12-31T07:11:18.9438027Z Converting snd_melee_hit_3 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.9438939Z 
2024-12-31T07:11:18.9518897Z Converting snd_melee_hit_2 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.9520038Z 
2024-12-31T07:11:18.9872285Z Converting snd_music_menu to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.9873214Z 
2024-12-31T07:11:18.9974752Z Converting snd_music_game to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:18.9975599Z 
2024-12-31T07:11:19.7371615Z Converting snd_pickup_2 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:19.7372201Z 
2024-12-31T07:11:19.7612669Z Converting snd_ui_close to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:19.7613199Z 
2024-12-31T07:11:19.7774683Z Converting snd_win to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:19.7775181Z 
2024-12-31T07:11:20.1608793Z Converting snd_pickup_1 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:20.1611886Z 
2024-12-31T07:11:20.1808503Z Converting snd_pickup_3 to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:20.1808950Z 
2024-12-31T07:11:20.1909169Z Converting snd_ui_select to Wav 16bit mono @ 44100Hz
2024-12-31T07:11:20.1909865Z 
2024-12-31T07:11:20.2178535Z Writing Chunk... AGRP size ... 0.00 MB
2024-12-31T07:11:20.2180493Z 
2024-12-31T07:11:20.2182714Z Writing Chunk... SPRT size ... 0.00 MB
2024-12-31T07:11:20.2184111Z 
2024-12-31T07:11:21.4618172Z Writing Chunk... BGND size ... 0.03 MB
2024-12-31T07:11:21.4619254Z 
2024-12-31T07:11:21.4619675Z Writing Chunk... PATH size ... 0.00 MB
2024-12-31T07:11:21.4622016Z 
2024-12-31T07:11:21.4622241Z Writing Chunk... SCPT size ... 0.00 MB
2024-12-31T07:11:21.4622589Z 
2024-12-31T07:11:21.4673819Z Writing Chunk... GLOB size ... 0.00 MB
2024-12-31T07:11:21.4675565Z 
2024-12-31T07:11:21.4676511Z Writing Chunk... SHDR size ... 0.00 MB
2024-12-31T07:11:21.4678082Z 
2024-12-31T07:11:21.4699188Z Writing Chunk... FONT size ... 0.00 MB
2024-12-31T07:11:21.4700365Z 
2024-12-31T07:11:21.5380373Z could not open file /home/runner/work/build-test/build-test/fonts/Font_YoYo_20/Font_YoYo_20.png, using blank 16x16 replacement : Could not find file '/home/runner/work/build-test/build-test/fonts/Font_YoYo_20/Font_YoYo_20.png'.
2024-12-31T07:11:21.5389967Z 
2024-12-31T07:11:21.5391355Z could not open file /home/runner/work/build-test/build-test/fonts/Font_YoYo_30/Font_YoYo_30.png, using blank 16x16 replacement : Could not find file '/home/runner/work/build-test/build-test/fonts/Font_YoYo_30/Font_YoYo_30.png'.
2024-12-31T07:11:21.5402806Z 
2024-12-31T07:11:21.5403912Z could not open file /home/runner/work/build-test/build-test/fonts/Font_YoYo_50/Font_YoYo_50.png, using blank 16x16 replacement : Could not find file '/home/runner/work/build-test/build-test/fonts/Font_YoYo_50/Font_YoYo_50.png'.
2024-12-31T07:11:21.5405195Z 
2024-12-31T07:11:21.5405948Z Writing Chunk... TMLN size ... 0.02 MB
2024-12-31T07:11:21.5411790Z Writing Chunk... OBJT size ... 0.00 MB
2024-12-31T07:11:21.5413619Z 
2024-12-31T07:11:21.5541871Z Writing Chunk... FEDS size ... 0.05 MB
2024-12-31T07:11:21.5543638Z 
2024-12-31T07:11:21.5547469Z Writing Chunk... ACRV size ... 0.00 MB
2024-12-31T07:11:21.5549577Z Writing Chunk... SEQN size ... 0.00 MB
2024-12-31T07:11:21.5551720Z 
2024-12-31T07:11:21.5555100Z Writing Chunk... TAGS size ... 0.00 MB
2024-12-31T07:11:21.5556799Z 
2024-12-31T07:11:21.5617075Z Writing Chunk... ROOM size ... 0.00 MB
2024-12-31T07:11:21.5619279Z 
2024-12-31T07:11:21.5691617Z Writing Chunk... DAFL size ... 0.03 MB
2024-12-31T07:11:21.5692021Z 
2024-12-31T07:11:21.5699040Z Writing Chunk... EMBI size ... 0.00 MB
2024-12-31T07:11:21.5702029Z 
2024-12-31T07:11:21.5718821Z Writing Chunk... PSEM size ... 0.00 MB
2024-12-31T07:11:21.5725220Z 
2024-12-31T07:11:21.5725459Z Writing Chunk... PSYS size ... 0.00 MB
2024-12-31T07:11:21.5725790Z 
2024-12-31T07:11:21.5727317Z Writing Chunk... TPAGE size ... 0.00 MB
2024-12-31T07:11:21.5729213Z 
2024-12-31T07:11:21.5823280Z Texture Group - __YY__0fallbacktexture.png_YYG_AUTO_GEN_TEX_GROUP_NAME_
2024-12-31T07:11:21.5828300Z Texture Group - Default
2024-12-31T07:11:21.5828631Z 
2024-12-31T07:11:24.0277055Z Writing Chunk... TGIN size ... 0.01 MB
2024-12-31T07:11:24.0279682Z 
2024-12-31T07:11:24.0292743Z Writing Chunk... FEAT size ... 0.00 MB
2024-12-31T07:11:24.0296262Z 
2024-12-31T07:11:24.0296691Z Writing Chunk... STRG size ... 0.00 MB
2024-12-31T07:11:24.0299103Z 
2024-12-31T07:11:24.0368383Z Writing Chunk... TXTR size ... 0.04 MB
2024-12-31T07:11:24.0369869Z 
2024-12-31T07:11:24.0382610Z 0 Compressing texture... 
2024-12-31T07:11:24.0385317Z writing texture __yy__0fallbacktexture.png_yyg_auto_gen_tex_group_name__0.yytex... 
2024-12-31T07:11:24.0387698Z 
2024-12-31T07:11:24.0389119Z 1 Compressing texture... writing texture default_0.yytex... 
2024-12-31T07:11:24.0390195Z 2 Compressing texture... writing texture default_1.yytex... 
2024-12-31T07:11:24.0391399Z 3 Compressing texture... writing texture default_2.yytex... 
2024-12-31T07:11:24.0392412Z 4 Compressing texture... writing texture default_3.yytex... 
2024-12-31T07:11:24.0398928Z 
2024-12-31T07:11:24.0547764Z Writing Chunk... AUDO size ... 8.82 MB
2024-12-31T07:11:24.0548541Z 
2024-12-31T07:11:24.0759865Z ClangExeLocation=/bin/clang++
2024-12-31T07:11:24.0762684Z Using NDKDir = /usr/local/lib/android/sdk/ndk/27.2.12479018
2024-12-31T07:11:24.0764365Z 
2024-12-31T07:11:24.0764559Z Using PlatformDir = 
2024-12-31T07:11:24.0764818Z 
2024-12-31T07:11:32.2970097Z [arm64-v8a] Compile++      : yoyo <= pch.hpp
2024-12-31T07:11:32.2972202Z [arm64-v8a] Compile++      : yoyo-app0 <= pch.hpp
2024-12-31T07:11:32.2973623Z 
2024-12-31T07:11:33.2937999Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_Read_Create_0.gml.cpp
2024-12-31T07:11:33.2939671Z 
2024-12-31T07:11:33.2947670Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_Read_Mouse_7.gml.cpp
2024-12-31T07:11:33.2948346Z 
2024-12-31T07:11:33.3508749Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_ReadFromBuffer_Create_0.gml.cpp
2024-12-31T07:11:33.3509401Z 
2024-12-31T07:11:33.3733352Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_ReadFromBuffer_Mouse_7.gml.cpp
2024-12-31T07:11:33.3734596Z 
2024-12-31T07:11:33.4068008Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_Write_Create_0.gml.cpp
2024-12-31T07:11:33.4068916Z 
2024-12-31T07:11:33.4473972Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_Write_Mouse_7.gml.cpp
2024-12-31T07:11:33.4475011Z 
2024-12-31T07:11:33.4593807Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_WriteFromBuffer_Create_0.gml.cpp
2024-12-31T07:11:33.4594400Z 
2024-12-31T07:11:33.5151724Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_WriteFromFile_Create_0.gml.cpp
2024-12-31T07:11:33.5153219Z 
2024-12-31T07:11:33.5610138Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_WriteFromBuffer_Mouse_7.gml.cpp
2024-12-31T07:11:33.5611287Z 
2024-12-31T07:11:33.5967063Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_File_WriteFromFile_Mouse_7.gml.cpp
2024-12-31T07:11:33.5967891Z 
2024-12-31T07:11:33.6586019Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Global_Stats_Create_0.gml.cpp
2024-12-31T07:11:33.6586955Z 
2024-12-31T07:11:33.8861933Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Global_Stats_Other_69.gml.cpp
2024-12-31T07:11:33.8863522Z 
2024-12-31T07:11:33.9298364Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Goto_Create_0.gml.cpp
2024-12-31T07:11:33.9298886Z 
2024-12-31T07:11:33.9829462Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Goto_Mouse_7.gml.cpp
2024-12-31T07:11:33.9830532Z 
2024-12-31T07:11:34.1214121Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_GeneralInfo_Draw_0.gml.cpp
2024-12-31T07:11:34.1216643Z 
2024-12-31T07:11:34.3029933Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Input_Step_0.gml.cpp
2024-12-31T07:11:34.3030889Z 
2024-12-31T07:11:34.6271665Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Input_Draw_0.gml.cpp
2024-12-31T07:11:34.6276689Z 
2024-12-31T07:11:34.6890379Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_AroundUser_Create_0.gml.cpp
2024-12-31T07:11:34.6895115Z 
2024-12-31T07:11:34.7599798Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_AroundUser_Mouse_7.gml.cpp
2024-12-31T07:11:34.7602831Z 
2024-12-31T07:11:34.7615391Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Input_Create_0.gml.cpp
2024-12-31T07:11:34.7616152Z 
2024-12-31T07:11:34.8182947Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_Friends_Create_0.gml.cpp
2024-12-31T07:11:34.8183976Z 
2024-12-31T07:11:34.8321608Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_Friends_Mouse_7.gml.cpp
2024-12-31T07:11:34.8322817Z 
2024-12-31T07:11:34.8639126Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_General_Create_0.gml.cpp
2024-12-31T07:11:34.8646295Z 
2024-12-31T07:11:34.9045588Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_Create_0.gml.cpp
2024-12-31T07:11:34.9052906Z 
2024-12-31T07:11:34.9112848Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_General_Mouse_7.gml.cpp
2024-12-31T07:11:34.9120251Z 
2024-12-31T07:11:34.9895882Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_Mouse_7.gml.cpp
2024-12-31T07:11:34.9900661Z 
2024-12-31T07:11:35.0522483Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Entry_Create_0.gml.cpp
2024-12-31T07:11:35.0528085Z 
2024-12-31T07:11:35.2018796Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Entry_Draw_0.gml.cpp
2024-12-31T07:11:35.2025431Z 
2024-12-31T07:11:35.2512069Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Download_Other_69.gml.cpp
2024-12-31T07:11:35.2530942Z 
2024-12-31T07:11:35.2592087Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Upload_Create_0.gml.cpp
2024-12-31T07:11:35.2597995Z 
2024-12-31T07:11:35.3147265Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_UploadWithBuff_Create_0.gml.cpp
2024-12-31T07:11:35.3151914Z 
2024-12-31T07:11:35.3611204Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_Upload_Mouse_7.gml.cpp
2024-12-31T07:11:35.3616400Z 
2024-12-31T07:11:35.4592536Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Leaderboard_UploadWithBuff_Mouse_7.gml.cpp
2024-12-31T07:11:35.4601189Z 
2024-12-31T07:11:35.5484038Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Circle_Create_0.gml.cpp
2024-12-31T07:11:35.5490110Z 
2024-12-31T07:11:35.5774042Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Circle_Alarm_0.gml.cpp
2024-12-31T07:11:35.5778298Z 
2024-12-31T07:11:35.5816468Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Music_Draw_0.gml.cpp
2024-12-31T07:11:35.5816963Z 
2024-12-31T07:11:35.6354981Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Join_Specific_Create_0.gml.cpp
2024-12-31T07:11:35.6355625Z 
2024-12-31T07:11:35.6562627Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Circle_Draw_0.gml.cpp
2024-12-31T07:11:35.6563526Z 
2024-12-31T07:11:35.6995472Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Join_Specific_Mouse_7.gml.cpp
2024-12-31T07:11:35.6996173Z 
2024-12-31T07:11:35.7609887Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_List_Slot_Create_0.gml.cpp
2024-12-31T07:11:35.7610491Z 
2024-12-31T07:11:35.7687943Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Join_Specific_Other_63.gml.cpp
2024-12-31T07:11:35.7688510Z 
2024-12-31T07:11:35.8186382Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_List_Slot_Mouse_7.gml.cpp
2024-12-31T07:11:35.8186939Z 
2024-12-31T07:11:35.8732604Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_List_Create_0.gml.cpp
2024-12-31T07:11:35.8733140Z 
2024-12-31T07:11:35.9253211Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_List_Slot_Draw_0.gml.cpp
2024-12-31T07:11:35.9253813Z 
2024-12-31T07:11:35.9567672Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_List_Mouse_7.gml.cpp
2024-12-31T07:11:35.9568601Z 
2024-12-31T07:11:35.9949029Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Chat_Create_0.gml.cpp
2024-12-31T07:11:35.9949605Z 
2024-12-31T07:11:36.0201558Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Chat_Mouse_7.gml.cpp
2024-12-31T07:11:36.0202196Z 
2024-12-31T07:11:36.0974605Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Chat_Other_63.gml.cpp
2024-12-31T07:11:36.0975250Z 
2024-12-31T07:11:36.2183512Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Color_Create_0.gml.cpp
2024-12-31T07:11:36.2184136Z 
2024-12-31T07:11:36.2834609Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Chat_Other_69.gml.cpp
2024-12-31T07:11:36.2835168Z 
2024-12-31T07:11:36.3091785Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Color_Mouse_7.gml.cpp
2024-12-31T07:11:36.3092803Z 
2024-12-31T07:11:36.3374822Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_setOwner_Create_0.gml.cpp
2024-12-31T07:11:36.3375435Z 
2024-12-31T07:11:36.3765939Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_setOwner_Mouse_7.gml.cpp
2024-12-31T07:11:36.3766608Z 
2024-12-31T07:11:36.4347625Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_setOwner_Other_63.gml.cpp
2024-12-31T07:11:36.4348251Z 
2024-12-31T07:11:36.4806590Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Create_0.gml.cpp
2024-12-31T07:11:36.4807386Z 
2024-12-31T07:11:36.6021993Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Alarm_0.gml.cpp
2024-12-31T07:11:36.6022549Z 
2024-12-31T07:11:36.8486373Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Step_0.gml.cpp
2024-12-31T07:11:36.8486974Z 
2024-12-31T07:11:36.8729053Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_Draw_0.gml.cpp
2024-12-31T07:11:36.8729673Z 
2024-12-31T07:11:36.8913189Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Lobby_CleanUp_0.gml.cpp
2024-12-31T07:11:36.8913770Z 
2024-12-31T07:11:36.9267861Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Overlay_Create_0.gml.cpp
2024-12-31T07:11:36.9268440Z 
2024-12-31T07:11:36.9355923Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Overlay_Mouse_7.gml.cpp
2024-12-31T07:11:36.9356485Z 
2024-12-31T07:11:36.9782596Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Create_0.gml.cpp
2024-12-31T07:11:36.9783080Z 
2024-12-31T07:11:37.0007658Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Mouse_7.gml.cpp
2024-12-31T07:11:37.0008193Z 
2024-12-31T07:11:37.0564205Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Achievements_Create_0.gml.cpp
2024-12-31T07:11:37.0564790Z 
2024-12-31T07:11:37.1096808Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Achievements_Mouse_7.gml.cpp
2024-12-31T07:11:37.1097315Z 
2024-12-31T07:11:37.1623345Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Browser_Create_0.gml.cpp
2024-12-31T07:11:37.1623902Z 
2024-12-31T07:11:37.2175879Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Browser_Mouse_7.gml.cpp
2024-12-31T07:11:37.2176577Z 
2024-12-31T07:11:37.2713152Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Community_Create_0.gml.cpp
2024-12-31T07:11:37.2731408Z 
2024-12-31T07:11:37.2784158Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Networking_Other_69.gml.cpp
2024-12-31T07:11:37.2784723Z 
2024-12-31T07:11:37.3254856Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Community_Mouse_7.gml.cpp
2024-12-31T07:11:37.3255426Z 
2024-12-31T07:11:37.3319328Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Friends_Create_0.gml.cpp
2024-12-31T07:11:37.3321324Z 
2024-12-31T07:11:37.3800660Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Friends_Mouse_7.gml.cpp
2024-12-31T07:11:37.3801784Z 
2024-12-31T07:11:37.3864059Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_GameGroup_Create_0.gml.cpp
2024-12-31T07:11:37.3864963Z 
2024-12-31T07:11:37.4388029Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_GameGroup_Mouse_7.gml.cpp
2024-12-31T07:11:37.4388583Z 
2024-12-31T07:11:37.4391522Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Players_Create_0.gml.cpp
2024-12-31T07:11:37.4393200Z 
2024-12-31T07:11:37.4899410Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Players_Mouse_7.gml.cpp
2024-12-31T07:11:37.4900143Z 
2024-12-31T07:11:37.4929261Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Setting_Create_0.gml.cpp
2024-12-31T07:11:37.4932135Z 
2024-12-31T07:11:37.5465074Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Store_Create_0.gml.cpp
2024-12-31T07:11:37.5483543Z 
2024-12-31T07:11:37.5502659Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Setting_Mouse_7.gml.cpp
2024-12-31T07:11:37.5503507Z 
2024-12-31T07:11:37.6046799Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_User_Create_0.gml.cpp
2024-12-31T07:11:37.6047785Z 
2024-12-31T07:11:37.6052382Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_Store_Mouse_7.gml.cpp
2024-12-31T07:11:37.6055438Z 
2024-12-31T07:11:37.6646032Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Overlay_User_Mouse_7.gml.cpp
2024-12-31T07:11:37.6657545Z 
2024-12-31T07:11:37.7159188Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Pause_Create_0.gml.cpp
2024-12-31T07:11:37.7161280Z 
2024-12-31T07:11:37.7578893Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Pause_Mouse_4.gml.cpp
2024-12-31T07:11:37.7591862Z 
2024-12-31T07:11:37.7964115Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_OverlayInfo_Draw_0.gml.cpp
2024-12-31T07:11:37.7964874Z 
2024-12-31T07:11:37.8093819Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Play_Next_Create_0.gml.cpp
2024-12-31T07:11:37.8094574Z 
2024-12-31T07:11:37.8392031Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Play_Next_Mouse_4.gml.cpp
2024-12-31T07:11:37.8395095Z 
2024-12-31T07:11:37.8634229Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Play_Previous_Create_0.gml.cpp
2024-12-31T07:11:37.8634845Z 
2024-12-31T07:11:37.8831851Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Play_Previous_Mouse_4.gml.cpp
2024-12-31T07:11:37.8832426Z 
2024-12-31T07:11:37.9142104Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Play_Create_0.gml.cpp
2024-12-31T07:11:37.9143571Z 
2024-12-31T07:11:37.9238129Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Play_Mouse_4.gml.cpp
2024-12-31T07:11:37.9241485Z 
2024-12-31T07:11:38.0578941Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_ProfileImage_Other_69.gml.cpp
2024-12-31T07:11:38.0579870Z 
2024-12-31T07:11:38.1239631Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_ProfileImage_Draw_0.gml.cpp
2024-12-31T07:11:38.1240509Z 
2024-12-31T07:11:38.1558083Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_ProfileImage_Create_0.gml.cpp
2024-12-31T07:11:38.1581489Z 
2024-12-31T07:11:38.1935545Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_ProfileImage_CleanUp_0.gml.cpp
2024-12-31T07:11:38.1942193Z 
2024-12-31T07:11:38.2124378Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Screenshot_Create_0.gml.cpp
2024-12-31T07:11:38.2125137Z 
2024-12-31T07:11:38.2667444Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Set_Volume_Create_0.gml.cpp
2024-12-31T07:11:38.2670049Z 
2024-12-31T07:11:38.2718453Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Screenshot_Mouse_4.gml.cpp
2024-12-31T07:11:38.2732540Z 
2024-12-31T07:11:38.3533670Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Set_Volume_Mouse_7.gml.cpp
2024-12-31T07:11:38.3538447Z 
2024-12-31T07:11:38.3696143Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Set_Volume_Other_63.gml.cpp
2024-12-31T07:11:38.3705708Z 
2024-12-31T07:11:38.4126351Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Stat_AverageSpeed_Create_0.gml.cpp
2024-12-31T07:11:38.4126937Z 
2024-12-31T07:11:38.4328316Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Stat_AverageSpeed_Mouse_7.gml.cpp
2024-12-31T07:11:38.4328883Z 
2024-12-31T07:11:38.4708227Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Stat_FeetsTraveled_Create_0.gml.cpp
2024-12-31T07:11:38.4709229Z 
2024-12-31T07:11:38.5275198Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Stat_FeetsTraveled_Mouse_7.gml.cpp
2024-12-31T07:11:38.5276480Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Stat_Lose_Create_0.gml.cpp
2024-12-31T07:11:38.5277007Z 
2024-12-31T07:11:38.6319663Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Stat_Lose_Mouse_7.gml.cpp
2024-12-31T07:11:38.6322511Z 
2024-12-31T07:11:38.6328510Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Stat_Win_Create_0.gml.cpp
2024-12-31T07:11:38.6335086Z 
2024-12-31T07:11:38.7535431Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Stat_Win_Mouse_7.gml.cpp
2024-12-31T07:11:38.7535970Z 
2024-12-31T07:11:38.9561789Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_StatsInfo_Draw_0.gml.cpp
2024-12-31T07:11:38.9562350Z 
2024-12-31T07:11:39.0147192Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Ticket_Create_0.gml.cpp
2024-12-31T07:11:39.0147721Z 
2024-12-31T07:11:39.1492241Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_StorageInfo_Draw_0.gml.cpp
2024-12-31T07:11:39.1492985Z 
2024-12-31T07:11:39.1582394Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Ticket_Mouse_7.gml.cpp
2024-12-31T07:11:39.1583038Z 
2024-12-31T07:11:39.2167046Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Create_Create_0.gml.cpp
2024-12-31T07:11:39.2167586Z 
2024-12-31T07:11:39.2814439Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Create_Mouse_7.gml.cpp
2024-12-31T07:11:39.2815024Z 
2024-12-31T07:11:39.3342037Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Ticket_Other_69.gml.cpp
2024-12-31T07:11:39.3342592Z 
2024-12-31T07:11:39.3929428Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Item_Actions_Create_0.gml.cpp
2024-12-31T07:11:39.3929975Z 
2024-12-31T07:11:39.4612336Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Item_Create_0.gml.cpp
2024-12-31T07:11:39.4612899Z 
2024-12-31T07:11:39.5294412Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Item_Mouse_7.gml.cpp
2024-12-31T07:11:39.5294964Z 
2024-12-31T07:11:39.5312765Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Create_Other_69.gml.cpp
2024-12-31T07:11:39.5313426Z 
2024-12-31T07:11:39.5860915Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Query_All_Create_0.gml.cpp
2024-12-31T07:11:39.5861628Z 
2024-12-31T07:11:39.6577590Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Query_All_Mouse_7.gml.cpp
2024-12-31T07:11:39.6578994Z 
2024-12-31T07:11:39.7142773Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Query_User_Create_0.gml.cpp
2024-12-31T07:11:39.7143816Z 
2024-12-31T07:11:39.7876337Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Query_User_Mouse_7.gml.cpp
2024-12-31T07:11:39.7877287Z 
2024-12-31T07:11:39.8198273Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Item_Other_63.gml.cpp
2024-12-31T07:11:39.8199722Z 
2024-12-31T07:11:39.8414596Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Subscribed_Create_0.gml.cpp
2024-12-31T07:11:39.8420275Z 
2024-12-31T07:11:40.0160173Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Subscribed_Mouse_7.gml.cpp
2024-12-31T07:11:40.0166290Z 
2024-12-31T07:11:40.0764232Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Other_69.gml.cpp
2024-12-31T07:11:40.0776762Z 
2024-12-31T07:11:40.1402003Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_UGC_Draw_0.gml.cpp
2024-12-31T07:11:40.1402771Z 
2024-12-31T07:11:40.1457582Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Create_0.gml.cpp
2024-12-31T07:11:40.1458697Z 
2024-12-31T07:11:40.1832514Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Step_0.gml.cpp
2024-12-31T07:11:40.1833777Z 
2024-12-31T07:11:40.2317452Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Other_3.gml.cpp
2024-12-31T07:11:40.2318394Z 
2024-12-31T07:11:40.3432822Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Draw_64.gml.cpp
2024-12-31T07:11:40.3433960Z 
2024-12-31T07:11:40.3964776Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_KeyPress_82.gml.cpp
2024-12-31T07:11:40.3965667Z 
2024-12-31T07:11:40.4513623Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_KeyPress_68.gml.cpp
2024-12-31T07:11:40.4514445Z 
2024-12-31T07:11:40.4964866Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_Other_69.gml.cpp
2024-12-31T07:11:40.4965735Z 
2024-12-31T07:11:40.5046465Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_Steam_KeyPress_65.gml.cpp
2024-12-31T07:11:40.5047314Z 
2024-12-31T07:11:40.6386332Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_template_complete_Draw_64.gml.cpp
2024-12-31T07:11:40.6387191Z 
2024-12-31T07:11:40.6401590Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_template_complete_Create_0.gml.cpp
2024-12-31T07:11:40.6402476Z 
2024-12-31T07:11:40.7298248Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_text_popup_Create_0.gml.cpp
2024-12-31T07:11:40.7299250Z 
2024-12-31T07:11:40.7615037Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_text_popup_Step_0.gml.cpp
2024-12-31T07:11:40.7616026Z 
2024-12-31T07:11:40.8326011Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_title_Create_0.gml.cpp
2024-12-31T07:11:40.8328589Z 
2024-12-31T07:11:40.8466921Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_text_popup_Draw_0.gml.cpp
2024-12-31T07:11:40.8468093Z 
2024-12-31T07:11:40.8755047Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_title_CleanUp_0.gml.cpp
2024-12-31T07:11:40.8771498Z 
2024-12-31T07:11:40.9374538Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_upgrade_screen_Create_0.gml.cpp
2024-12-31T07:11:40.9423589Z 
2024-12-31T07:11:40.9497767Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_upgrade_screen_Draw_64.gml.cpp
2024-12-31T07:11:40.9498293Z 
2024-12-31T07:11:41.0118529Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_upgrade_Create_0.gml.cpp
2024-12-31T07:11:41.0119379Z 
2024-12-31T07:11:41.0776857Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_upgrade_Step_2.gml.cpp
2024-12-31T07:11:41.0777703Z 
2024-12-31T07:11:41.2943394Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_upgrade_Draw_64.gml.cpp
2024-12-31T07:11:41.2945464Z 
2024-12-31T07:11:41.3204528Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_upgrade_Draw_0.gml.cpp
2024-12-31T07:11:41.3207109Z 
2024-12-31T07:11:41.3747780Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_YoYo_button_Create_0.gml.cpp
2024-12-31T07:11:41.3765871Z 
2024-12-31T07:11:41.4469108Z [arm64-v8a] Compile++      : yoyo <= gml_Object_obj_upgrade_Step_0.gml.cpp
2024-12-31T07:11:41.4469927Z 
2024-12-31T07:11:41.4725015Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_YoYo_button_Step_0.gml.cpp
2024-12-31T07:11:41.4725956Z 
2024-12-31T07:11:41.4765914Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_YoYo_button_Draw_0.gml.cpp
2024-12-31T07:11:41.4766831Z 
2024-12-31T07:11:41.5368359Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_YoYo_text_Create_0.gml.cpp
2024-12-31T07:11:41.5370896Z 
2024-12-31T07:11:41.5523499Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_YoYo_text_Draw_0.gml.cpp
2024-12-31T07:11:41.5524040Z 
2024-12-31T07:11:41.6530922Z [arm64-v8a] Compile++      : yoyo <= Survivor_Game___Build_Test.vars.cpp
2024-12-31T07:11:41.6532050Z 
2024-12-31T07:11:41.6718128Z [arm64-v8a] Compile++      : yoyo <= gml_Object_Obj_YoYo_textbox_Draw_0.gml.cpp
2024-12-31T07:11:41.6720327Z 
2024-12-31T07:11:41.7861327Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_attack_trail.gml.cpp
2024-12-31T07:11:41.7881997Z 
2024-12-31T07:11:41.8556045Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_get_upgrades.gml.cpp
2024-12-31T07:11:41.8556961Z 
2024-12-31T07:11:41.8958765Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_GOG_UnixTimeToGMTime.gml.cpp
2024-12-31T07:11:41.8960753Z 
2024-12-31T07:11:41.9633043Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_list_shuffle.gml.cpp
2024-12-31T07:11:41.9633889Z 
2024-12-31T07:11:42.0144803Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_keep_in_room.gml.cpp
2024-12-31T07:11:42.0145580Z 
2024-12-31T07:11:42.0756208Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_next_wave.gml.cpp
2024-12-31T07:11:42.0757007Z 
2024-12-31T07:11:42.1239174Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_pause.gml.cpp
2024-12-31T07:11:42.1240115Z 
2024-12-31T07:11:42.3716326Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_shooting_attack.gml.cpp
2024-12-31T07:11:42.3718435Z 
2024-12-31T07:11:42.4587501Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_player_movement.gml.cpp
2024-12-31T07:11:42.4589797Z 
2024-12-31T07:11:42.4763297Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_swipe_attack.gml.cpp
2024-12-31T07:11:42.4764162Z 
2024-12-31T07:11:42.5399332Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_unpause.gml.cpp
2024-12-31T07:11:42.5400475Z 
2024-12-31T07:11:42.8708647Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_weapon_swipe.gml.cpp
2024-12-31T07:11:42.8711252Z 
2024-12-31T07:11:42.8908341Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_weapon_shooting.gml.cpp
2024-12-31T07:11:42.8910685Z 
2024-12-31T07:11:42.9513992Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Input_0_Create.gml.cpp
2024-12-31T07:11:42.9514927Z 
2024-12-31T07:11:43.0082864Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Main_0_Create.gml.cpp
2024-12-31T07:11:43.0084186Z 
2024-12-31T07:11:43.0768878Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Main_1_Create.gml.cpp
2024-12-31T07:11:43.0770013Z 
2024-12-31T07:11:43.1378920Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Main_2_Create.gml.cpp
2024-12-31T07:11:43.1382226Z 
2024-12-31T07:11:43.1942471Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Main_3_Create.gml.cpp
2024-12-31T07:11:43.1943426Z 
2024-12-31T07:11:43.2063924Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_GlobalScript_weapon_trail.gml.cpp
2024-12-31T07:11:43.2064640Z 
2024-12-31T07:11:43.2575069Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Main_4_Create.gml.cpp
2024-12-31T07:11:43.2575960Z 
2024-12-31T07:11:43.2634022Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Main_5_Create.gml.cpp
2024-12-31T07:11:43.2634871Z 
2024-12-31T07:11:43.3139329Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Main_6_Create.gml.cpp
2024-12-31T07:11:43.3140364Z 
2024-12-31T07:11:43.3228138Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Music_0_Create.gml.cpp
2024-12-31T07:11:43.3229059Z 
2024-12-31T07:11:43.3726202Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Networking_Lobby_0_Create.gml.cpp
2024-12-31T07:11:43.3727113Z 
2024-12-31T07:11:43.3855172Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Networking_Matchmaking_0_Create.gml.cpp
2024-12-31T07:11:43.3856204Z 
2024-12-31T07:11:43.4328582Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Overlay_0_Create.gml.cpp
2024-12-31T07:11:43.4337133Z 
2024-12-31T07:11:43.4427638Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_0_Create.gml.cpp
2024-12-31T07:11:43.4433894Z 
2024-12-31T07:11:43.4872487Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_1_Create.gml.cpp
2024-12-31T07:11:43.4877753Z 
2024-12-31T07:11:43.5013035Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_2_Create.gml.cpp
2024-12-31T07:11:43.5019309Z 
2024-12-31T07:11:43.5460518Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_3_Create.gml.cpp
2024-12-31T07:11:43.5464881Z 
2024-12-31T07:11:43.5611356Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_4_Create.gml.cpp
2024-12-31T07:11:43.5614558Z 
2024-12-31T07:11:43.6069066Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_5_Create.gml.cpp
2024-12-31T07:11:43.6071941Z 
2024-12-31T07:11:43.6179194Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_6_Create.gml.cpp
2024-12-31T07:11:43.6180094Z 
2024-12-31T07:11:43.6561906Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_7_Create.gml.cpp
2024-12-31T07:11:43.6566144Z 
2024-12-31T07:11:43.6710524Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_8_Create.gml.cpp
2024-12-31T07:11:43.6715868Z 
2024-12-31T07:11:43.7094941Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_9_Create.gml.cpp
2024-12-31T07:11:43.7096008Z 
2024-12-31T07:11:43.7300714Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Social_Leaderboard_0_Create.gml.cpp
2024-12-31T07:11:43.7306319Z 
2024-12-31T07:11:43.7646553Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_Storage_0_Create.gml.cpp
2024-12-31T07:11:43.7652735Z 
2024-12-31T07:11:43.7899494Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Steam_UGC_0_Create.gml.cpp
2024-12-31T07:11:43.7900211Z 
2024-12-31T07:11:43.8247598Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Achievements_0_Create.gml.cpp
2024-12-31T07:11:43.8252213Z 
2024-12-31T07:11:43.8477724Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Friends_0_Create.gml.cpp
2024-12-31T07:11:43.8479288Z 
2024-12-31T07:11:43.8844481Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Friends_1_Create.gml.cpp
2024-12-31T07:11:43.8847568Z 
2024-12-31T07:11:43.9069118Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Leaderboards_0_Create.gml.cpp
2024-12-31T07:11:43.9071882Z 
2024-12-31T07:11:43.9436625Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Leaderboards_1_Create.gml.cpp
2024-12-31T07:11:43.9439905Z 
2024-12-31T07:11:43.9659285Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Menu_0_Create.gml.cpp
2024-12-31T07:11:43.9664510Z 
2024-12-31T07:11:44.0028085Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Menu_1_Create.gml.cpp
2024-12-31T07:11:44.0033166Z 
2024-12-31T07:11:44.0260151Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Menu_2_Create.gml.cpp
2024-12-31T07:11:44.0261352Z 
2024-12-31T07:11:44.0645100Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Menu_3_Create.gml.cpp
2024-12-31T07:11:44.0646287Z 
2024-12-31T07:11:44.0925431Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Menu_4_Create.gml.cpp
2024-12-31T07:11:44.0926477Z 
2024-12-31T07:11:44.1199330Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Menu_5_Create.gml.cpp
2024-12-31T07:11:44.1200304Z 
2024-12-31T07:11:44.1562029Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Menu_6_Create.gml.cpp
2024-12-31T07:11:44.1563942Z 
2024-12-31T07:11:44.1801281Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_PlayerDataStorage_0_Create.gml.cpp
2024-12-31T07:11:44.1802135Z 
2024-12-31T07:11:44.2170850Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_PlayerDataStorage_1_Create.gml.cpp
2024-12-31T07:11:44.2176502Z 
2024-12-31T07:11:44.2375185Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Stats_0_Create.gml.cpp
2024-12-31T07:11:44.2375875Z 
2024-12-31T07:11:44.2789012Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_Stats_1_Create.gml.cpp
2024-12-31T07:11:44.2789933Z 
2024-12-31T07:11:44.2976086Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_TitleStorage_0_Create.gml.cpp
2024-12-31T07:11:44.2993128Z 
2024-12-31T07:11:44.3418361Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_EpicGames_TitleStorage_1_Create.gml.cpp
2024-12-31T07:11:44.3419662Z 
2024-12-31T07:11:44.3504198Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_0_Create.gml.cpp
2024-12-31T07:11:44.3505507Z 
2024-12-31T07:11:44.3972549Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_1_Create.gml.cpp
2024-12-31T07:11:44.3974890Z 
2024-12-31T07:11:44.4063836Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_2_Create.gml.cpp
2024-12-31T07:11:44.4064653Z 
2024-12-31T07:11:44.4530199Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_3_Create.gml.cpp
2024-12-31T07:11:44.4532067Z 
2024-12-31T07:11:44.4575049Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_4_Create.gml.cpp
2024-12-31T07:11:44.4575600Z 
2024-12-31T07:11:44.5033452Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_5_Create.gml.cpp
2024-12-31T07:11:44.5034087Z 
2024-12-31T07:11:44.5038467Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_6_Create.gml.cpp
2024-12-31T07:11:44.5040605Z 
2024-12-31T07:11:44.5576468Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_7_Create.gml.cpp
2024-12-31T07:11:44.5576995Z 
2024-12-31T07:11:44.5593703Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_8_Create.gml.cpp
2024-12-31T07:11:44.5594428Z 
2024-12-31T07:11:44.6077987Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_10_Create.gml.cpp
2024-12-31T07:11:44.6080818Z 
2024-12-31T07:11:44.6089604Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_Yoyo_9_Create.gml.cpp
2024-12-31T07:11:44.6092286Z 
2024-12-31T07:11:44.6658071Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_GOG_Menu_0_Create.gml.cpp
2024-12-31T07:11:44.6661772Z 
2024-12-31T07:11:44.6714902Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_GOG_Menu_1_Create.gml.cpp
2024-12-31T07:11:44.6716666Z 
2024-12-31T07:11:44.7248987Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_GOG_Menu_3_Create.gml.cpp
2024-12-31T07:11:44.7249922Z 
2024-12-31T07:11:44.7258386Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_GOG_Menu_2_Create.gml.cpp
2024-12-31T07:11:44.7259144Z 
2024-12-31T07:11:44.7819303Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_GOG_Menu_4_Create.gml.cpp
2024-12-31T07:11:44.7820251Z 
2024-12-31T07:11:44.7828775Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_RoomCC_Room_GOG_Menu_5_Create.gml.cpp
2024-12-31T07:11:44.7829577Z 
2024-12-31T07:11:44.8388966Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_audio_Create_0.gml.cpp
2024-12-31T07:11:44.8391633Z 
2024-12-31T07:11:44.9006477Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_audio_Step_2.gml.cpp
2024-12-31T07:11:44.9012027Z 
2024-12-31T07:11:44.9884074Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_audio_Draw_64.gml.cpp
2024-12-31T07:11:44.9884906Z 
2024-12-31T07:11:45.0139868Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_audio_Draw_0.gml.cpp
2024-12-31T07:11:45.0145535Z 
2024-12-31T07:11:45.0285695Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_audio_Step_0.gml.cpp
2024-12-31T07:11:45.0287057Z 
2024-12-31T07:11:45.0708879Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_exit_Create_0.gml.cpp
2024-12-31T07:11:45.0710068Z 
2024-12-31T07:11:45.1294506Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_exit_Step_2.gml.cpp
2024-12-31T07:11:45.1295480Z 
2024-12-31T07:11:45.2458832Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_exit_Draw_64.gml.cpp
2024-12-31T07:11:45.2459825Z 
2024-12-31T07:11:45.2717799Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_exit_Step_0.gml.cpp
2024-12-31T07:11:45.2719839Z 
2024-12-31T07:11:45.2738595Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_exit_Draw_0.gml.cpp
2024-12-31T07:11:45.2741267Z 
2024-12-31T07:11:45.3287805Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Button_GoTo_Mouse_7.gml.cpp
2024-12-31T07:11:45.3290069Z 
2024-12-31T07:11:45.3308350Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Button_GoTo_Create_0.gml.cpp
2024-12-31T07:11:45.3310811Z 
2024-12-31T07:11:45.3856304Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_quit_Create_0.gml.cpp
2024-12-31T07:11:45.3856857Z 
2024-12-31T07:11:45.4464720Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_quit_Step_2.gml.cpp
2024-12-31T07:11:45.4469090Z 
2024-12-31T07:11:45.5131319Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_quit_Draw_64.gml.cpp
2024-12-31T07:11:45.5132315Z 
2024-12-31T07:11:45.5275744Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_quit_Step_0.gml.cpp
2024-12-31T07:11:45.5276730Z 
2024-12-31T07:11:45.5393402Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_quit_Draw_0.gml.cpp
2024-12-31T07:11:45.5395425Z 
2024-12-31T07:11:45.5876268Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_reroll_Create_0.gml.cpp
2024-12-31T07:11:45.5877754Z 
2024-12-31T07:11:45.6438176Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_reroll_Step_2.gml.cpp
2024-12-31T07:11:45.6440294Z 
2024-12-31T07:11:45.7558010Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_reroll_Draw_64.gml.cpp
2024-12-31T07:11:45.7560241Z 
2024-12-31T07:11:45.7735685Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_reroll_Step_0.gml.cpp
2024-12-31T07:11:45.7736682Z 
2024-12-31T07:11:45.7831707Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_reroll_Draw_0.gml.cpp
2024-12-31T07:11:45.7832604Z 
2024-12-31T07:11:45.8317177Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_resume_Create_0.gml.cpp
2024-12-31T07:11:45.8318273Z 
2024-12-31T07:11:45.8930582Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_resume_Step_2.gml.cpp
2024-12-31T07:11:45.8931724Z 
2024-12-31T07:11:46.0036773Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_resume_Draw_64.gml.cpp
2024-12-31T07:11:46.0040880Z 
2024-12-31T07:11:46.0304944Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_resume_Draw_0.gml.cpp
2024-12-31T07:11:46.0306284Z 
2024-12-31T07:11:46.0816210Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_retry_Create_0.gml.cpp
2024-12-31T07:11:46.0817115Z 
2024-12-31T07:11:46.0966689Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_resume_Step_0.gml.cpp
2024-12-31T07:11:46.0967443Z 
2024-12-31T07:11:46.1601799Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_retry_Step_2.gml.cpp
2024-12-31T07:11:46.1605856Z 
2024-12-31T07:11:46.2722584Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_retry_Draw_64.gml.cpp
2024-12-31T07:11:46.2726965Z 
2024-12-31T07:11:46.2975604Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_retry_Draw_0.gml.cpp
2024-12-31T07:11:46.2977656Z 
2024-12-31T07:11:46.3219238Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_retry_Step_0.gml.cpp
2024-12-31T07:11:46.3221839Z 
2024-12-31T07:11:46.3553324Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_start_Create_0.gml.cpp
2024-12-31T07:11:46.3585136Z 
2024-12-31T07:11:46.4145743Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_start_Step_2.gml.cpp
2024-12-31T07:11:46.4146655Z 
2024-12-31T07:11:46.5284066Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_start_Draw_64.gml.cpp
2024-12-31T07:11:46.5284813Z 
2024-12-31T07:11:46.5536201Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_start_Draw_0.gml.cpp
2024-12-31T07:11:46.5555123Z 
2024-12-31T07:11:46.5658005Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_button_start_Step_0.gml.cpp
2024-12-31T07:11:46.5684632Z 
2024-12-31T07:11:46.6417548Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_collectable_Create_0.gml.cpp
2024-12-31T07:11:46.6418516Z 
2024-12-31T07:11:46.6946882Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_collectable_Step_0.gml.cpp
2024-12-31T07:11:46.6951759Z 
2024-12-31T07:11:46.7950423Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_collectable_Draw_0.gml.cpp
2024-12-31T07:11:46.7956884Z 
2024-12-31T07:11:46.8237087Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Create_0.gml.cpp
2024-12-31T07:11:46.8237624Z 
2024-12-31T07:11:46.9104660Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Step_0.gml.cpp
2024-12-31T07:11:46.9105519Z 
2024-12-31T07:11:46.9384889Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Destroy_0.gml.cpp
2024-12-31T07:11:46.9385863Z 
2024-12-31T07:11:47.0224001Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Collision_obj_enemy.gml.cpp
2024-12-31T07:11:47.0224540Z 
2024-12-31T07:11:47.1108116Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Collision_obj_hero_bullet.gml.cpp
2024-12-31T07:11:47.1108756Z 
2024-12-31T07:11:47.2223992Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Collision_obj_hero_swipe.gml.cpp
2024-12-31T07:11:47.2224804Z 
2024-12-31T07:11:47.2781198Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Other_7.gml.cpp
2024-12-31T07:11:47.2781713Z 
2024-12-31T07:11:47.3198239Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Collision_obj_hero_trail.gml.cpp
2024-12-31T07:11:47.3198846Z 
2024-12-31T07:11:47.4118312Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Achievement_Create_0.gml.cpp
2024-12-31T07:11:47.4118922Z 
2024-12-31T07:11:47.4251232Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_enemy_Draw_73.gml.cpp
2024-12-31T07:11:47.4251770Z 
2024-12-31T07:11:47.5095028Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Achievement_Alarm_0.gml.cpp
2024-12-31T07:11:47.5095653Z 
2024-12-31T07:11:47.5757601Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Achievement_Step_0.gml.cpp
2024-12-31T07:11:47.5758229Z 
2024-12-31T07:11:47.6336592Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Achievements_Controller_Create_0.gml.cpp
2024-12-31T07:11:47.6337524Z 
2024-12-31T07:11:47.7742303Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Achievement_Draw_0.gml.cpp
2024-12-31T07:11:47.7742850Z 
2024-12-31T07:11:47.8395519Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Auth_Logout_Step_0.gml.cpp
2024-12-31T07:11:47.8396293Z 
2024-12-31T07:11:47.9162476Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Auth_Logout_Mouse_4.gml.cpp
2024-12-31T07:11:47.9162999Z 
2024-12-31T07:11:48.0585907Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Achievements_Controller_Other_70.gml.cpp
2024-12-31T07:11:48.0586569Z 
2024-12-31T07:11:48.0715370Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Controller_Create_0.gml.cpp
2024-12-31T07:11:48.0715960Z 
2024-12-31T07:11:48.1130573Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Controller_Step_0.gml.cpp
2024-12-31T07:11:48.1132610Z 
2024-12-31T07:11:48.1435421Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Controller_Alarm_0.gml.cpp
2024-12-31T07:11:48.1436328Z 
2024-12-31T07:11:48.2612205Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Controller_Other_63.gml.cpp
2024-12-31T07:11:48.2613215Z 
2024-12-31T07:11:48.3404274Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Controller_CleanUp_0.gml.cpp
2024-12-31T07:11:48.3405224Z 
2024-12-31T07:11:48.4014793Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Controller_Other_70.gml.cpp
2024-12-31T07:11:48.4015785Z 
2024-12-31T07:11:48.4290103Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Friend_Create_0.gml.cpp
2024-12-31T07:11:48.4291246Z 
2024-12-31T07:11:48.4655047Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Friend_Alarm_0.gml.cpp
2024-12-31T07:11:48.4656038Z 
2024-12-31T07:11:48.5329657Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Friend_Draw_0.gml.cpp
2024-12-31T07:11:48.5330677Z 
2024-12-31T07:11:48.5516315Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Friend_Other_70.gml.cpp
2024-12-31T07:11:48.5517181Z 
2024-12-31T07:11:48.5893379Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Friends_Create_0.gml.cpp
2024-12-31T07:11:48.5894313Z 
2024-12-31T07:11:48.6523569Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderbaord_Definition_Create_0.gml.cpp
2024-12-31T07:11:48.6524586Z 
2024-12-31T07:11:48.7135114Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Friends_Other_70.gml.cpp
2024-12-31T07:11:48.7136060Z 
2024-12-31T07:11:48.7230177Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderbaord_Definition_Mouse_4.gml.cpp
2024-12-31T07:11:48.7235275Z 
2024-12-31T07:11:48.7824779Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderbaord_Rank_Create_0.gml.cpp
2024-12-31T07:11:48.7829690Z 
2024-12-31T07:11:48.7863281Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderbaord_Definition_Draw_0.gml.cpp
2024-12-31T07:11:48.7867956Z 
2024-12-31T07:11:48.8396325Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderboard_AddScore_1_Create_0.gml.cpp
2024-12-31T07:11:48.8397216Z 
2024-12-31T07:11:48.9176086Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderbaord_Rank_Draw_0.gml.cpp
2024-12-31T07:11:48.9179871Z 
2024-12-31T07:11:48.9415726Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderboard_AddScore_1_Mouse_4.gml.cpp
2024-12-31T07:11:48.9418493Z 
2024-12-31T07:11:48.9702021Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderboard_AddScore_2_Create_0.gml.cpp
2024-12-31T07:11:48.9706945Z 
2024-12-31T07:11:49.0493139Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderboard_AddScore_2_Mouse_4.gml.cpp
2024-12-31T07:11:49.0511671Z 
2024-12-31T07:11:49.0566745Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderboards_Controller_Create_0.gml.cpp
2024-12-31T07:11:49.0567689Z 
2024-12-31T07:11:49.2831974Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Menu_Draw_0.gml.cpp
2024-12-31T07:11:49.2833848Z 
2024-12-31T07:11:49.4036134Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Metrics_Create_0.gml.cpp
2024-12-31T07:11:49.4038132Z 
2024-12-31T07:11:49.5037987Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Metrics_CleanUp_0.gml.cpp
2024-12-31T07:11:49.5039162Z 
2024-12-31T07:11:49.5098156Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Leaderboards_Controller_Other_70.gml.cpp
2024-12-31T07:11:49.5100809Z 
2024-12-31T07:11:49.5508416Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Platform_Ticking_Mouse_7.gml.cpp
2024-12-31T07:11:49.5511183Z 
2024-12-31T07:11:49.5653075Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Platform_Tick_Step_0.gml.cpp
2024-12-31T07:11:49.5655456Z 
2024-12-31T07:11:49.6043852Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Download_Cancel_Create_0.gml.cpp
2024-12-31T07:11:49.6045915Z 
2024-12-31T07:11:49.6217192Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Download_Cancel_Mouse_4.gml.cpp
2024-12-31T07:11:49.6218335Z 
2024-12-31T07:11:49.6688603Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Download_Create_0.gml.cpp
2024-12-31T07:11:49.6689751Z 
2024-12-31T07:11:49.7584140Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Download_Alarm_0.gml.cpp
2024-12-31T07:11:49.7586443Z 
2024-12-31T07:11:49.8655286Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Download_Other_70.gml.cpp
2024-12-31T07:11:49.8659973Z 
2024-12-31T07:11:49.9033687Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Download_CleanUp_0.gml.cpp
2024-12-31T07:11:49.9048529Z 
2024-12-31T07:11:49.9533690Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Upload_Cancel_Create_0.gml.cpp
2024-12-31T07:11:49.9536988Z 
2024-12-31T07:11:49.9870131Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Download_Draw_0.gml.cpp
2024-12-31T07:11:49.9874257Z 
2024-12-31T07:11:50.0086548Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Upload_Cancel_Mouse_4.gml.cpp
2024-12-31T07:11:50.0091405Z 
2024-12-31T07:11:50.0586637Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Upload_Create_0.gml.cpp
2024-12-31T07:11:50.0587455Z 
2024-12-31T07:11:50.1583256Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Upload_Alarm_0.gml.cpp
2024-12-31T07:11:50.1584411Z 
2024-12-31T07:11:50.2499762Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Upload_Other_70.gml.cpp
2024-12-31T07:11:50.2511984Z 
2024-12-31T07:11:50.3033040Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Upload_CleanUp_0.gml.cpp
2024-12-31T07:11:50.3033937Z 
2024-12-31T07:11:50.3650347Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_Read_Create_0.gml.cpp
2024-12-31T07:11:50.3651301Z 
2024-12-31T07:11:50.3966648Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_File_Upload_Draw_0.gml.cpp
2024-12-31T07:11:50.3967529Z 
2024-12-31T07:11:50.4776414Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_Read_Mouse_4.gml.cpp
2024-12-31T07:11:50.5289777Z 
2024-12-31T07:11:50.5290595Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_Write_Create_0.gml.cpp
2024-12-31T07:11:50.5294225Z 
2024-12-31T07:11:50.5598241Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_Write_Step_0.gml.cpp
2024-12-31T07:11:50.5598920Z 
2024-12-31T07:11:50.5672515Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_Read_Other_70.gml.cpp
2024-12-31T07:11:50.5674551Z 
2024-12-31T07:11:50.6254093Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Stat_Create_0.gml.cpp
2024-12-31T07:11:50.6254672Z 
2024-12-31T07:11:50.6849409Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_PlayerDataStorage_Write_Mouse_4.gml.cpp
2024-12-31T07:11:50.6850031Z 
2024-12-31T07:11:50.7466801Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Stat_Draw_0.gml.cpp
2024-12-31T07:11:50.7467352Z 
2024-12-31T07:11:50.7509247Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Stats_Controller_Create_0.gml.cpp
2024-12-31T07:11:50.7509860Z 
2024-12-31T07:11:50.8012798Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_controller_Create_0.gml.cpp
2024-12-31T07:11:50.8013479Z 
2024-12-31T07:11:50.8705794Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_controller_Mouse_4.gml.cpp
2024-12-31T07:11:50.8706454Z 
2024-12-31T07:11:50.9884414Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_Stats_Controller_Other_70.gml.cpp
2024-12-31T07:11:50.9885101Z 
2024-12-31T07:11:51.0424716Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_File_Cancel_Create_0.gml.cpp
2024-12-31T07:11:51.0425375Z 
2024-12-31T07:11:51.0482154Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_controller_Other_70.gml.cpp
2024-12-31T07:11:51.0482735Z 
2024-12-31T07:11:51.0974891Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_File_Cancel_Mouse_4.gml.cpp
2024-12-31T07:11:51.0975542Z 
2024-12-31T07:11:51.1133139Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_File_Create_0.gml.cpp
2024-12-31T07:11:51.1133738Z 
2024-12-31T07:11:51.2431935Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_File_Alarm_0.gml.cpp
2024-12-31T07:11:51.2432980Z 
2024-12-31T07:11:51.3024268Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_File_Other_70.gml.cpp
2024-12-31T07:11:51.3026251Z 
2024-12-31T07:11:51.3408705Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_File_CleanUp_0.gml.cpp
2024-12-31T07:11:51.3410961Z 
2024-12-31T07:11:51.3895195Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_UI_Show_Create_0.gml.cpp
2024-12-31T07:11:51.3904669Z 
2024-12-31T07:11:51.4437121Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_UI_Show_Mouse_7.gml.cpp
2024-12-31T07:11:51.4450545Z 
2024-12-31T07:11:51.5743348Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_EpicGames_TitleStorage_File_Draw_0.gml.cpp
2024-12-31T07:11:51.5744945Z 
2024-12-31T07:11:51.5819186Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_game_over_Create_0.gml.cpp
2024-12-31T07:11:51.5823371Z 
2024-12-31T07:11:51.6454156Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_game_over_Draw_64.gml.cpp
2024-12-31T07:11:51.6460001Z 
2024-12-31T07:11:51.8697947Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_game_Create_0.gml.cpp
2024-12-31T07:11:51.8698523Z 
2024-12-31T07:11:51.8802505Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_game_Step_0.gml.cpp
2024-12-31T07:11:51.8803085Z 
2024-12-31T07:11:51.9235471Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_game_CleanUp_0.gml.cpp
2024-12-31T07:11:51.9236004Z 
2024-12-31T07:11:52.0699596Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_game_Draw_64.gml.cpp
2024-12-31T07:11:52.0700114Z 
2024-12-31T07:11:52.0934070Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Achievement_Create_0.gml.cpp
2024-12-31T07:11:52.0934627Z 
2024-12-31T07:11:52.1262335Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Achievement_Mouse_7.gml.cpp
2024-12-31T07:11:52.1262931Z 
2024-12-31T07:11:52.2225043Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Friend_Draw_0.gml.cpp
2024-12-31T07:11:52.2225568Z 
2024-12-31T07:11:52.2720853Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Friend_Create_0.gml.cpp
2024-12-31T07:11:52.2721662Z 
2024-12-31T07:11:52.3233987Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Friends_Controller_Create_0.gml.cpp
2024-12-31T07:11:52.3234617Z 
2024-12-31T07:11:52.3502294Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Friends_Controller_Draw_0.gml.cpp
2024-12-31T07:11:52.3502885Z 
2024-12-31T07:11:52.4459161Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Friends_Controller_Other_70.gml.cpp
2024-12-31T07:11:52.4460214Z 
2024-12-31T07:11:52.4814646Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Leaderboard_Entry_Create_0.gml.cpp
2024-12-31T07:11:52.4815709Z 
2024-12-31T07:11:52.5277506Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Leaderboard_Entry_Other_70.gml.cpp
2024-12-31T07:11:52.5278675Z 
2024-12-31T07:11:52.5794495Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Leaderboard_Entry_PreCreate_0.gml.cpp
2024-12-31T07:11:52.5799245Z 
2024-12-31T07:11:52.6002950Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Leaderboard_Entry_Draw_0.gml.cpp
2024-12-31T07:11:52.6003918Z 
2024-12-31T07:11:52.7264900Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Leaderboard_Create_0.gml.cpp
2024-12-31T07:11:52.7265746Z 
2024-12-31T07:11:52.7669347Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Leaderboard_Other_70.gml.cpp
2024-12-31T07:11:52.7670338Z 
2024-12-31T07:11:52.8484489Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stat_Float_Create_0.gml.cpp
2024-12-31T07:11:52.8485476Z 
2024-12-31T07:11:52.8684308Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Leaderboard_Draw_0.gml.cpp
2024-12-31T07:11:52.8685389Z 
2024-12-31T07:11:52.9140889Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stat_Float_Mouse_7.gml.cpp
2024-12-31T07:11:52.9141977Z 
2024-12-31T07:11:52.9636932Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stat_Float_Other_63.gml.cpp
2024-12-31T07:11:52.9644653Z 
2024-12-31T07:11:53.0093540Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stat_Float_Draw_0.gml.cpp
2024-12-31T07:11:53.0094314Z 
2024-12-31T07:11:53.0463514Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stat_Int_Create_0.gml.cpp
2024-12-31T07:11:53.0464337Z 
2024-12-31T07:11:53.0708210Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stat_Int_Mouse_7.gml.cpp
2024-12-31T07:11:53.0709211Z 
2024-12-31T07:11:53.1414471Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stat_Int_Other_63.gml.cpp
2024-12-31T07:11:53.1416818Z 
2024-12-31T07:11:53.1659118Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stat_Int_Draw_0.gml.cpp
2024-12-31T07:11:53.1660070Z 
2024-12-31T07:11:53.2043678Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_Achievement_Clear_Create_0.gml.cpp
2024-12-31T07:11:53.2044796Z 
2024-12-31T07:11:53.2198005Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_Achievement_Clear_Mouse_7.gml.cpp
2024-12-31T07:11:53.2199122Z 
2024-12-31T07:11:53.2579474Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_ResetStatsAndAchievements_Create_0.gml.cpp
2024-12-31T07:11:53.2584342Z 
2024-12-31T07:11:53.2738208Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_ResetStatsAndAchievements_Mouse_7.gml.cpp
2024-12-31T07:11:53.2740731Z 
2024-12-31T07:11:53.3141343Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_StoreStatsAndAchievements_Create_0.gml.cpp
2024-12-31T07:11:53.3142513Z 
2024-12-31T07:11:53.3158047Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_StoreStatsAndAchievements_Mouse_7.gml.cpp
2024-12-31T07:11:53.3158689Z 
2024-12-31T07:11:53.3604771Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_Mouse_7.gml.cpp
2024-12-31T07:11:53.3605294Z 
2024-12-31T07:11:53.4173181Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_Create_0.gml.cpp
2024-12-31T07:11:53.4173988Z 
2024-12-31T07:11:53.4894080Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_Draw_0.gml.cpp
2024-12-31T07:11:53.4894836Z 
2024-12-31T07:11:53.5462214Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Telemetry_SendAnonymousTelemetryEvent_Create_0.gml.cpp
2024-12-31T07:11:53.5466989Z 
2024-12-31T07:11:53.6248665Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Telemetry_SendAnonymousTelemetryEvent_Mouse_7.gml.cpp
2024-12-31T07:11:53.6249723Z 
2024-12-31T07:11:53.6777473Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Telemetry_SendTelemetryEvent_Create_0.gml.cpp
2024-12-31T07:11:53.6778109Z 
2024-12-31T07:11:53.6966914Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Stats_Other_70.gml.cpp
2024-12-31T07:11:53.6967486Z 
2024-12-31T07:11:53.7520007Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_DeleteUserData_Create_0.gml.cpp
2024-12-31T07:11:53.7520590Z 
2024-12-31T07:11:53.7579100Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Telemetry_SendTelemetryEvent_Mouse_7.gml.cpp
2024-12-31T07:11:53.7602453Z 
2024-12-31T07:11:53.8178063Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_DeleteUserData_Mouse_7.gml.cpp
2024-12-31T07:11:53.8179061Z 
2024-12-31T07:11:53.8671856Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_DeleteUserData_Other_63.gml.cpp
2024-12-31T07:11:53.8673453Z 
2024-12-31T07:11:53.8764397Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_EncryptedAppTicket_Create_0.gml.cpp
2024-12-31T07:11:53.8765008Z 
2024-12-31T07:11:53.9201893Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_EncryptedAppTicket_Mouse_7.gml.cpp
2024-12-31T07:11:53.9202537Z 
2024-12-31T07:11:53.9814277Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_SetUserData_Create_0.gml.cpp
2024-12-31T07:11:53.9814898Z 
2024-12-31T07:11:54.0062603Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_EncryptedAppTicket_Other_70.gml.cpp
2024-12-31T07:11:54.0063701Z 
2024-12-31T07:11:54.0430065Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_SetUserData_Mouse_7.gml.cpp
2024-12-31T07:11:54.0430921Z 
2024-12-31T07:11:54.1002349Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_Create_0.gml.cpp
2024-12-31T07:11:54.1021446Z 
2024-12-31T07:11:54.1453158Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_SetUserData_Other_63.gml.cpp
2024-12-31T07:11:54.1453994Z 
2024-12-31T07:11:54.3099120Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Utilis_Draw_0.gml.cpp
2024-12-31T07:11:54.3100230Z 
2024-12-31T07:11:54.3205223Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_User_Draw_0.gml.cpp
2024-12-31T07:11:54.3206039Z 
2024-12-31T07:11:54.3597967Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Utils_ShowOverlayWithWebPage_Create_0.gml.cpp
2024-12-31T07:11:54.3598901Z 
2024-12-31T07:11:54.3853026Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Utils_ShowOverlayWithWebPage_Mouse_7.gml.cpp
2024-12-31T07:11:54.3859273Z 
2024-12-31T07:11:54.4502737Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Create_0.gml.cpp
2024-12-31T07:11:54.4503554Z 
2024-12-31T07:11:54.4752526Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Utils_ShowOverlayWithWebPage_Other_63.gml.cpp
2024-12-31T07:11:54.4755126Z 
2024-12-31T07:11:54.4939526Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Step_0.gml.cpp
2024-12-31T07:11:54.4944451Z 
2024-12-31T07:11:54.5383339Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Other_3.gml.cpp
2024-12-31T07:11:54.5383850Z 
2024-12-31T07:11:54.5945765Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Other_70.gml.cpp
2024-12-31T07:11:54.5948016Z 
2024-12-31T07:11:54.6060256Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_GOG_Draw_0.gml.cpp
2024-12-31T07:11:54.6063958Z 
2024-12-31T07:11:54.6852885Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_heart_Create_0.gml.cpp
2024-12-31T07:11:54.6857557Z 
2024-12-31T07:11:54.7384002Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_heart_Step_0.gml.cpp
2024-12-31T07:11:54.7391917Z 
2024-12-31T07:11:54.7815838Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_bullet_Create_0.gml.cpp
2024-12-31T07:11:54.7819272Z 
2024-12-31T07:11:54.8273016Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_heart_Draw_0.gml.cpp
2024-12-31T07:11:54.8273885Z 
2024-12-31T07:11:54.8415209Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_bullet_Step_0.gml.cpp
2024-12-31T07:11:54.8416306Z 
2024-12-31T07:11:54.9292244Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_bullet_Other_0.gml.cpp
2024-12-31T07:11:54.9300723Z 
2024-12-31T07:11:54.9378626Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_bullet_Draw_0.gml.cpp
2024-12-31T07:11:54.9381407Z 
2024-12-31T07:11:54.9797623Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_swipe_Create_0.gml.cpp
2024-12-31T07:11:54.9804154Z 
2024-12-31T07:11:55.0036581Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_swipe_Step_0.gml.cpp
2024-12-31T07:11:55.0041411Z 
2024-12-31T07:11:55.0104625Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_swipe_Other_7.gml.cpp
2024-12-31T07:11:55.0109686Z 
2024-12-31T07:11:55.0532581Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_trail_Create_0.gml.cpp
2024-12-31T07:11:55.0533606Z 
2024-12-31T07:11:55.0804716Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_trail_Other_7.gml.cpp
2024-12-31T07:11:55.0805596Z 
2024-12-31T07:11:55.1112100Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_trail_Step_0.gml.cpp
2024-12-31T07:11:55.1112983Z 
2024-12-31T07:11:55.3134565Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_Step_0.gml.cpp
2024-12-31T07:11:55.3135531Z 
2024-12-31T07:11:55.3697548Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_Create_0.gml.cpp
2024-12-31T07:11:55.3698511Z 
2024-12-31T07:11:55.4576803Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_Collision_obj_enemy.gml.cpp
2024-12-31T07:11:55.4578139Z 
2024-12-31T07:11:55.4885601Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_Collision_obj_collectable.gml.cpp
2024-12-31T07:11:55.4886700Z 
2024-12-31T07:11:55.5610175Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_Other_7.gml.cpp
2024-12-31T07:11:55.5615946Z 
2024-12-31T07:11:55.5897486Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_Collision_obj_heart.gml.cpp
2024-12-31T07:11:55.5898500Z 
2024-12-31T07:11:55.6984853Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_Draw_73.gml.cpp
2024-12-31T07:11:55.6985748Z 
2024-12-31T07:11:55.7547472Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pause_button_Create_0.gml.cpp
2024-12-31T07:11:55.7548355Z 
2024-12-31T07:11:55.7684086Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_hero_Draw_64.gml.cpp
2024-12-31T07:11:55.7685053Z 
2024-12-31T07:11:55.8304662Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pause_button_Step_2.gml.cpp
2024-12-31T07:11:55.8308966Z 
2024-12-31T07:11:55.9086363Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pause_button_Draw_64.gml.cpp
2024-12-31T07:11:55.9090350Z 
2024-12-31T07:11:55.9351834Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pause_button_Draw_0.gml.cpp
2024-12-31T07:11:55.9356421Z 
2024-12-31T07:11:56.0124957Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pause_button_Step_0.gml.cpp
2024-12-31T07:11:56.0132928Z 
2024-12-31T07:11:56.0574017Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pause_screen_Create_0.gml.cpp
2024-12-31T07:11:56.0574987Z 
2024-12-31T07:11:56.0852796Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pause_screen_Draw_64.gml.cpp
2024-12-31T07:11:56.0853744Z 
2024-12-31T07:11:56.1005975Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pause_screen_CleanUp_0.gml.cpp
2024-12-31T07:11:56.1007378Z 
2024-12-31T07:11:56.1883651Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pigun_Create_0.gml.cpp
2024-12-31T07:11:56.1888523Z 
2024-12-31T07:11:56.2046758Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_pumpkill_Create_0.gml.cpp
2024-12-31T07:11:56.2060174Z 
2024-12-31T07:11:56.2472752Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_shadow_Create_0.gml.cpp
2024-12-31T07:11:56.2476830Z 
2024-12-31T07:11:56.2572739Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_rooster_Create_0.gml.cpp
2024-12-31T07:11:56.2578554Z 
2024-12-31T07:11:56.3206938Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_Achievement_Clear_Create_0.gml.cpp
2024-12-31T07:11:56.3207974Z 
2024-12-31T07:11:56.3554873Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_obj_shadow_Step_2.gml.cpp
2024-12-31T07:11:56.3555753Z 
2024-12-31T07:11:56.3760818Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_Achievement_Clear_Mouse_7.gml.cpp
2024-12-31T07:11:56.3761699Z 
2024-12-31T07:11:56.4095434Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_Achievement_ResetAll_Create_0.gml.cpp
2024-12-31T07:11:56.4099741Z 
2024-12-31T07:11:56.4198097Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_Achievement_ResetAll_Mouse_7.gml.cpp
2024-12-31T07:11:56.4198691Z 
2024-12-31T07:11:56.4651774Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_Achievement_Set_Create_0.gml.cpp
2024-12-31T07:11:56.4652547Z 
2024-12-31T07:11:56.4804676Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_Achievement_Set_Step_0.gml.cpp
2024-12-31T07:11:56.4805318Z 
2024-12-31T07:11:56.5218631Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_Achievement_Set_Mouse_7.gml.cpp
2024-12-31T07:11:56.5219276Z 
2024-12-31T07:11:56.5358496Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_File_Delete_Create_0.gml.cpp
2024-12-31T07:11:56.5359117Z 
2024-12-31T07:11:56.5672724Z [arm64-v8a] Compile++      : yoyo-app0 <= gml_Object_Obj_Steam_File_Delete_Mouse_7.gml.cpp
2024-12-31T07:11:56.5674089Z 
2024-12-31T07:11:57.1614344Z [arm64-v8a] StaticLibrary  : libyoyo-app0.a
2024-12-31T07:11:57.1616074Z 
2024-12-31T07:12:00.8449048Z [arm64-v8a] SharedLibrary  : libyoyo.so
2024-12-31T07:12:00.8456021Z 
2024-12-31T07:12:01.3318813Z [arm64-v8a] Install        : libyoyo.so => /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-temp/lib/arm64-v8a/libyoyo.so
2024-12-31T07:12:01.3319688Z 
2024-12-31T07:12:01.3330095Z Stats : GMA : Elapsed=42941.9449
2024-12-31T07:12:01.3330747Z 
2024-12-31T07:12:01.3334756Z Stats : GMA : sp=59,au=18,bk=0,pt=0,sc=124,sh=3,fo=10,tl=0,ob=141,ro=30,da=0,ex=3,ma=8,fm=0x1000B29D4EF62634
2024-12-31T07:12:01.3336217Z 
2024-12-31T07:12:01.3387157Z AndroidEnvironment
2024-12-31T07:12:01.3388467Z 
2024-12-31T07:12:01.3395823Z Manifest Permissions
2024-12-31T07:12:01.3396516Z 
2024-12-31T07:12:01.3398200Z Manifest Attributes
2024-12-31T07:12:01.3399280Z 
2024-12-31T07:12:01.3399842Z Manifest Metadata
2024-12-31T07:12:01.3402283Z Check GML functions
2024-12-31T07:12:01.3403477Z 
2024-12-31T07:12:01.3403947Z Licensing
2024-12-31T07:12:01.3404794Z 
2024-12-31T07:12:01.3431657Z 3
2024-12-31T07:12:01.3432538Z 
2024-12-31T07:12:01.3436563Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/RootFiles/build.gradle to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/build.gradle...
2024-12-31T07:12:01.3439348Z 
2024-12-31T07:12:01.3448224Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/RootFiles/settings.gradle to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/settings.gradle...
2024-12-31T07:12:01.3449917Z 
2024-12-31T07:12:01.3454548Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/RootFiles/gradle.properties to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/gradle.properties...
2024-12-31T07:12:01.3456171Z 
2024-12-31T07:12:01.3462721Z 47
2024-12-31T07:12:01.3466377Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/build.gradle to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/build.gradle...
2024-12-31T07:12:01.3471756Z 
2024-12-31T07:12:01.3473082Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/proguard-rules.pro to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/proguard-rules.pro...
2024-12-31T07:12:01.3474076Z 
2024-12-31T07:12:01.3474866Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/lint.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/lint.xml...
2024-12-31T07:12:01.3475725Z 
2024-12-31T07:12:01.3481958Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/libs/ini4j-0.5.2.jar to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/libs/ini4j-0.5.2.jar...
2024-12-31T07:12:01.3483802Z 
2024-12-31T07:12:01.3489703Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/AndroidManifest.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml...
2024-12-31T07:12:01.3491918Z 
2024-12-31T07:12:01.3493969Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/layout/userpasslayout.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/layout/userpasslayout.xml...
2024-12-31T07:12:01.3497837Z 
2024-12-31T07:12:01.3501315Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/layout/main.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/layout/main.xml...
2024-12-31T07:12:01.3503806Z 
2024-12-31T07:12:01.3506013Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-hdpi-v26/icon.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-hdpi-v26/icon.xml...
2024-12-31T07:12:01.3509045Z 
2024-12-31T07:12:01.3510276Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-hdpi-v26/adaptive_bg.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-hdpi-v26/adaptive_bg.png...
2024-12-31T07:12:01.3514099Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-hdpi-v26/adaptive_icon.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-hdpi-v26/adaptive_icon.png...
2024-12-31T07:12:01.3519218Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/values/strings.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/values/strings.xml...
2024-12-31T07:12:01.3521277Z 
2024-12-31T07:12:01.3524674Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xxhdpi-v26/icon.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-xxhdpi-v26/icon.xml...
2024-12-31T07:12:01.3527013Z 
2024-12-31T07:12:01.3528192Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xxhdpi-v26/adaptive_bg.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.crea
2024-12-31T07:12:01.3530188Z tivehand.tinywitch/src/main/res/drawable-xxhdpi-v26/adaptive_bg.png...
2024-12-31T07:12:01.3530684Z 
2024-12-31T07:12:01.3532495Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xxhdpi-v26/adaptive_icon.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.cr
2024-12-31T07:12:01.3535840Z eativehand.tinywitch/src/main/res/drawable-xxhdpi-v26/adaptive_icon.png...
2024-12-31T07:12:01.3536379Z 
2024-12-31T07:12:01.3538733Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xxxhdpi-v26/icon.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-xxxhdpi-v26/icon.xml...
2024-12-31T07:12:01.3540730Z 
2024-12-31T07:12:01.3545597Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xxxhdpi-v26/adaptive_bg.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-xxxhdpi-v26/adaptive_bg.png...
2024-12-31T07:12:01.3551755Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xxxhdpi-v26/adaptive_icon.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-xxxhdpi-v26/adaptive_icon.png...
2024-12-31T07:12:01.3554092Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-mdpi-v26/icon.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-mdpi-v26/icon.xml...
2024-12-31T07:12:01.3557902Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-mdpi-v26/adaptive_bg.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-mdpi-v26/adaptive_bg.png...
2024-12-31T07:12:01.3562272Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-mdpi-v26/adaptive_icon.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-mdpi-v26/adaptive_icon.png...
2024-12-31T07:12:01.3566218Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-ldpi-v26/icon.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-ldpi-v26/icon.xml...
2024-12-31T07:12:01.3568101Z 
2024-12-31T07:12:01.3570962Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-ldpi-v26/adaptive_bg.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-ldpi-v26/adaptive_bg.png...
2024-12-31T07:12:01.3575400Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-ldpi-v26/adaptive_icon.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-ldpi-v26/adaptive_icon.png...
2024-12-31T07:12:01.3579126Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xhdpi-v26/icon.xml to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-xhdpi-v26/icon.xml...
2024-12-31T07:12:01.3580986Z 
2024-12-31T07:12:01.3582569Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xhdpi-v26/adaptive_bg.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creat
2024-12-31T07:12:01.3584999Z ivehand.tinywitch/src/main/res/drawable-xhdpi-v26/adaptive_bg.png...
2024-12-31T07:12:01.3587490Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-xhdpi-v26/adaptive_icon.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-xhdpi-v26/adaptive_icon.png...
2024-12-31T07:12:01.3591577Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/res/drawable-hdpi/icon.png to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/res/drawable-hdpi/icon.png...
2024-12-31T07:12:01.3595022Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/jniLibs/x86_64/libyoyo.so to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/jniLibs/x86_64/libyoyo.so...
2024-12-31T07:12:01.3596796Z 
2024-12-31T07:12:01.3790142Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/jniLibs/armeabi-v7a/libyoyo.so to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/jniLibs/armeabi-v7a/libyoyo.so...
2024-12-31T07:12:01.3792570Z 
2024-12-31T07:12:01.3949326Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/jniLibs/arm64-v8a/libyoyo.so to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/jniLibs/arm64-v8a/libyoyo.so...
2024-12-31T07:12:01.3951467Z 
2024-12-31T07:12:01.4112084Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/RunnerApplication.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/RunnerApplication.java...
2024-12-31T07:12:01.4114369Z 
2024-12-31T07:12:01.4180961Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/Gamepad.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/Gamepad.java...
2024-12-31T07:12:01.4184811Z 
2024-12-31T07:12:01.4193336Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/VideoPlayback.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/VideoPlayback.java...
2024-12-31T07:12:01.4196212Z 
2024-12-31T07:12:01.4202348Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/RunnerSocial.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/RunnerSocial.java...
2024-12-31T07:12:01.4204764Z 
2024-12-31T07:12:01.4210130Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/RunnerActivity.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/RunnerActivity.java...
2024-12-31T07:12:01.4220451Z 
2024-12-31T07:12:01.4224558Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/ISocial.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/ISocial.java...
2024-12-31T07:12:01.4227253Z 
2024-12-31T07:12:01.4232062Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/RunnerKeyboardController.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/RunnerKeyboardController.java...
2024-12-31T07:12:01.4236192Z 
2024-12-31T07:12:01.4239392Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/DemoGLSurfaceView.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/DemoGLSurfaceView.java...
2024-12-31T07:12:01.4242260Z 
2024-12-31T07:12:01.4248926Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/RunnerVsyncHandler.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/RunnerVsyncHandler.java...
2024-12-31T07:12:01.4253539Z 
2024-12-31T07:12:01.4257228Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/IniBundle.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/IniBundle.java...
2024-12-31T07:12:01.4259733Z 
2024-12-31T07:12:01.4262394Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/IExtensionBase.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/IExtensionBase.java...
2024-12-31T07:12:01.4265027Z 
2024-12-31T07:12:01.4270438Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/DemoRenderer.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/DemoRenderer.java...
2024-12-31T07:12:01.4274842Z 
2024-12-31T07:12:01.4278154Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/ExtensionBase.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/ExtensionBase.java...
2024-12-31T07:12:01.4280837Z 
2024-12-31T07:12:01.4284289Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/DemoRendererGL2.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/DemoRendererGL2.java...
2024-12-31T07:12:01.4286917Z 
2024-12-31T07:12:01.4289183Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/com/yoyogames/runner/RunnerJNILib.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/yoyogames/runner/RunnerJNILib.java...
2024-12-31T07:12:01.4291171Z 
2024-12-31T07:12:01.4304756Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/Purchases/IRunnerBilling.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/Purchases/IRunnerBilling.java...
2024-12-31T07:12:01.4306976Z 
2024-12-31T07:12:01.4312742Z Copying /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/ProjectFiles/src/main/java/YYAndroidPackageDomain/YYAndroidPackageCompany/YYAndroidPackageProduct/Purchases/Null/NullBilling.java to /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/java/com/creativehand/tinywitch/Purchases/Null/NullBilling.java...
2024-12-31T07:12:01.4316472Z 
2024-12-31T07:12:01.4865954Z DoSplash
2024-12-31T07:12:01.4866905Z 
2024-12-31T07:12:01.4871422Z DoIcon
2024-12-31T07:12:01.4872253Z 
2024-12-31T07:12:01.5057267Z /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/gradle/gradlew  build  bundleRelease  -x lint 
2024-12-31T07:12:01.5059346Z 
2024-12-31T07:12:01.6086375Z Downloading https://services.gradle.org/distributions/gradle-8.7-bin.zip
2024-12-31T07:12:01.6089342Z 
2024-12-31T07:12:03.6815066Z ............10%.............20%.............30%.............40%............50%.............60%.............70%.............80%.............90%............100%
2024-12-31T07:12:03.6816018Z 
2024-12-31T07:12:04.8864302Z 
2024-12-31T07:12:04.8864321Z 
2024-12-31T07:12:04.8873098Z Welcome to Gradle 8.7!
2024-12-31T07:12:04.8875290Z 
2024-12-31T07:12:04.8875822Z 
2024-12-31T07:12:04.8876618Z Here are the highlights of this release:
2024-12-31T07:12:04.8877841Z 
2024-12-31T07:12:04.8884602Z  - Compiling and testing with Java 22
2024-12-31T07:12:04.8885772Z  - Cacheable Groovy script compilation
2024-12-31T07:12:04.8888871Z  - New methods in lazy collection properties
2024-12-31T07:12:04.8889372Z 
2024-12-31T07:12:04.8889381Z 
2024-12-31T07:12:04.8922071Z For more details see https://docs.gradle.org/8.7/release-notes.html
2024-12-31T07:12:04.8922966Z 
2024-12-31T07:12:04.8923085Z 
2024-12-31T07:12:05.0858306Z Starting a Gradle Daemon (subsequent builds will be faster)
2024-12-31T07:12:05.0859181Z 
2024-12-31T07:12:42.4910424Z 
2024-12-31T07:12:42.4910486Z 
2024-12-31T07:12:42.4912342Z > Configure project :com.creativehand.tinywitch
2024-12-31T07:12:42.4912770Z 
2024-12-31T07:12:42.4960174Z WARNING: Using flatDir should be avoided because it doesn't support any meta-data formats.
2024-12-31T07:12:42.4960959Z 
2024-12-31T07:12:45.2840371Z 
2024-12-31T07:12:45.2842947Z 
2024-12-31T07:12:45.2845339Z > Task :com.creativehand.tinywitch:preBuild UP-TO-DATE
2024-12-31T07:12:45.2845782Z 
2024-12-31T07:12:45.2885833Z > Task :com.creativehand.tinywitch:preDebugBuild UP-TO-DATE
2024-12-31T07:12:45.2886374Z 
2024-12-31T07:12:45.2886762Z > Task :com.creativehand.tinywitch:mergeDebugNativeDebugMetadata NO-SOURCE
2024-12-31T07:12:45.2887304Z 
2024-12-31T07:12:45.3849897Z > Task :com.creativehand.tinywitch:javaPreCompileDebug
2024-12-31T07:12:45.3850361Z 
2024-12-31T07:12:52.8859164Z > Task :com.creativehand.tinywitch:generateDebugResValues
2024-12-31T07:12:52.8861691Z 
2024-12-31T07:12:52.9852751Z > Task :com.creativehand.tinywitch:checkDebugAarMetadata
2024-12-31T07:12:52.9853853Z > Task :com.creativehand.tinywitch:mapDebugSourceSetPaths
2024-12-31T07:12:52.9854772Z > Task :com.creativehand.tinywitch:generateDebugResources
2024-12-31T07:12:52.9855505Z 
2024-12-31T07:12:54.1865147Z > Task :com.creativehand.tinywitch:packageDebugResources
2024-12-31T07:12:54.1865653Z 
2024-12-31T07:12:55.5842072Z > Task :com.creativehand.tinywitch:mergeDebugResources
2024-12-31T07:12:55.5843083Z 
2024-12-31T07:12:55.8842483Z > Task :com.creativehand.tinywitch:createDebugCompatibleScreenManifests
2024-12-31T07:12:55.8847947Z > Task :com.creativehand.tinywitch:extractDeepLinksDebug
2024-12-31T07:12:55.8848444Z 
2024-12-31T07:12:56.0841456Z > Task :com.creativehand.tinywitch:parseDebugLocalResources
2024-12-31T07:12:56.0842447Z 
2024-12-31T07:12:56.2877689Z 
2024-12-31T07:12:56.2878572Z > Task :com.creativehand.tinywitch:processDebugMainManifest
2024-12-31T07:12:56.2880518Z package="com.creativehand.tinywitch" found in source AndroidManifest.xml: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml.
2024-12-31T07:12:56.2894667Z Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported, and the value is ignored.
2024-12-31T07:12:56.2896936Z Recommendation: remove package="com.creativehand.tinywitch" from the source AndroidManifest.xml: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml.
2024-12-31T07:12:56.2899388Z /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml:25:3-78:17 Warning:
2024-12-31T07:12:56.2901783Z 	application@android:label was tagged at AndroidManifest.xml:25 to replace other declarations but no other declaration present
2024-12-31T07:12:56.2903532Z /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml:26:5-35:16 Warning:
2024-12-31T07:12:56.2905565Z 	activity#com.creativehand.tinywitch.RunnerActivity@android:label was tagged at AndroidManifest.xml:26 to replace other declarations but no other declaration present
2024-12-31T07:12:56.2906635Z 
2024-12-31T07:12:56.6853854Z 
2024-12-31T07:12:56.6854773Z > Task :com.creativehand.tinywitch:processDebugManifest
2024-12-31T07:12:56.6855388Z 
2024-12-31T07:12:56.7840825Z > Task :com.creativehand.tinywitch:mergeDebugShaders
2024-12-31T07:12:56.7842209Z 
2024-12-31T07:12:56.7849962Z > Task :com.creativehand.tinywitch:processDebugManifestForPackage
2024-12-31T07:12:56.7850508Z 
2024-12-31T07:12:57.9847934Z > Task :com.creativehand.tinywitch:compileDebugShaders NO-SOURCE
2024-12-31T07:12:57.9849345Z > Task :com.creativehand.tinywitch:generateDebugAssets UP-TO-DATE
2024-12-31T07:12:57.9850091Z 
2024-12-31T07:12:58.3874730Z > Task :com.creativehand.tinywitch:mergeDebugAssets
2024-12-31T07:12:58.3875527Z 
2024-12-31T07:12:59.0851215Z > Task :com.creativehand.tinywitch:processDebugResources
2024-12-31T07:12:59.0852168Z 
2024-12-31T07:12:59.8843684Z > Task :com.creativehand.tinywitch:compressDebugAssets
2024-12-31T07:12:59.8844449Z 
2024-12-31T07:13:01.2856289Z 
2024-12-31T07:13:01.2857511Z > Task :com.creativehand.tinywitch:compileDebugJavaWithJavac
2024-12-31T07:13:01.2858645Z Java compiler version 21 has deprecated support for compiling with source/target version 8.
2024-12-31T07:13:01.2859951Z Try one of the following options:
2024-12-31T07:13:01.2860809Z     1. [Recommended] Use Java toolchain with a lower language version
2024-12-31T07:13:01.2861560Z     2. Set a higher source/target version
2024-12-31T07:13:01.2862195Z     3. Use a lower version of the JDK running the build (if you're not using Java toolchain)
2024-12-31T07:13:01.2863132Z For more details on how to configure these settings, see https://developer.android.com/build/jdks.
2024-12-31T07:13:01.2864331Z To suppress this warning, set android.javaCompile.suppressSourceTargetDeprecationWarning=true in gradle.properties.
2024-12-31T07:13:01.2865065Z 
2024-12-31T07:13:01.6844726Z warning: [options] source value 8 is obsolete and will be removed in a future release
2024-12-31T07:13:01.6846218Z warning: [options] target value 8 is obsolete and will be removed in a future release
2024-12-31T07:13:01.6847455Z warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
2024-12-31T07:13:01.6848306Z 
2024-12-31T07:13:03.8841829Z Note: Some input files use or override a deprecated API.
2024-12-31T07:13:03.8842815Z Note: Recompile with -Xlint:deprecation for details.
2024-12-31T07:13:03.8843341Z 3 warnings
2024-12-31T07:13:03.8843520Z 
2024-12-31T07:13:05.4854266Z 
2024-12-31T07:13:05.4855433Z > Task :com.creativehand.tinywitch:processDebugJavaRes NO-SOURCE
2024-12-31T07:13:05.4873893Z 
2024-12-31T07:13:06.6843891Z > Task :com.creativehand.tinywitch:mergeDebugJavaResource
2024-12-31T07:13:06.6844814Z 
2024-12-31T07:13:06.8845273Z > Task :com.creativehand.tinywitch:checkDebugDuplicateClasses
2024-12-31T07:13:06.8849723Z 
2024-12-31T07:13:07.0848462Z > Task :com.creativehand.tinywitch:mergeDebugStartupProfile
2024-12-31T07:13:07.0849754Z > Task :com.creativehand.tinywitch:mergeLibDexDebug
2024-12-31T07:13:07.0853113Z 
2024-12-31T07:13:12.0902519Z > Task :com.creativehand.tinywitch:desugarDebugFileDependencies
2024-12-31T07:13:12.0903257Z 
2024-12-31T07:13:12.2840620Z > Task :com.creativehand.tinywitch:dexBuilderDebug
2024-12-31T07:13:12.2841866Z 
2024-12-31T07:13:41.9975150Z > Task :com.creativehand.tinywitch:mergeProjectDexDebug
2024-12-31T07:13:41.9976123Z 
2024-12-31T07:13:42.1842843Z > Task :com.creativehand.tinywitch:mergeDebugJniLibFolders
2024-12-31T07:13:42.1862392Z > Task :com.creativehand.tinywitch:mergeExtDexDebug
2024-12-31T07:13:42.1863231Z 
2024-12-31T07:13:44.0848137Z > Task :com.creativehand.tinywitch:mergeDebugNativeLibs
2024-12-31T07:13:44.0851817Z 
2024-12-31T07:13:45.1845085Z > Task :com.creativehand.tinywitch:validateSigningDebug
2024-12-31T07:13:45.1845749Z > Task :com.creativehand.tinywitch:writeDebugAppMetadata
2024-12-31T07:13:45.1846166Z 
2024-12-31T07:13:45.2869259Z > Task :com.creativehand.tinywitch:writeDebugSigningConfigVersions
2024-12-31T07:13:45.2870554Z > Task :com.creativehand.tinywitch:preReleaseBuild UP-TO-DATE
2024-12-31T07:13:45.2874890Z 
2024-12-31T07:13:45.2876732Z > Task :com.creativehand.tinywitch:stripDebugDebugSymbols
2024-12-31T07:13:45.2877773Z Unable to strip the following libraries, packaging them as they are: libyoyo.so.
2024-12-31T07:13:45.2880052Z 
2024-12-31T07:13:45.2880823Z > Task :com.creativehand.tinywitch:mergeReleaseJniLibFolders
2024-12-31T07:13:45.2881866Z 
2024-12-31T07:13:46.7857000Z > Task :com.creativehand.tinywitch:mergeReleaseNativeLibs
2024-12-31T07:13:46.7861294Z 
2024-12-31T07:13:46.8877721Z 
2024-12-31T07:13:46.8879283Z > Task :com.creativehand.tinywitch:stripReleaseDebugSymbols
2024-12-31T07:13:46.8880435Z Unable to strip the following libraries, packaging them as they are: libyoyo.so.
2024-12-31T07:13:46.8881578Z 
2024-12-31T07:13:46.8882187Z > Task :com.creativehand.tinywitch:extractReleaseNativeDebugMetadata
2024-12-31T07:13:46.8883267Z > Task :com.creativehand.tinywitch:mergeReleaseNativeDebugMetadata NO-SOURCE
2024-12-31T07:13:46.8884017Z 
2024-12-31T07:13:46.9843267Z > Task :com.creativehand.tinywitch:checkReleaseDuplicateClasses
2024-12-31T07:13:46.9851765Z > Task :com.creativehand.tinywitch:javaPreCompileRelease
2024-12-31T07:13:46.9856504Z > Task :com.creativehand.tinywitch:checkReleaseAarMetadata
2024-12-31T07:13:46.9861785Z > Task :com.creativehand.tinywitch:generateReleaseResValues
2024-12-31T07:13:46.9865372Z > Task :com.creativehand.tinywitch:mapReleaseSourceSetPaths
2024-12-31T07:13:46.9869966Z > Task :com.creativehand.tinywitch:generateReleaseResources
2024-12-31T07:13:46.9870575Z 
2024-12-31T07:13:47.8850217Z > Task :com.creativehand.tinywitch:packageDebug
2024-12-31T07:13:47.8857594Z > Task :com.creativehand.tinywitch:mergeReleaseResources
2024-12-31T07:13:47.8858680Z > Task :com.creativehand.tinywitch:createDebugApkListingFileRedirect
2024-12-31T07:13:47.8859690Z > Task :com.creativehand.tinywitch:assembleDebug
2024-12-31T07:13:47.8862098Z > Task :com.creativehand.tinywitch:packageReleaseResources
2024-12-31T07:13:47.8863267Z > Task :com.creativehand.tinywitch:createReleaseCompatibleScreenManifests
2024-12-31T07:13:47.8876884Z > Task :com.creativehand.tinywitch:extractDeepLinksRelease
2024-12-31T07:13:47.8878093Z > Task :com.creativehand.tinywitch:parseReleaseLocalResources
2024-12-31T07:13:47.8878916Z 
2024-12-31T07:13:47.9868464Z 
2024-12-31T07:13:47.9899147Z > Task :com.creativehand.tinywitch:processReleaseMainManifest
2024-12-31T07:13:47.9900917Z package="com.creativehand.tinywitch" found in source AndroidManifest.xml: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml.
2024-12-31T07:13:47.9903077Z Setting the namespace via the package attribute in the source AndroidManifest.xml is no longer supported, and the value is ignored.
2024-12-31T07:13:47.9905212Z Recommendation: remove package="com.creativehand.tinywitch" from the source AndroidManifest.xml: /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml.
2024-12-31T07:13:47.9912523Z /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml:25:3-78:17 Warning:
2024-12-31T07:13:47.9914925Z 	application@android:label was tagged at AndroidManifest.xml:25 to replace other declarations but no other declaration present
2024-12-31T07:13:47.9917035Z /home/runner/work/_actions/bscotch/igor-setup/v1/dist/gm-sandbox/gm-cache/android/Default/com.creativehand.tinywitch/src/main/AndroidManifest.xml:26:5-35:16 Warning:
2024-12-31T07:13:47.9919370Z 	activity#com.creativehand.tinywitch.RunnerActivity@android:label was tagged at AndroidManifest.xml:26 to replace other declarations but no other declaration present
2024-12-31T07:13:47.9921210Z 
2024-12-31T07:13:47.9921886Z > Task :com.creativehand.tinywitch:processReleaseManifest
2024-12-31T07:13:47.9923301Z > Task :com.creativehand.tinywitch:processReleaseManifestForPackage
2024-12-31T07:13:47.9924035Z 
2024-12-31T07:13:49.0865287Z > Task :com.creativehand.tinywitch:desugarReleaseFileDependencies
2024-12-31T07:13:49.0866277Z > Task :com.creativehand.tinywitch:mergeReleaseStartupProfile
2024-12-31T07:13:49.0866781Z 
2024-12-31T07:14:08.5842598Z > Task :com.creativehand.tinywitch:processReleaseResources
2024-12-31T07:14:08.5848107Z 
2024-12-31T07:14:13.1876380Z 
2024-12-31T07:14:13.1884099Z > Task :com.creativehand.tinywitch:compileReleaseJavaWithJavac
2024-12-31T07:14:13.1886065Z Java compiler version 21 has deprecated support for compiling with source/target version 8.
2024-12-31T07:14:13.1890866Z Try one of the following options:
2024-12-31T07:14:13.1891705Z 
2024-12-31T07:14:13.1894933Z     1. [Recommended] Use Java toolchain with a lower language version
2024-12-31T07:14:13.1898449Z     2. Set a higher source/target version
2024-12-31T07:14:13.1899248Z     3. Use a lower version of the JDK running the build (if you're not using Java toolchain)
2024-12-31T07:14:13.1900444Z For more details on how to configure these settings, see https://developer.android.com/build/jdks.
2024-12-31T07:14:13.1902333Z To suppress this warning, set android.javaCompile.suppressSourceTargetDeprecationWarning=true in gradle.properties.
2024-12-31T07:14:13.1904051Z warning: [options] source value 8 is obsolete and will be removed in a future release
2024-12-31T07:14:13.1905194Z warning: [options] target value 8 is obsolete and will be removed in a future release
2024-12-31T07:14:13.1906338Z warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
2024-12-31T07:14:13.1907345Z Note: Some input files use or override a deprecated API.
2024-12-31T07:14:13.1908140Z Note: Recompile with -Xlint:deprecation for details.
2024-12-31T07:14:13.1908861Z 3 warnings
2024-12-31T07:14:13.1909209Z 
2024-12-31T07:14:14.5846850Z 
2024-12-31T07:14:14.5851963Z > Task :com.creativehand.tinywitch:dexBuilderRelease
2024-12-31T07:14:14.5853598Z 
2024-12-31T07:14:14.7864876Z > Task :com.creativehand.tinywitch:mergeReleaseArtProfile
2024-12-31T07:14:14.7868059Z > Task :com.creativehand.tinywitch:mergeExtDexRelease
2024-12-31T07:14:14.7870558Z 
2024-12-31T07:14:14.8849562Z > Task :com.creativehand.tinywitch:mergeReleaseGlobalSynthetics
2024-12-31T07:14:14.8851879Z 
2024-12-31T07:14:14.9848692Z > Task :com.creativehand.tinywitch:mergeReleaseShaders
2024-12-31T07:14:14.9855675Z 
2024-12-31T07:14:14.9858918Z > Task :com.creativehand.tinywitch:compileReleaseShaders NO-SOURCE
2024-12-31T07:14:14.9860276Z > Task :com.creativehand.tinywitch:generateReleaseAssets UP-TO-DATE
2024-12-31T07:14:14.9861993Z 
2024-12-31T07:14:15.0859018Z > Task :com.creativehand.tinywitch:mergeReleaseAssets
2024-12-31T07:14:15.0861458Z 
2024-12-31T07:14:16.3884456Z > Task :com.creativehand.tinywitch:mergeDexRelease
2024-12-31T07:14:16.3885362Z 
2024-12-31T07:14:16.7839686Z > Task :com.creativehand.tinywitch:compileReleaseArtProfile
2024-12-31T07:14:16.7845916Z 
2024-12-31T07:14:16.8840694Z > Task :com.creativehand.tinywitch:extractReleaseVersionControlInfo
2024-12-31T07:14:16.8857078Z > Task :com.creativehand.tinywitch:processReleaseJavaRes NO-SOURCE
2024-12-31T07:14:16.8857935Z 
2024-12-31T07:14:17.2839045Z > Task :com.creativehand.tinywitch:mergeReleaseJavaResource
2024-12-31T07:14:17.2844863Z 
2024-12-31T07:14:17.5839597Z > Task :com.creativehand.tinywitch:optimizeReleaseResources
2024-12-31T07:14:17.5845216Z 
2024-12-31T07:14:17.6877662Z > Task :com.creativehand.tinywitch:collectReleaseDependencies
2024-12-31T07:14:17.6881264Z 
2024-12-31T07:14:17.7862659Z > Task :com.creativehand.tinywitch:sdkReleaseDependencyData
2024-12-31T07:14:17.7863790Z > Task :com.creativehand.tinywitch:validateSigningRelease
2024-12-31T07:14:17.7864811Z > Task :com.creativehand.tinywitch:writeReleaseAppMetadata
2024-12-31T07:14:17.7865642Z > Task :com.creativehand.tinywitch:writeReleaseSigningConfigVersions
2024-12-31T07:14:17.7866099Z 
2024-12-31T07:14:17.8841575Z > Task :com.creativehand.tinywitch:bundleDebugClassesToRuntimeJar
2024-12-31T07:14:17.8843952Z 
2024-12-31T07:14:17.8847612Z > Task :com.creativehand.tinywitch:bundleDebugClassesToCompileJar
2024-12-31T07:14:17.8849206Z 
2024-12-31T07:14:17.8851735Z > Task :com.creativehand.tinywitch:preDebugUnitTestBuild UP-TO-DATE
2024-12-31T07:14:17.8853329Z 
2024-12-31T07:14:17.8855936Z > Task :com.creativehand.tinywitch:javaPreCompileDebugUnitTest
2024-12-31T07:14:17.8859482Z 
2024-12-31T07:14:17.8860249Z > Task :com.creativehand.tinywitch:compileDebugUnitTestJavaWithJavac NO-SOURCE
2024-12-31T07:14:17.8862722Z 
2024-12-31T07:14:17.8863365Z > Task :com.creativehand.tinywitch:processDebugUnitTestJavaRes NO-SOURCE
2024-12-31T07:14:17.8863847Z 
2024-12-31T07:14:17.8894091Z > Task :com.creativehand.tinywitch:testDebugUnitTest NO-SOURCE
2024-12-31T07:14:17.8894655Z 
2024-12-31T07:14:17.9867376Z > Task :com.creativehand.tinywitch:bundleReleaseClassesToRuntimeJar
2024-12-31T07:14:17.9868568Z > Task :com.creativehand.tinywitch:bundleReleaseClassesToCompileJar
2024-12-31T07:14:17.9922207Z > Task :com.creativehand.tinywitch:preReleaseUnitTestBuild UP-TO-DATE
2024-12-31T07:14:17.9951996Z > Task :com.creativehand.tinywitch:javaPreCompileReleaseUnitTest
2024-12-31T07:14:17.9966660Z > Task :com.creativehand.tinywitch:compileReleaseUnitTestJavaWithJavac NO-SOURCE
2024-12-31T07:14:17.9967654Z > Task :com.creativehand.tinywitch:processReleaseUnitTestJavaRes NO-SOURCE
2024-12-31T07:14:17.9968479Z > Task :com.creativehand.tinywitch:testReleaseUnitTest NO-SOURCE
2024-12-31T07:14:17.9969131Z > Task :com.creativehand.tinywitch:test UP-TO-DATE
2024-12-31T07:14:17.9969684Z > Task :com.creativehand.tinywitch:check
2024-12-31T07:14:17.9970389Z > Task :com.creativehand.tinywitch:processApplicationManifestReleaseForBundle
2024-12-31T07:14:17.9970929Z 
2024-12-31T07:14:18.2846037Z > Task :com.creativehand.tinywitch:compressReleaseAssets
2024-12-31T07:14:18.2846860Z 
2024-12-31T07:14:18.3862234Z > Task :com.creativehand.tinywitch:packageRelease FAILED
2024-12-31T07:14:18.3863196Z 
2024-12-31T07:14:18.4867464Z > Task :com.creativehand.tinywitch:bundleReleaseResources
2024-12-31T07:14:18.4868354Z 
2024-12-31T07:14:18.4868487Z 
2024-12-31T07:14:18.4883400Z FAILURE: Build failed with an exception.
2024-12-31T07:14:18.4884159Z 
2024-12-31T07:14:18.4884492Z * What went wrong:
2024-12-31T07:14:18.4885733Z Execution failed for task ':com.creativehand.tinywitch:packageRelease'.
2024-12-31T07:14:18.4886649Z > Multiple task action failures occurred:
2024-12-31T07:14:18.4887833Z    > A failure occurred while executing com.android.build.gradle.tasks.PackageAndroidArtifact$IncrementalSplitterRunnable
2024-12-31T07:14:18.4888762Z 
2024-12-31T07:14:18.4930145Z       > com.android.ide.common.signing.KeytoolException: Failed to read key *** from store "/home/runner/work/_temp/myTemporaryFile.keystore": keystore password was incorrect
2024-12-31T07:14:18.4931936Z    > A failure occurred while executing com.android.build.gradle.tasks.PackageAndroidArtifact$IncrementalSplitterRunnable
2024-12-31T07:14:18.4933623Z       > com.android.ide.common.signing.KeytoolException: Failed to read key *** from store "/home/runner/work/_temp/myTemporaryFile.keystore": keystore password was incorrect
2024-12-31T07:14:18.4934580Z 
2024-12-31T07:14:18.4934712Z * Try:
2024-12-31T07:14:18.4935110Z > Run with --stacktrace option to get the stack trace.
2024-12-31T07:14:18.4935467Z 
2024-12-31T07:14:18.4940256Z > Run with --info or --debug option to get more log output.
2024-12-31T07:14:18.4940969Z 
2024-12-31T07:14:18.4952890Z > Run with --scan to get full insights.
2024-12-31T07:14:18.4956084Z > Get more help at https://help.gradle.org.
2024-12-31T07:14:18.4956429Z 
2024-12-31T07:14:18.4959459Z 
2024-12-31T07:14:18.4959680Z 82 actionable tasks: 82 executed
2024-12-31T07:14:18.4960101Z BUILD FAILED in 2m 16s
2024-12-31T07:14:18.4960326Z 
2024-12-31T07:14:19.0275781Z 
2024-12-31T07:14:19.0275797Z 
2024-12-31T07:14:19.0276796Z /home/runner/work/build-test/build-test/runtimes/runtime-2024.8.0.216/android/runner/gradle/gradlew exited with non-zero status (1)
2024-12-31T07:14:19.0277661Z 
2024-12-31T07:14:19.0440463Z ##[error]child process exited with code 1
2024-12-31T07:14:19.0443796Z ##[error]child process exited with code 1
2024-12-31T07:14:19.0542024Z Post job cleanup.
2024-12-31T07:14:19.2266747Z Post job cleanup.
2024-12-31T07:14:19.3612937Z [command]/usr/bin/git version
2024-12-31T07:14:19.3664853Z git version 2.47.1
2024-12-31T07:14:19.3973080Z Temporarily overriding HOME='/home/runner/work/_temp/51c2788a-c4e9-4d4c-a7ad-0005624fa985' before making global git config changes
2024-12-31T07:14:19.4006407Z Adding repository directory to the temporary git global config as a safe directory
2024-12-31T07:14:19.4018066Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/build-test/build-test
2024-12-31T07:14:19.4145179Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2024-12-31T07:14:19.4148966Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2024-12-31T07:14:19.4390108Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2024-12-31T07:14:19.4413496Z http.https://github.com/.extraheader
2024-12-31T07:14:19.4427776Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2024-12-31T07:14:19.4945217Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2024-12-31T07:14:19.5307383Z Cleaning up orphan processes
2024-12-31T07:14:19.5578270Z Terminate orphan process: pid (2149) (adb)
2024-12-31T07:14:19.5629530Z Terminate orphan process: pid (3742) (java)

What it seems to me is that he isn't being able to read the KEYSTORE_PASSWORD from my secrets, thus breaking the entire workflow.

@shichen85
Copy link
Member

Unfortunately this log does not reveal much. I do see that you are using a ubuntu-24.04 runner instead of ubuntu-latest, which would use a Ubuntu 22.04 runner instead, so I assume your workflow has also changed from what you showed in your previous comments. If the previous version of the workflow worked properly, I can only recommend you to compare the previous version against your current version to see what was changed, which probably led to the problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
question Further information is requested
Projects
None yet
Development

No branches or pull requests

2 participants