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

fix: improve peer discovery #245

Merged
merged 12 commits into from
Apr 15, 2024
5 changes: 5 additions & 0 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

<uses-permission android:name="android.permission.INTERNET" />

<!-- Required for react-native-zeroconf -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
EvanHahn marked this conversation as resolved.
Show resolved Hide resolved

<application
android:name=".MainApplication"
android:label="@string/app_name"
Expand Down
109 changes: 57 additions & 52 deletions package-lock.json

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

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"@formatjs/intl-pluralrules": "^5.2.4",
"@formatjs/intl-relativetimeformat": "^11.2.4",
"@gorhom/bottom-sheet": "^4.5.1",
"@mapeo/ipc": "^0.1.6",
"@mapeo/ipc": "^0.2.0",
"@react-native-community/hooks": "^2.8.0",
"@react-native-community/netinfo": "11.1.0",
"@react-native-picker/picker": "2.6.1",
Expand Down Expand Up @@ -73,6 +73,7 @@
"react-native-svg": "14.1.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-vector-icons": "^10.0.3",
"react-native-zeroconf": "^0.13.8",
"readable-stream": "^4.4.1",
"rpc-reflector": "^1.3.10",
"start-stop-state-machine": "^1.2.0",
Expand All @@ -87,7 +88,7 @@
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@formatjs/cli": "^6.2.0",
"@mapeo/core": "^9.0.0-alpha.5",
"@mapeo/core": "^9.0.0-alpha.6",
"@mapeo/schema": "3.0.0-next.13",
"@react-native-community/cli": "^12.3.6",
"@react-native/babel-preset": "^0.73.21",
Expand All @@ -102,6 +103,7 @@
"@types/react": "^18.2.58",
"@types/react-native-indicators": "^0.16.2",
"@types/react-native-vector-icons": "^6.4.8",
"@types/react-native-zeroconf": "^0.12.3",
"@types/react-test-renderer": "^18.0.0",
"@types/utm": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
Expand Down
Loading