PeakeCoin Wallet's .apk - Starting Here...

The point of the @PeakeCoin projects is the same as every other one, grandious. The consistent need for more apps that the masses can download. I'm attempting to find a way to have a simple PeakeCoin Wallet App .apk.
After a few days of learning that it's a whole different language, but there are things that can facilitate Python into an .apk, I'm just begging to make some front-end things.
This is a bit more on the java side of things... I am really struggling on getting the hang of the weirdness in differences. I unfortunately had AI, and Google helped me way more than I liked it to. I wasn't familiar with file formats, or even coding types needed to make an app work to begin with.
Above is the error I receive when trying to run the job on Github. It's kind of late, I'm kind of tired... I will be back onto this tomorrow I believe. The code for android.yml is below. I'll have to write up what a .yml file (click for definition) for those that don't know
name: Build APK
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Java 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Make gradlew executable
run: chmod +x ./gradlew
- name: Build debug APK
run: ./gradlew assembleDebug
- name: Upload APK
uses: actions/upload-artifact@v3
with:
name: app-debug
path: app/build/outputs/apk/debug/app-debug.apk
I think it's saving or uploading the .apk that is causing all these problems for me.
Had a hard few days at the real job, so I'm about to crash.... If you have made it this far in my post I have the App uploaded to https://github.com/PaulMoon410/peakecoin_wallet if you get the chance to scope it out and have some feedback let me know as always.