expo / config-plugins

Out-of-tree Expo config plugins for packages that haven't adopted the config plugin system yet.
427 stars 91 forks source link

expo:utils:scheme ios application Info.plist path: null +0ms #181

Open ghost opened 11 months ago

ghost commented 11 months ago

Summary

I receive this error when building eas expo development build for android

[RUN_GRADLEW] Build failed with an exception.
[RUN_GRADLEW] * Where:
[RUN_GRADLEW] Settings file '/tmp/audrew/eas-build-local-nodejs/cbe9b70a-3176-42fd-b071-ecb5c8303f38/build/android/settings.gradle' line: 10
[RUN_GRADLEW] * What went wrong:
[RUN_GRADLEW] A problem occurred evaluating settings 'TA'.
[RUN_GRADLEW] >
[RUN_GRADLEW] path may not be null or empty string. path='null'

Note: Project running fine locally when npx expo prebuild command is done.

Config Plugin

@config-plugins/react-native-ble-plx

What platform(s) does this occur on?

Android

SDK Version

49

Reproducible demo

app.json look like this


  "expo": {
    "plugins": [
      [
        "@config-plugins/react-native-ble-plx",
        {
          "isBackgroundEnabled": true,
          "modes": ["peripheral", "central"],
          "bluetoothAlwaysPermission": "Allow $(PRODUCT_NAME) to connect to bluetooth devices"
        }
      ]
    ]
  }
} ```