Skip to content

Commit 0c5396e

Browse files
authored
Merge pull request #70 from Just-Moh-it/master
2 parents 3bd63d2 + 944eb10 commit 0c5396e

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

docs/docs/start.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,29 @@ yarn add @react-native-menu/menu
3131
If you're using an Expo Development Client, there are some additional steps:
3232

3333
```yarn
34-
expo install expo-build-properites
34+
npx expo install expo-build-properties
3535
```
3636

3737
Next, add this to your app config's plugins array:
3838

3939
```js
4040
export default {
4141
plugins: [
42-
"expo-build-properties",
42+
[
43+
"expo-build-properties",
4344
{
44-
android: {
45-
// these values were tested with Expo SDK 48
46-
compileSdkVersion: 33,
47-
targetSdkVersion: 33,
48-
minSdkVersion: 23,
49-
buildToolsVersion: '33.0.0',
50-
kotlinVersion: '1.6.20',
45+
android: {
46+
// these values were tested with Expo SDK 48
47+
compileSdkVersion: 33,
48+
targetSdkVersion: 33,
49+
minSdkVersion: 23,
50+
buildToolsVersion: "33.0.0",
51+
kotlinVersion: "1.6.20",
52+
},
5153
},
52-
}
53-
]
54-
}
55-
54+
],
55+
],
56+
};
5657
```
5758

5859
If you know your way around these, you may be able to adjust them. But if you get an error related to `react-native-menu` when building, please reference these properties.
@@ -78,7 +79,7 @@ To install your dev client on your iPhone, make sure it's plugged in to your Mac
7879
After the development client build is complete, you can run your app in dev mode:
7980

8081
```bash
81-
expo start --dev-client
82+
npx expo start --dev-client
8283
```
8384

8485
If your app is on the App Store, you'll need to deploy a new build too:

0 commit comments

Comments
 (0)