簡體   English   中英

如何啟用堆棧跟蹤 react-native run-android 命令?

[英]How to enable stacktrace react-native run-android command?

我正在通過react-native run-android運行一個 react native 項目。 但是在構建過程中,它沒有說明:react-native-device-info:processReleaseResources FAILED 這沒有提供太多信息,所以我嘗試按照建議使用react-native run-android --stacktrace ,但這不是公認的命令。

如何使用react-native run-android命令啟用堆棧跟蹤/詳細日志記錄?

這是錯誤的詳細信息,它太短而無法在構建時弄清楚:

:react-native-device-info:processReleaseResources FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':react-native-device-info:processReleaseResources'.
> com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Users\Brian\AppData\Local\Android\sdk\build-tools\23.0.1\aapt.exe'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: -12.542 secs

Package.json 供參考:

{
  "name": "StarterKit",
  "version": "1.0.0",
  "private": true,
  "scripts": {
    "start": "node node_modules/react-native/local-cli/cli.js start",
    "test": "jest"
  },
  "jest": {
    "preset": "react-native",
    "setupFiles": [
      "<rootDir>/jest.setup.js"
    ],
    "transformIgnorePatterns": [
      "node_modules/(?!react-native|tcomb-form-native|apsl-react-native-button,react-native-device-info|react-clone-referenced-element)"
    ],
    "collectCoverage": true,
    "verbose": true
  },
  "dependencies": {
    "html-entities": "^1.2.0",
    "jwt-decode": "^2.1.0",
    "qs": "^6.3.0",
    "react": "15.4.2",
    "react-addons-shallow-compare": "^15.4.2",
    "react-native": "^0.40.0",
    "react-native-device-info": "^0.9.6",
    "react-native-elements": "^0.9.2",
    "react-native-google-analytics-bridge": "git+https://github.com/mcnamee/react-native-google-analytics-bridge.git",
    "react-native-router-flux": "^3.37.0",
    "react-native-side-menu": "^0.20.1",
    "react-native-tab-view": "0.0.48",
    "react-native-vector-icons": "^4.0.0",
    "react-redux": "^5.0.1",
    "redux": "^3.6.0",
    "redux-logger": "^2.7.0",
    "redux-thunk": "^2.1.0",
    "striptags": "^2.1.1",
    "tcomb-form-native": "^0.6.1"
  },
  "devDependencies": {
    "babel-core": "^6.17.0",
    "babel-eslint": "^7.1.0",
    "babel-jest": "18.0.0",
    "babel-preset-es2015": "^6.18.0",
    "babel-preset-react-native": "1.9.1",
    "babel-register": "^6.16.3",
    "eslint": "^3.9.1",
    "eslint-config-airbnb": "^14.0.0",
    "eslint-plugin-import": "^2.2.0",
    "eslint-plugin-jsx-a11y": "^3.0.2",
    "eslint-plugin-react": "^6.4.1",
    "invariant": "^2.2.2",
    "jest": "18.1.0",
    "jest-react-native": "^18.0.0",
    "react-test-renderer": "15.4.2"
  }
}

build.gradle 文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

    buildscript {
        repositories {
            jcenter()
        }
        dependencies {
            classpath 'com.android.tools.build:gradle:2.1.0'

            // NOTE: Do not place your application dependencies here; they belong
            // in the individual module build.gradle files
        }
    }

    allprojects {
        repositories {
            mavenLocal()
            jcenter()
            maven {
                // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
                url "$rootDir/../node_modules/react-native/android"
            }
        }
    }

@EricHua23 的回答基本上是正確的,除了你應該運行./gradlew.bat installDebug --stacktrace而不是運行./gradlew assembleDebug --stacktrace ./gradlew.bat installDebug --stacktrace ,因為這是實際由react-native run-android運行的命令。 (以及您希望獲得堆棧跟蹤的一些錯誤僅發生在安裝/后期構建部分,而不是組裝部分)

另外,請確保在android文件夾中運行它。 (所以在運行 gradlew 命令之前在控制台中運行cd android

嘗試使用./gradlew assembleDebug單獨構建react-native-device-info並確保react-native-device-info 我有同樣的問題,因為我的網絡被阻塞並且無法訪問jcenter

順便說一句, --stacktrace應該作為gradle參數添加,我懷疑react-native不會將它傳遞給gradle

如果在 Windows 上運行,請在項目的根目錄中運行以下命令:

 1. cd android 
 2. gradlew.bat installDebug --stacktrace

嘗試react-native start

這會詳細顯示錯誤。

我在 ViroMedia 示例應用程序中使用這樣的 package.json 文件作為 shell 命令的快捷方式:

{
  "name": "ViroSample",
  "version": "0.0.1",
  "private": true,
  "scripts": {
    "start": "node node_modules/react-native/local-cli/cli.js start",
    "android": "react-native run-android --variant arrelease",
    "and_bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
    "ios": "react-native run-ios",
    "gradle_build": "cd android && ./gradlew --stacktrace --info assembleRelease -x bundleArReleaseJsAndAssets",
    "gradle_install": "cd android && ./gradlew installArDebug --stacktrace --info",
    "test": "jest"
  },
  "dependencies": {
    "axios": "^0.19.0",
    "expo": "^35.0.0",
    "react": "16.8.3",
    "react-native": "^0.61.5",
    "react-viro": "2.15.0"
  },
  "devDependencies": {
    "@babel/core": "^7.5.5",
    "@babel/runtime": "^7.5.5",
    "babel-jest": "^24.8.0",
    "jest": "^24.8.0",
    "metro-react-native-babel-preset": "^0.55.0",
    "react-test-renderer": "16.8.3"
  },
  "jest": {
    "preset": "react-native"
  }
}

我從我的項目根目錄(iMac bash shell)發出以下命令:

yarn gradle_install

有關其他 shell 命令,請參閱上面的腳本塊。

注意:在 Windows 中這是 gradlew.bat。

快樂編碼:-)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM