From a4ab7de0768b22f4cfb53941b20afbbf0235678b Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Thu, 7 Dec 2023 16:48:27 +0300 Subject: [PATCH 01/11] Update README.md --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index bd8a4f1..8128c5f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1 @@ -# AndroidCustomKeyboard - -Android custom keyboard with predictive text. - -![Animated Gif](keyboard.gif) \ No newline at end of file +nothing From 77f37facb7041e29af867ed2b81b62cc8f75ef63 Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Thu, 7 Dec 2023 16:58:22 +0300 Subject: [PATCH 02/11] Update qwerty.xml --- app/src/main/res/xml/qwerty.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/xml/qwerty.xml b/app/src/main/res/xml/qwerty.xml index 9df7c85..2b70cf9 100755 --- a/app/src/main/res/xml/qwerty.xml +++ b/app/src/main/res/xml/qwerty.xml @@ -25,7 +25,7 @@ android:keyHeight="@dimen/key_height"> - + From 01fce5049e86cd42f81a350460e4ebfc8195168d Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:00:17 +0300 Subject: [PATCH 03/11] Create main.yml --- .github/workflows/main.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7ecb56e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1 @@ +no From ddd539529a3331fb9067526843aa82d548a6d524 Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:02:43 +0300 Subject: [PATCH 04/11] Create gradle-publish.yml --- .github/workflows/gradle-publish.yml | 45 ++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/workflows/gradle-publish.yml diff --git a/.github/workflows/gradle-publish.yml b/.github/workflows/gradle-publish.yml new file mode 100644 index 0000000..3e30133 --- /dev/null +++ b/.github/workflows/gradle-publish.yml @@ -0,0 +1,45 @@ +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. +# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created +# For more information see: https://github.com/actions/setup-java/blob/main/docs/advanced-usage.md#Publishing-using-gradle + +name: Gradle Package + +on: + release: + types: [created] + +jobs: + build: + + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + + steps: + - uses: actions/checkout@v3 + - name: Set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + server-id: github # Value of the distributionManagement/repository/id field of the pom.xml + settings-path: ${{ github.workspace }} # location for the settings.xml file + + - name: Build with Gradle + uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 + with: + arguments: build + + # The USERNAME and TOKEN need to correspond to the credentials environment variables used in + # the publishing section of your build.gradle + - name: Publish to GitHub Packages + uses: gradle/gradle-build-action@bd5760595778326ba7f1441bcf7e88b49de61a25 # v2.6.0 + with: + arguments: publish + env: + USERNAME: ${{ github.actor }} + TOKEN: ${{ secrets.GITHUB_TOKEN }} From 28b9d0900bf564c75086e687592c7120b9f4fbe0 Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:04:15 +0300 Subject: [PATCH 05/11] Create android.yml --- .github/workflows/android.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/android.yml diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 0000000..e519f16 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,26 @@ +name: Android CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build From 04bab080115fdf2b766d1a69e74a42f32a21d6c9 Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Thu, 7 Dec 2023 17:06:01 +0300 Subject: [PATCH 06/11] Update android.yml --- .github/workflows/android.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index e519f16..e13550f 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -20,7 +20,4 @@ jobs: distribution: 'temurin' cache: gradle - - name: Grant execute permission for gradlew - run: chmod +x gradlew - - name: Build with Gradle - run: ./gradlew build + From d539905ee48658666e3c05fcc025ee20557923f0 Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Fri, 22 Dec 2023 15:45:37 +0300 Subject: [PATCH 07/11] Delete .github/workflows/android.yml --- .github/workflows/android.yml | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .github/workflows/android.yml diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml deleted file mode 100644 index e13550f..0000000 --- a/.github/workflows/android.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Android CI - -on: - push: - branches: [ "master" ] - pull_request: - branches: [ "master" ] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: set up JDK 11 - uses: actions/setup-java@v3 - with: - java-version: '11' - distribution: 'temurin' - cache: gradle - - From 5f6f066d84eae41c2bf6022640581e00d3e7a9e6 Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Fri, 22 Dec 2023 15:49:56 +0300 Subject: [PATCH 08/11] Create android.yml --- .github/workflows/android.yml | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 .github/workflows/android.yml diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml new file mode 100644 index 0000000..58284e9 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,44 @@ +name: Android CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: set up JDK 11 + uses: actions/setup-java@v3 + with: + java-version: '11' + distribution: 'temurin' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build + - name: Grant + uses: actions/download-artifact@v4.1.0 + with: + # Name of the artifact to download. If unspecified, all artifacts for the run are downloaded. + name: pog.zip + # Destination path. Supports basic tilde expansion. Defaults to $GITHUB_WORKSPACE + path: # optional + # A glob pattern matching the artifacts that should be downloaded. Ignored if name is specified. + pattern: # optional + # When multiple artifacts are matched, this changes the behavior of the destination directories. If true, the downloaded artifacts will be in the same directory specified by path. If false, the downloaded artifacts will be extracted into individual named directories within the specified path. + merge-multiple: # optional, default is false + # The GitHub token used to authenticate with the GitHub API. This is required when downloading artifacts from a different repository or from a different workflow run. If this is not specified, the action will attempt to download artifacts from the current repository and the current workflow run. + github-token: # optional + # The repository owner and the repository name joined together by "/". If github-token is specified, this is the repository that artifacts will be downloaded from. + repository: # optional, default is ${{ github.repository }} + # The id of the workflow run where the desired download artifact was uploaded from. If github-token is specified, this is the run that artifacts will be downloaded from. + run-id: # optional, default is ${{ github.run_id }} + From 333a2057eeec6354cb21fa577f382ff6e72c7174 Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Fri, 22 Dec 2023 16:03:23 +0300 Subject: [PATCH 09/11] Update qwerty.xml --- app/src/main/res/xml/qwerty.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/xml/qwerty.xml b/app/src/main/res/xml/qwerty.xml index 2b70cf9..b27a01b 100755 --- a/app/src/main/res/xml/qwerty.xml +++ b/app/src/main/res/xml/qwerty.xml @@ -25,7 +25,7 @@ android:keyHeight="@dimen/key_height"> - + From 696852b686a4cce21ec05e17d4cde8c44e574abf Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Fri, 22 Dec 2023 16:06:00 +0300 Subject: [PATCH 10/11] Update qwerty.xml --- app/src/main/res/xml/qwerty.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/xml/qwerty.xml b/app/src/main/res/xml/qwerty.xml index b27a01b..cd7455c 100755 --- a/app/src/main/res/xml/qwerty.xml +++ b/app/src/main/res/xml/qwerty.xml @@ -27,7 +27,7 @@ - + From 54d064f91f434e36971d4d364b4a9392c1b23950 Mon Sep 17 00:00:00 2001 From: AmarKherala <139703289+AmarKherala@users.noreply.github.com> Date: Fri, 22 Dec 2023 16:07:04 +0300 Subject: [PATCH 11/11] Revert "Update qwerty.xml" --- app/src/main/res/xml/qwerty.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/xml/qwerty.xml b/app/src/main/res/xml/qwerty.xml index cd7455c..b27a01b 100755 --- a/app/src/main/res/xml/qwerty.xml +++ b/app/src/main/res/xml/qwerty.xml @@ -27,7 +27,7 @@ - +