Skip to content
This repository was archived by the owner on Mar 21, 2024. It is now read-only.
Open
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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@ React Native Panorama viewer for Android and iOS.

`$ cd ios && pod install`

If you're using RN >= 0.65.0 and you're obtaining errors like "Could not find com.google.vr:..." while compiling, you need to add back `jcenter()` in your `android/build.gradle` repositories:
```
allprojects {
repositories {
// ...
jcenter() // <- ADD THIS!
}
}
```

## Troubleshooting iOS

If you're app doesn't compile due to Swift or linker errors. Follow these steps.
Expand Down