Skip to main content

Expo Settings

Expo Settings

Expo allows you to easily use pre-configured config plugins.

tip

If the features provided by this package are not enough, and you need more components from the config plugin, refer to the Android Settings and iOS Settings for instructions on how to write and use them yourself.

Installation of expo-build-properties

npx expo install expo-build-properties

app.json Settings

Initially, there are not many settings to configure, but as you use other packages, you add the necessary settings for android and ios.

app.json
"plugins": [
[
"expo-build-properties",
{
"android": {
"extraMavenRepos": [
"https://devrepo.kakao.com/nexus/content/groups/public/"
]
}
}
],
[
"@react-native-kakao/core",
{
"nativeAppKey": "{{native app key}}",
"android": {
...
},
"ios": {
...
}
}
]
]

(Optional) Android Obfuscation Settings

Refer to the Android Settings to inject proguard rules using the expo-build-properties config plugin.

(Optional) Web Platform Support

Proceed in the same manner as the Web Settings.