mirror of
https://github.com/karakeep-app/karakeep.git
synced 2026-02-28 18:25:55 +01:00
* fix(mobile): Add 16KB memory page size support for Android Updates to support Google Play's requirement for 16KB memory page sizes: - Update Expo SDK from 53.0.11 to 53.0.19 - Update expo-image from 2.2.0 to 2.4.0 - Update React Native from 0.79.3 to 0.79.5 - Configure expo-build-properties with: - compileSdkVersion: 35 - targetSdkVersion: 35 - buildToolsVersion: 34.0.0 - ndkVersion: 27.1.12297006 (r27 with 16KB support) These changes ensure all native libraries are compiled with proper alignment for 16KB page sizes as required by Android 15+ devices. Fixes Google Play rejection: "Your app does not support 16 KB memory page sizes" * some fixes * more fixes --------- Co-authored-by: Claude <noreply@anthropic.com>
36 lines
974 B
JSON
36 lines
974 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/package.json",
|
|
"name": "@karakeep/shared-react",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@karakeep/shared": "workspace:^0.1.0",
|
|
"@karakeep/trpc": "workspace:^0.1.0",
|
|
"@tanstack/react-query": "5.90.2",
|
|
"@trpc/client": "^11.4.3",
|
|
"superjson": "^2.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@karakeep/prettier-config": "workspace:^0.1.0",
|
|
"@karakeep/tsconfig": "workspace:^0.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^19.0.0",
|
|
"react-native": "0.79.5"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"react-native": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"format": "prettier . --cache --ignore-path ../../.prettierignore --check",
|
|
"format:fix": "prettier . --cache --write --ignore-path ../../.prettierignore",
|
|
"lint": "oxlint .",
|
|
"lint:fix": "oxlint . --fix"
|
|
},
|
|
"prettier": "@karakeep/prettier-config"
|
|
}
|