Skip to content
Open
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
9 changes: 9 additions & 0 deletions packages/pdf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

## 2.1.0 (2025-09-xx)

Upgrade Android libraries to fix 16KB alignment enforced by Google.

### ❤️ Thank You

- Hackergarten Dortmund Sept. 4th, 2025
- Markus Schlichting
2 changes: 1 addition & 1 deletion packages/pdf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nativescript/pdf",
"version": "2.0.0",
"version": "2.2.0-rc.0",
"description": "A NativeScript plugin to display PDF files on iOS and Android",
"main": "index",
"typings": "index.d.ts",
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
14 changes: 10 additions & 4 deletions packages/pdf/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"tags": [],
"targets": {
"build": {
"executor": "@nx/js:tsc",
"options": {
"outputPath": "dist/packages/pdf",
"tsConfig": "packages/pdf/tsconfig.json",
Expand All @@ -29,15 +28,22 @@
"projects": "dependencies"
}
]
}
},
"executor": "@nx/js:tsc",
"dependsOn": [
{
"target": "build.all",
"dependencies": true
}
]
},
"build.all": {
"executor": "nx:run-commands",
"outputs": ["{workspaceRoot}/dist/packages/pdf"],
"options": {
"commands": ["node tools/scripts/build-finish.ts pdf"],
"parallel": false
},
"outputs": ["{workspaceRoot}/dist/packages/pdf"],
"executor": "nx:run-commands",
"dependsOn": [
{
"target": "build.all",
Expand Down