From 0c49677773bf1c62cc2eab2ad82531930bb9d55e Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Sun, 22 Aug 2021 08:36:29 -0400 Subject: [PATCH 01/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 62924ff..944b259 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -4,6 +4,21 @@ on: [push, workflow_dispatch] jobs: + buildandroid: + name: Build Android app + runs-on: ubuntu-latest + steps: + - name: Get repository code + uses: actions/checkout@v2 + with: + ref: android + + - name: Build Android app + run: ./gradlew build + + - name: List files + run: OS + buildios: name: Build iOS app runs-on: macos-latest From 3bb2cb2076654c927aedf02c0ee6f48822f57e63 Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Sun, 22 Aug 2021 08:38:10 -0400 Subject: [PATCH 02/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 944b259..6fb9538 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -14,10 +14,10 @@ jobs: ref: android - name: Build Android app - run: ./gradlew build + run: chmod +x gradlew && ./gradlew build - name: List files - run: OS + run: ls buildios: name: Build iOS app From 8bafe89e5819af8fcd54ca1e4e6783eb64ae539c Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Sun, 22 Aug 2021 08:59:26 -0400 Subject: [PATCH 03/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 6fb9538..d2d654c 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -13,8 +13,11 @@ jobs: with: ref: android + - name: List gradle tasks + run: chmod +x gradlew && ./gradlew tasks + - name: Build Android app - run: chmod +x gradlew && ./gradlew build + run: ./gradlew build - name: List files run: ls From f1d66e278243921bd0769ba2c18a3a2c4b3b339d Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Tue, 24 Aug 2021 13:12:03 +0100 Subject: [PATCH 04/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index d2d654c..5e3f9f1 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -17,7 +17,7 @@ jobs: run: chmod +x gradlew && ./gradlew tasks - name: Build Android app - run: ./gradlew build + run: ./gradlew assembleWebview - name: List files run: ls From f9878d84948acab367b34f98dcc3a184b77f1405 Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Tue, 24 Aug 2021 13:18:45 +0100 Subject: [PATCH 05/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 5e3f9f1..8b88b5a 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -20,7 +20,7 @@ jobs: run: ./gradlew assembleWebview - name: List files - run: ls + run: ls && ls app && ls app/build buildios: name: Build iOS app From a1be90abf9f41f5f21f1eb939639c929d176ff3b Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Tue, 24 Aug 2021 13:22:43 +0100 Subject: [PATCH 06/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 8b88b5a..1595932 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -20,7 +20,7 @@ jobs: run: ./gradlew assembleWebview - name: List files - run: ls && ls app && ls app/build + run: ls && ls app && ls app/build && ls app/build/outputs buildios: name: Build iOS app From ec30df1f400f09b4c9a2f5908daec71e7ee6432f Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Tue, 24 Aug 2021 13:29:08 +0100 Subject: [PATCH 07/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 1595932..d6c8570 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -20,7 +20,7 @@ jobs: run: ./gradlew assembleWebview - name: List files - run: ls && ls app && ls app/build && ls app/build/outputs + run: ls app/build/outputs/apk buildios: name: Build iOS app From f9e54ba09df8508b9bca14dfe368b09b7dc8db0d Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Tue, 24 Aug 2021 13:36:20 +0100 Subject: [PATCH 08/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index d6c8570..c47b0c2 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -12,15 +12,12 @@ jobs: uses: actions/checkout@v2 with: ref: android - - - name: List gradle tasks - run: chmod +x gradlew && ./gradlew tasks - + - name: Build Android app - run: ./gradlew assembleWebview + run: chmod +x gradlew && ./gradlew assembleWebview - name: List files - run: ls app/build/outputs/apk + run: ls app/build/outputs/apk/webview buildios: name: Build iOS app From 61fbc1b098a6a2367b6edb47bc95af07ec8c0938 Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Tue, 24 Aug 2021 13:39:30 +0100 Subject: [PATCH 09/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index c47b0c2..6928c10 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -17,7 +17,7 @@ jobs: run: chmod +x gradlew && ./gradlew assembleWebview - name: List files - run: ls app/build/outputs/apk/webview + run: ls app/build/outputs/apk/webview/release buildios: name: Build iOS app From b1842a3b9c4b5c8e452a84219cdb0fc48bfb506d Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Tue, 24 Aug 2021 13:46:58 +0100 Subject: [PATCH 10/11] Update buildnw.yml --- .github/workflows/buildnw.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/buildnw.yml b/.github/workflows/buildnw.yml index 6928c10..c920b5f 100644 --- a/.github/workflows/buildnw.yml +++ b/.github/workflows/buildnw.yml @@ -16,8 +16,11 @@ jobs: - name: Build Android app run: chmod +x gradlew && ./gradlew assembleWebview - - name: List files - run: ls app/build/outputs/apk/webview/release + - name: Upload Android build + uses: actions/upload-artifact@v2 + with: + name: KitsuneOffline-android.apk + path: app/build/outputs/apk/webview/release/app-webview-release-unsigned.apk buildios: name: Build iOS app From 2d211242c1089f9842a6648e673db22b4227eeb4 Mon Sep 17 00:00:00 2001 From: Lennon McLean Date: Tue, 24 Aug 2021 10:38:52 -0400 Subject: [PATCH 11/11] Updated version in READMe --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 265b50d..2778858 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Local Offline version of Kitsune Google Doodle, (Doodle Champion Island Games) useful if you want to play without internet (or just want to mod the game) -*rc6 version files located in logos/ folder* +*rc7 version files located in logos/ folder* How to play: (for noobs) Goto the releases page, download the zip and open kitsune.exe, there your done!