Skip to content

Commit

Permalink
Add SDK 35 unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
yujincheng08 committed Jan 20, 2025
1 parent 40b4caf commit 1e40156
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
steps:
- name: Check out
uses: actions/checkout@v3
- name: Set up JDK 17
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'
cache: 'gradle'
- name: Build with Gradle
run: |
Expand Down Expand Up @@ -85,6 +85,9 @@ jobs:
- api-level: 34
target: android-tv
arch: x86
- api-level: 35
target: aosp_atd
arch: x86_64
steps:
- name: checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ test-ext-junit = { module = "androidx.test.ext:junit", version = "1.2.1" }
test-rules = { module = "androidx.test:rules", version = "1.6.1" }

[plugins]
agp-lib = { id = "com.android.library", version = "8.2.0" }
agp-lib = { id = "com.android.library", version = "8.2.2" }
lsplugin-jgit = { id = "org.lsposed.lsplugin.jgit", version = "1.1" }
lsplugin-publish = { id = "org.lsposed.lsplugin.publish", version = "1.1" }

6 changes: 3 additions & 3 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ plugins {
}

android {
compileSdk = 34
buildToolsVersion = "34.0.0"
compileSdk = 35
buildToolsVersion = "35.0.1"
namespace = "org.lsposed.hiddenapibypass.library"

buildFeatures {
Expand All @@ -22,7 +22,7 @@ android {
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
testOptions {
targetSdk = 34
targetSdk = 35
}
buildTypes {
release {
Expand Down

0 comments on commit 1e40156

Please sign in to comment.