From a2029807b56abac525c7e0c32d1b98eb018c6081 Mon Sep 17 00:00:00 2001 From: Georgy Lebedik Date: Fri, 13 Jun 2025 23:18:49 +0300 Subject: [PATCH 1/4] 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..eaf5d04 --- /dev/null +++ b/.github/workflows/android.yml @@ -0,0 +1,26 @@ +name: Android CI + +on: + push: + branches: [ "integration" ] + pull_request: + branches: [ "integration" ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: set up JDK 16 + uses: actions/setup-java@v4 + with: + java-version: '16' + distribution: 'temurin' + cache: gradle + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew build From ae1e028e18b371c75633cc9bc21478b8eb5a63e8 Mon Sep 17 00:00:00 2001 From: Georgy Lebedik Date: Fri, 13 Jun 2025 23:21:07 +0300 Subject: [PATCH 2/4] Update android.yml --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index eaf5d04..9dc6925 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: set up JDK 16 + - name: set up JDK 17 uses: actions/setup-java@v4 with: - java-version: '16' + java-version: '17' distribution: 'temurin' cache: gradle From 6eabd3828ebfe437e7632fc0fe4b4d2e7cac1eac Mon Sep 17 00:00:00 2001 From: Georgy Lebedik Date: Fri, 13 Jun 2025 23:57:40 +0300 Subject: [PATCH 3/4] Java version changes --- AndroidClient/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AndroidClient/build.gradle b/AndroidClient/build.gradle index a610610..ab31dce 100644 --- a/AndroidClient/build.gradle +++ b/AndroidClient/build.gradle @@ -29,8 +29,8 @@ android { //LocalDateTime features coreLibraryDesugaringEnabled = true - sourceCompatibility JavaVersion.VERSION_16 - targetCompatibility JavaVersion.VERSION_16 + sourceCompatibility JavaVersion.VERSION_21 + targetCompatibility JavaVersion.VERSION_21 } buildFeatures { viewBinding true From ead63f5f547a5c9cd23e4f7b341aad0e5161bf41 Mon Sep 17 00:00:00 2001 From: Georgy Lebedik Date: Sat, 14 Jun 2025 00:02:10 +0300 Subject: [PATCH 4/4] Update android.yml --- .github/workflows/android.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index 9dc6925..307bb69 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: set up JDK 17 + - name: set up JDK 21 uses: actions/setup-java@v4 with: - java-version: '17' + java-version: '21' distribution: 'temurin' cache: gradle