From 578076f929753923a9fab15e1eb9f20d538deef7 Mon Sep 17 00:00:00 2001 From: ama-pdftron Date: Mon, 26 May 2025 19:56:26 -0700 Subject: [PATCH 1/3] Update to v11.5.0 for Android --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index d45646d5..b8f5579e 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -67,7 +67,7 @@ dependencies { implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1' implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' - implementation "com.pdftron:pdftron:11.4.0" - implementation "com.pdftron:tools:11.4.0" - implementation "com.pdftron:collab:11.4.0" + implementation "com.pdftron:pdftron:11.5.0" + implementation "com.pdftron:tools:11.5.0" + implementation "com.pdftron:collab:11.5.0" } From 210231cab32fef78fbe965299535874c20a35d7b Mon Sep 17 00:00:00 2001 From: ama-pdftron Date: Mon, 26 May 2025 20:02:42 -0700 Subject: [PATCH 2/3] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 12f63b81..aa2fb16a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-pdftron", "title": "React Native Pdftron", - "version": "3.0.4-16", + "version": "3.0.4-17", "description": "React Native Pdftron", "main": "./lib/index.js", "typings": "index.ts", From b13f2698f55a39094e1ecc1903160383f4eb4a0a Mon Sep 17 00:00:00 2001 From: sgong-pdftron Date: Tue, 27 May 2025 08:24:45 -0700 Subject: [PATCH 3/3] attempts to fix action --- .github/workflows/jsBuilder.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/jsBuilder.yml b/.github/workflows/jsBuilder.yml index 0d8b0942..f439b8ec 100644 --- a/.github/workflows/jsBuilder.yml +++ b/.github/workflows/jsBuilder.yml @@ -16,16 +16,16 @@ jobs: fetch-depth: 0 # otherwise, you will failed to push refs to dest repo. ref: ${{ github.event.pull_request.head.sha }} # checks out the branch being merged into `master` - - name: Install dependencies - run: | - npm i @types/react-native@0.68.1 --save-dev - npm i react-native@0.68.2 - - name: Node setup uses: actions/setup-node@v2 with: node-version: '16' - cache: 'npm' + # cache: 'npm' + + - name: Install dependencies + run: | + npm i @types/react-native@0.68.1 --save-dev + npm i react-native@0.68.2 - name: Build JavaScript files run: | # Change line to your build script command.