英文:
Add usesClearTextTraffic = true on expo-react-native
问题
我想在我的Expo React Native项目中将usesClearTextTraffic设置为true。在expo-react-native项目中没有AndroidManifest.xml文件。我该如何修复它?
英文:
I want to add usesClearTextTraffic = true in my expo react native project.There is no AndroidManifest.xml project in expo-react-native.How I fix it?
答案1
得分: 1
你需要在 app.json
中使用一个插件:
{
"expo":
{
...
"plugins": [
["expo-build-properties", {
"android": {
"usesCleartextTraffic": true
},
"ios": {
...
}
}]
}
}
英文:
You need to use a plugin, in app.json
:
{
"expo":
{
...
"plugins": [
["expo-build-properties", {
"android": {
"usesCleartextTraffic": true
},
"ios": {
...
}
}]
}
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论