You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you're using an Expo Development Client, there are some additional steps:
31
+
#### Expo SDK 49 or lower
32
+
33
+
If you're using an older version Expo Development Client, there are some additional steps:
32
34
33
35
```yarn
34
36
npx expo install expo-build-properties
@@ -40,20 +42,20 @@ Next, add this to your app config's plugins array:
40
42
exportdefault {
41
43
plugins: [
42
44
[
43
-
"expo-build-properties",
45
+
'expo-build-properties',
44
46
{
45
47
android: {
46
48
// these values were tested with Expo SDK 48
47
49
compileSdkVersion:33,
48
50
targetSdkVersion:33,
49
51
minSdkVersion:23,
50
-
buildToolsVersion:"33.0.0",
51
-
kotlinVersion:"1.6.20",
52
+
buildToolsVersion:'33.0.0',
53
+
kotlinVersion:'1.6.20',
52
54
},
53
55
},
54
56
],
55
57
],
56
-
};
58
+
}
57
59
```
58
60
59
61
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.
0 commit comments