From b58c276b4b88ac7c34b8252aa7ad04450e1301fc Mon Sep 17 00:00:00 2001 From: danielCalbonero12345 <159381855+danielCalbonero12345@users.noreply.github.com> Date: Wed, 22 May 2024 06:49:41 +0800 Subject: [PATCH 1/3] Update README.md From b31d479c3c3fce2d8da4b84de3e906baf5a64595 Mon Sep 17 00:00:00 2001 From: danielCalbonero12345 <159381855+danielCalbonero12345@users.noreply.github.com> Date: Thu, 6 Jun 2024 16:10:34 +0800 Subject: [PATCH 2/3] Create SECURITY.md --- SECURITY.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 SECURITY.md diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 000000000..034e84803 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,21 @@ +# Security Policy + +## Supported Versions + +Use this section to tell people about which versions of your project are +currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 5.1.x | :white_check_mark: | +| 5.0.x | :x: | +| 4.0.x | :white_check_mark: | +| < 4.0 | :x: | + +## Reporting a Vulnerability + +Use this section to tell people how to report a vulnerability. + +Tell them where to go, how often they can expect to get an update on a +reported vulnerability, what to expect if the vulnerability is accepted or +declined, etc. From e311e445e0aea88088f0599f82cc83c4627ecf4d Mon Sep 17 00:00:00 2001 From: danielCalbonero12345 <159381855+danielCalbonero12345@users.noreply.github.com> Date: Thu, 6 Jun 2024 16:13:00 +0800 Subject: [PATCH 3/3] 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 000000000..01e3c9842 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,26 @@ +name: Android CI + +on: + push: + branches: [ "develop" ] + pull_request: + branches: [ "develop" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - 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