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
27 changes: 27 additions & 0 deletions .github/workflows/ReactNativeSlider-CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,33 @@ jobs:
- name: Build the Android OS app
run: cd example/android && ./gradlew assembleDebug

build-android-app-new-arch:
name: Build example app Android (Fabric)
runs-on: ubuntu-latest
needs: [build-android-app]

steps:
- uses: actions/checkout@v4

- name: Pull the npm dependencies
run: npm install

- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'

- name: Use new arch config
id: cache-new-arch-gradle
uses: actions/cache@v4
env:
cache-name: cached-gradle-new-arch-prop
with:
path: example/android/gradle.properties
key: gradle-prop-new-arch-config

- name: Build the Android OS app
run: cd example/android && ./gradlew assembleDebug

build-iOS-app:
name: Build example app iOS
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ build/
.gradle
local.properties
*.iml
.cxx

# node.js
#
Expand Down
3 changes: 0 additions & 3 deletions package/android/src/main/jni/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,10 @@ target_link_libraries(
react_render_graphics
react_render_imagemanager
react_render_mapbuffer
react_render_textlayoutmanager
react_utils
react_nativemodule_core
rrc_image
turbomodulejsijni
rrc_text
rrc_textinput
rrc_view
yoga
)
Expand Down