在 expo-react-native 上添加 usesClearTextTraffic = true。

huangapple go评论57阅读模式
英文:

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": {
          ...
        }
      }]
  }
}

huangapple
  • 本文由 发表于 2023年6月15日 00:38:15
  • 转载请务必保留本文链接:https://go.coder-hub.com/76475785.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定