Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update react-native-transmission & transmission-native #144

Merged
merged 8 commits into from
Jul 29, 2024
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
21 changes: 19 additions & 2 deletions .github/workflows/build-apps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,25 @@ jobs:
java-version: "17"
distribution: "temurin"

- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Setup vcpkg
uses: lukka/run-vcpkg@v11
with:
vcpkgGitCommitId: 1de2026f28ead93ff1773e6e680387643e914ea1 # 2024.07.12

- name: Get Dependencies
run: |
set -ex
sudo apt-get update
sudo apt-get install -y --no-install-recommends \
ninja-build
sudo apt clean

- name: Install vcpkg packages
run: |
vcpkg install --clean-after-build curl:x86-android openssl:x86-android
vcpkg install --clean-after-build curl:x64-android openssl:x64-android
vcpkg install --clean-after-build curl:arm-neon-android openssl:arm-neon-android
vcpkg install --clean-after-build curl:arm64-android openssl:arm64-android

- name: Setup EAS
uses: expo/expo-github-action@v8
Expand Down
21 changes: 0 additions & 21 deletions apps/app/app.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,27 +58,6 @@ module.exports = () => {
'expo-router',
'@config-plugins/react-native-webrtc',
'expo-localization',
[
'expo-build-properties',
{
android: {
packagingOptions: {
pickFirst: [
// X64
'/lib/arm64-v8a/libcrypto.so',
'/lib/arm64-v8a/libssl.so',
'/lib/x86_64/libcrypto.so',
'/lib/x86_64/libssl.so',
// x86
'/lib/armeabi-v7a/libcrypto.so',
'/lib/armeabi-v7a/libssl.so',
'/lib/x86/libcrypto.so',
'/lib/x86/libssl.so',
],
},
},
},
],
// We use notifee, but expo-notification allows us
// to generate 'notification_icon'
[
Expand Down
3 changes: 1 addition & 2 deletions apps/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"date-fns": "^3.6.0",
"expo": "~51.0.22",
"expo-barcode-scanner": "~13.0.1",
"expo-build-properties": "~0.12.3",
"expo-constants": "~16.0.2",
"expo-crypto": "~13.0.2",
"expo-dev-client": "~4.0.20",
Expand Down Expand Up @@ -69,7 +68,7 @@
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-transmission": "^0.3.1",
"react-native-transmission": "^0.3.3",
"react-native-web": "~0.19.6",
"react-native-webrtc": "111.0.3",
"semver": "^7.5.4",
Expand Down
50 changes: 24 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"node-pre-gyp": "^0.17.0",
"qrcode": "^1.5.3",
"simple-peer": "^9.11.1",
"transmission-native": "^0.4.3",
"transmission-native": "^0.4.6",
"wrtc": "^0.4.7",
"ws": "^8.12.1"
},
Expand Down
Loading