Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
with:
distribution: "temurin"
java-version: 17
- name: Set up NDK
uses: nttld/setup-ndk@afb4c9964b521afb97c864b7d40b11e6911bd410
with:
ndk-version: r28c
link-to-sdk: true
local-cache: true
- name: Check formatting using spotless
uses: gradle/actions/setup-gradle@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/android-debug-artifact-ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ jobs:
with:
distribution: "temurin"
java-version: 17
- name: Set up NDK
uses: nttld/setup-ndk@afb4c9964b521afb97c864b7d40b11e6911bd410
with:
ndk-version: r28c
link-to-sdk: true
local-cache: true
- name: Build with Gradle
uses: gradle/actions/setup-gradle@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/android-debug-artifact-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ jobs:
with:
distribution: "temurin"
java-version: 17
- name: Set up NDK
uses: nttld/setup-ndk@afb4c9964b521afb97c864b7d40b11e6911bd410
with:
ndk-version: r28c
link-to-sdk: true
local-cache: true
- name: Build with Gradle
uses: gradle/actions/setup-gradle@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/android-feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
with:
distribution: "temurin"
java-version: 17
- name: Set up NDK
uses: nttld/setup-ndk@afb4c9964b521afb97c864b7d40b11e6911bd410
with:
ndk-version: r28c
link-to-sdk: true
local-cache: true
- name: Check formatting using spotless
uses: gradle/actions/setup-gradle@v3
with:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/android-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
with:
distribution: "temurin"
java-version: 17
- name: Set up NDK
uses: nttld/setup-ndk@afb4c9964b521afb97c864b7d40b11e6911bd410
with:
ndk-version: r28c
link-to-sdk: true
local-cache: true
- name: Check formatting using spotless
uses: gradle/actions/setup-gradle@v3
with:
Expand Down
1 change: 1 addition & 0 deletions file_operations/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ android {

defaultConfig {
minSdkVersion libs.versions.minSdk.get().toInteger()
ndkVersion libs.versions.ndk.get()

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
Expand Down
1 change: 1 addition & 0 deletions file_operations/src/main/c/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ add_library(rootoperations SHARED rootoperations.c)
find_library(log-lib log)

target_link_libraries(rootoperations ${log-lib})
target_link_options(${CMAKE_PROJECT_NAME} PRIVATE "-Wl,-z,max-page-size=16384")
1 change: 1 addition & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ compileSdk = "34"
minSdk = "21"
targetSdk = "34"
kotlin = "1.9.25"
ndk = "28.2.13676358"

jacocoAndroid = "0.2.1"
gradle = "8.5.2"
Expand Down
Loading