@vanenshi/expo-plugins 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -112,15 +112,15 @@ pnpm test
|
|
|
112
112
|
|
|
113
113
|
### Example app
|
|
114
114
|
|
|
115
|
-
`
|
|
115
|
+
`example` is a minimal Expo app wiring both plugins, used to verify plugins
|
|
116
116
|
work end-to-end via `expo prebuild`:
|
|
117
117
|
|
|
118
118
|
```sh
|
|
119
|
-
cd
|
|
120
|
-
|
|
119
|
+
cd example
|
|
120
|
+
pnpm install
|
|
121
121
|
npx expo prebuild --clean
|
|
122
122
|
grep "Example (Beta)" android/app/src/main/res/values/strings.xml
|
|
123
123
|
grep "CFBundleDisplayName" ios/*/Info.plist
|
|
124
124
|
```
|
|
125
125
|
|
|
126
|
-
See [`
|
|
126
|
+
See [`example/README.md`](example/README.md) for details.
|