mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-07-22 05:44:54 +00:00
Update Wafrn to 1.5.3 (10050032)
This commit is contained in:
parent
bd12de3595
commit
04de855c40
1 changed files with 125 additions and 5 deletions
|
|
@ -9,14 +9,14 @@ AuthorName: Juan D. Jara
|
||||||
AuthorEmail: hola@juandjara.com
|
AuthorEmail: hola@juandjara.com
|
||||||
AuthorWebSite: https://juan.djara.dev
|
AuthorWebSite: https://juan.djara.dev
|
||||||
WebSite: https://wafrn.net
|
WebSite: https://wafrn.net
|
||||||
SourceCode: https://github.com/juandjara/wafrn-rn
|
SourceCode: https://codeberg.org/wafrn/wafrn-rn
|
||||||
IssueTracker: https://github.com/juandjara/wafrn-rn/issues
|
IssueTracker: https://codeberg.org/wafrn/wafrn-rn/issues
|
||||||
Donate: https://ko-fi.com/juandjara
|
Donate: https://ko-fi.com/juandjara
|
||||||
|
|
||||||
AutoName: Wafrn
|
AutoName: Wafrn
|
||||||
|
|
||||||
RepoType: git
|
RepoType: git
|
||||||
Repo: https://github.com/juandjara/wafrn-rn
|
Repo: https://codeberg.org/wafrn/wafrn-rn
|
||||||
|
|
||||||
Builds:
|
Builds:
|
||||||
- versionName: 1.4.3
|
- versionName: 1.4.3
|
||||||
|
|
@ -739,10 +739,130 @@ Builds:
|
||||||
- gradle assembleRelease --parallel --build-cache --no-daemon -PreactNativeArchitectures=arm64-v8a
|
- gradle assembleRelease --parallel --build-cache --no-daemon -PreactNativeArchitectures=arm64-v8a
|
||||||
ndk: 27.1.12297006
|
ndk: 27.1.12297006
|
||||||
|
|
||||||
|
- versionName: 1.5.3
|
||||||
|
versionCode: 10050031
|
||||||
|
commit: 58255ff3430e60a448f03ec97513d829fd0679b2
|
||||||
|
subdir: android/app/
|
||||||
|
sudo:
|
||||||
|
- sysctl fs.inotify.max_user_watches=524288 || true
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install -y npm ninja-build bzip2 xz-utils
|
||||||
|
- npm install -g corepack
|
||||||
|
init:
|
||||||
|
- cd ../..
|
||||||
|
- npm install --build-from-source
|
||||||
|
- npm install lightningcss --save-dev
|
||||||
|
- npm uninstall expo-notifications
|
||||||
|
output: build/outputs/apk/release/*.apk
|
||||||
|
srclibs:
|
||||||
|
- react-native-skia@v2.0.0
|
||||||
|
rm:
|
||||||
|
- ios
|
||||||
|
- node_modules/@shopify/react-native-skia/libs/android
|
||||||
|
- node_modules/@shopify/react-native-skia/libs/apple
|
||||||
|
prebuild:
|
||||||
|
- export skiaVersion=$(sed -n -E 's|.*"@shopify/react-native-skia":\s"(.*)".*|\1|p'
|
||||||
|
../../package.json)
|
||||||
|
- '[[ $skiaVersion ]] || exit 1'
|
||||||
|
- git -C $$react-native-skia$$ checkout -f "$skiaVersion"
|
||||||
|
- sed -i -e 's/\(.*expo.modules.updates.ENABLED.*\)android:value="true"/\1android:value="false"/'
|
||||||
|
src/main/AndroidManifest.xml
|
||||||
|
- sed -i -e 's/"buildFromSource".*/"buildFromSource":\[".*"\]/' ../../package.json
|
||||||
|
- sed -i -e 's/for (const key of mapKeys(configurations))/const key = "android";/'
|
||||||
|
-e 's/for (const target of mapKeys(configuration.targets))/const target =
|
||||||
|
"arm";/' -e 's/import { $, mapKeys, runAsync }/import { $, runAsync }/' -e
|
||||||
|
'/ban-ts-comment/,+1d' -e '/buildXCFrameworks()/d' -e '/buildXCFrameworks/,/^};/d'
|
||||||
|
-e '/copyHeaders/d' $$react-native-skia$$/packages/skia/scripts/build-skia.ts
|
||||||
|
scanignore:
|
||||||
|
- android/build.gradle
|
||||||
|
- node_modules/expo-modules-autolinking/scripts/android/autolinking_implementation.gradle
|
||||||
|
- node_modules/expo-modules-core/android/ExpoModulesCorePlugin.gradle
|
||||||
|
- node_modules/react-native-safe-area-context/android/build.gradle
|
||||||
|
- node_modules/react-native-pager-view/android/build.gradle
|
||||||
|
- node_modules/react-native-reanimated/android/build.gradle
|
||||||
|
- node_modules/react-native-screens/android/build.gradle
|
||||||
|
- node_modules/expo-dev-launcher/android/build.gradle
|
||||||
|
- node_modules/expo-dev-menu/android/build.gradle
|
||||||
|
- node_modules/react-native-edge-to-edge/android/build.gradle
|
||||||
|
- node_modules/react-native/sdks/hermesc/linux64-bin/hermesc
|
||||||
|
- node_modules/react-native/ReactAndroid/publish.gradle
|
||||||
|
scandelete:
|
||||||
|
- node_modules
|
||||||
|
build:
|
||||||
|
- pushd $$react-native-skia$$/packages/skia
|
||||||
|
- corepack enable
|
||||||
|
- yarn
|
||||||
|
- build="yarn build-skia android"
|
||||||
|
- $build || $build || $build
|
||||||
|
- popd
|
||||||
|
- mv $$react-native-skia$$/packages/skia/libs/android ../../node_modules/@shopify/react-native-skia/libs/android
|
||||||
|
- gradle assembleRelease --parallel --build-cache --no-daemon -PreactNativeArchitectures=armeabi-v7a
|
||||||
|
ndk: 27.1.12297006
|
||||||
|
|
||||||
|
- versionName: 1.5.3
|
||||||
|
versionCode: 10050032
|
||||||
|
commit: 58255ff3430e60a448f03ec97513d829fd0679b2
|
||||||
|
subdir: android/app/
|
||||||
|
sudo:
|
||||||
|
- sysctl fs.inotify.max_user_watches=524288 || true
|
||||||
|
- apt-get update
|
||||||
|
- apt-get install -y npm ninja-build bzip2 xz-utils
|
||||||
|
- npm install -g corepack
|
||||||
|
init:
|
||||||
|
- cd ../..
|
||||||
|
- npm install --build-from-source
|
||||||
|
- npm install lightningcss --save-dev
|
||||||
|
- npm uninstall expo-notifications
|
||||||
|
output: build/outputs/apk/release/*.apk
|
||||||
|
srclibs:
|
||||||
|
- react-native-skia@v2.0.0
|
||||||
|
rm:
|
||||||
|
- ios
|
||||||
|
- node_modules/@shopify/react-native-skia/libs/android
|
||||||
|
- node_modules/@shopify/react-native-skia/libs/apple
|
||||||
|
prebuild:
|
||||||
|
- export skiaVersion=$(sed -n -E 's|.*"@shopify/react-native-skia":\s"(.*)".*|\1|p'
|
||||||
|
../../package.json)
|
||||||
|
- '[[ $skiaVersion ]] || exit 1'
|
||||||
|
- git -C $$react-native-skia$$ checkout -f "$skiaVersion"
|
||||||
|
- sed -i -e 's/\(.*expo.modules.updates.ENABLED.*\)android:value="true"/\1android:value="false"/'
|
||||||
|
src/main/AndroidManifest.xml
|
||||||
|
- sed -i -e 's/"buildFromSource".*/"buildFromSource":\[".*"\]/' ../../package.json
|
||||||
|
- sed -i -e 's/for (const key of mapKeys(configurations))/const key = "android";/'
|
||||||
|
-e 's/for (const target of mapKeys(configuration.targets))/const target =
|
||||||
|
"arm64";/' -e 's/import { $, mapKeys, runAsync }/import { $, runAsync }/'
|
||||||
|
-e '/ban-ts-comment/,+1d' -e '/buildXCFrameworks()/d' -e '/buildXCFrameworks/,/^};/d'
|
||||||
|
-e '/copyHeaders/d' $$react-native-skia$$/packages/skia/scripts/build-skia.ts
|
||||||
|
scanignore:
|
||||||
|
- android/build.gradle
|
||||||
|
- node_modules/expo-modules-autolinking/scripts/android/autolinking_implementation.gradle
|
||||||
|
- node_modules/expo-modules-core/android/ExpoModulesCorePlugin.gradle
|
||||||
|
- node_modules/react-native-safe-area-context/android/build.gradle
|
||||||
|
- node_modules/react-native-pager-view/android/build.gradle
|
||||||
|
- node_modules/react-native-reanimated/android/build.gradle
|
||||||
|
- node_modules/react-native-screens/android/build.gradle
|
||||||
|
- node_modules/expo-dev-launcher/android/build.gradle
|
||||||
|
- node_modules/expo-dev-menu/android/build.gradle
|
||||||
|
- node_modules/react-native-edge-to-edge/android/build.gradle
|
||||||
|
- node_modules/react-native/sdks/hermesc/linux64-bin/hermesc
|
||||||
|
- node_modules/react-native/ReactAndroid/publish.gradle
|
||||||
|
scandelete:
|
||||||
|
- node_modules
|
||||||
|
build:
|
||||||
|
- pushd $$react-native-skia$$/packages/skia
|
||||||
|
- corepack enable
|
||||||
|
- yarn
|
||||||
|
- build="yarn build-skia android"
|
||||||
|
- $build || $build || $build
|
||||||
|
- popd
|
||||||
|
- mv $$react-native-skia$$/packages/skia/libs/android ../../node_modules/@shopify/react-native-skia/libs/android
|
||||||
|
- gradle assembleRelease --parallel --build-cache --no-daemon -PreactNativeArchitectures=arm64-v8a
|
||||||
|
ndk: 27.1.12297006
|
||||||
|
|
||||||
AutoUpdateMode: Version
|
AutoUpdateMode: Version
|
||||||
UpdateCheckMode: Tags
|
UpdateCheckMode: Tags
|
||||||
VercodeOperation:
|
VercodeOperation:
|
||||||
- 10 * %c + 1
|
- 10 * %c + 1
|
||||||
- 10 * %c + 2
|
- 10 * %c + 2
|
||||||
CurrentVersion: 1.5.2
|
CurrentVersion: 1.5.3
|
||||||
CurrentVersionCode: 10050022
|
CurrentVersionCode: 10050032
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue