react-native run-android Building Error ':app:generateDebugBuildConfig'

前端 未结 5 1525
天命终不由人
天命终不由人 2021-01-01 15:55

I am having a problem to build a new project. I am using React-Native and Android Emulator (AVD) but when I use the command react-native run-android I get the f

5条回答
  •  星月不相逢
    2021-01-01 16:28

    React Native

    Faced similar issue while building react native app. Running on the different port as the default port (8081) is used by some other app.

    Command to build the app.

    react-native run-android --port=8082

    Solution My case

    (Removed extra attribute android:screenOrientation="portrait". If you check the log, it says

    lineNumber: 26; columnNumber: 56; Attribute "screenOrientation" bound to namespace "http://schemas.android.com/apk/res/android" was already specified for element "activity".

    hence removed the same attribute. This was being added multiple times

    Error log

    Configure project :react-native-webview
    :react-native-webview:reactNativeAndroidRoot /Users/PROJECT_PATH/node_modules/react-native/android
    
    Task :app:generateDebugBuildConfig FAILED
    
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':app:generateDebugBuildConfig'.
    org.xml.sax.SAXParseException; systemId: file:/Users/PROJECT_PATH/android/app/src/main/AndroidManifest.xml; lineNumber: 26; columnNumber: 56; Attribute "screenOrientation" bound to namespace "http://schemas.android.com/apk/res/android" was already specified for element "activity".
    
    * Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
    
    * Get more help at https://help.gradle.org
    
    BUILD FAILED in 1s
    32 actionable tasks: 1 executed, 31 up-to-date
    Could not install the app on the device, read the error above for details.
    Make sure you have an Android emulator running or a device connected and have
    set up your Android development environment:
    https://facebook.github.io/react-native/docs/getting-started.html
    
    Command failed: ./gradlew installDebug
    

提交回复
热议问题