오류 : 현재 문자를 확인할 수 없습니다. 안드로이드에 대한 반응 네이티브의 문자열, 숫자, 배열 또는 객체가 아닙니다.


9

에뮬레이터를 계속 실행하면서 반응 네이티브 실행 안드로이드실행할마다이 오류가 발생합니다. 반응 네이티브 실행 IOS 는 완전히 잘 작동했습니다.

Error: Command failed: ./gradlew app:installDebug -PreactNativeDevServerPort=8081
:ReactNative:Failed to parse React Native CLI configuration: groovy.json.JsonException: Unable to determine the current character, it is not a string, number, array, or object

The current character read is 'E' with an int value of 69
Unable to determine the current character, it is not a string, number, array, or object
line number 1
index number 0
Error: Invalid attribute nameLine: 16Column: 18Char: .    at error (/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/sax/lib/sax.js:651:10)    at strictFail (/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/sax/lib/sax.js:677:7)    at SAXParser.write (/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/sax/lib/sax.js:1313:13)    at new XmlDocument (/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/xmldoc/lib/xmldoc.js:261:15)    at readManifest (/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/@react-native-community/cli-platform-android/build/config/readManifest.js:38:10)    at Object.projectConfig (/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/@react-native-community/cli-platform-android/build/config/index.js:59:46)    at Object.get project [as project] (/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/react-native/node_modules/@react-native-community/cli/build/tools/config/index.js:114:50)    at /Users/yashatreya/Desktop/Realyze/Realyze/node_modules/react-native/node_modules/@react-native-community/cli/build/commands/config/config.js:8:452    at Array.forEach (<anonymous>)    at _objectSpread (/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/react-native/node_modules/@react-native-community/cli/build/commands/config/config.js:8:392)
^

FAILURE: Build failed with an exception.

* Where:
Script '/Users/yashatreya/Desktop/Realyze/Realyze/node_modules/@react-native-community/cli-platform-android/native_modules.gradle' line: 201

* What went wrong:
A problem occurred evaluating script.
> Failed to parse React Native CLI configuration. Expected running 'npx --quiet --no-install react-native config' command from '/Users/yashatreya/Desktop/Realyze/Realyze' directory to output valid JSON, but it didn't. This may be caused by npx resolving to a legacy global react-native binary. Please make sure to uninstall any global 'react-native' binaries: 'npm uninstall -g react-native react-native-cli' and try again

* 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

오류 메시지에 표시된 것처럼 실행을 시도했지만 작동 npm uninstall -g react-native react-native-cli하지 않았습니다.

내 환경에 대한 정보 :

System:
    OS: macOS 10.15
    CPU: (4) x64 Intel(R) Core(TM) i5-7360U CPU @ 2.30GHz
    Memory: 29.68 MB / 8.00 GB
    Shell: 3.2.57 - /bin/bash
  Binaries:
    Node: 12.13.0 - /usr/local/bin/node
    Yarn: 1.19.1 - /usr/local/bin/yarn
    npm: 6.12.0 - /usr/local/bin/npm
    Watchman: 4.9.0 - /usr/local/bin/watchman
  SDKs:
    iOS SDK:
      Platforms: iOS 13.0, DriverKit 19.0, macOS 10.15, tvOS 13.0, watchOS 6.0
  IDEs:
    Android Studio: 3.5 AI-191.8026.42.35.5977832
    Xcode: 11.0/11A420a - /usr/bin/xcodebuild
  npmPackages:
    react: 16.9.0 => 16.9.0 
    react-native: ^0.61.4 => 0.61.4 
  npmGlobalPackages:
    react-native-cli: 2.0.1

아래 android / app / build.gradle :

apply plugin: "com.android.application"

import com.android.build.OutputFile
project.ext.react = [
    entryFile: "index.js",
    enableHermes: false,  // clean and rebuild if changing
]

apply from: "../../node_modules/react-native/react.gradle"

def enableSeparateBuildPerCPUArchitecture = false
def enableProguardInReleaseBuilds = false

def jscFlavor = 'org.webkit:android-jsc:+' 

def enableHermes = project.ext.react.get("enableHermes", false);

android {
    compileSdkVersion rootProject.ext.compileSdkVersion

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    defaultConfig {
        applicationId "com.realyze"
        minSdkVersion 21 
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1
        versionName "1.0"
        multiDexEnabled true

    }
    // rootProject.ext.minSdkVersion
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
        }
    }
    signingConfigs {
        debug {
            storeFile file('debug.keystore')
            storePassword 'android'
            keyAlias 'androiddebugkey'
            keyPassword 'android'
        }
    }
    buildTypes {
        debug {
            signingConfig signingConfigs.debug
        }
        release {
            // Caution! In production, you need to generate your own keystore file.
            // see https://facebook.github.io/react-native/docs/signed-apk-android.
            signingConfig signingConfigs.debug
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }
    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // https://developer.android.com/studio/build/configure-apk-splits.html
            def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }

        }
    }
}

dependencies {
    implementation project(':react-native-push-notification')
    implementation project(':react-native-sound')
    implementation project(':react-native-audio')
    implementation 'com.android.support:multidex:2.0.1'
    implementation project(':react-native-gesture-handler')
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "com.facebook.react:react-native:+"  // From node_modules
    implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
    implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0-alpha02'
    implementation 'com.google.firebase:firebase-analytics:17.2.0'
    implementation 'com.google.firebase:firebase-auth:19.1.0'
    implementation project(path: ":@react-native-firebase_auth")
    implementation project(path: ":@react-native-firebase_messaging")
    implementation project(path: ":@react-native-firebase_database")
    implementation project(':react-native-datetimepicker')
    implementation project(path: ":@react-native-firebase_firestore")
    implementation project(path: ":@react-native-firebase_functions")
}

    if (enableHermes) {
        def hermesPath = "../../node_modules/hermes-engine/android/";
        debugImplementation files(hermesPath + "hermes-debug.aar")
        releaseImplementation files(hermesPath + "hermes-release.aar")
    } else {
        implementation jscFlavor
    }
// }

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
apply plugin: 'com.google.gms.google-services'

아래 android / build.gradle :


buildscript {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 16
        compileSdkVersion = 28
        targetSdkVersion = 28
    }
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:3.4.2"
        classpath 'com.google.gms:google-services:4.3.2'
    }
}

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

        google()
        jcenter()
        maven { url 'https://jitpack.io' }
    }
}

처음에 나는이 오류가 발생했습니다 : react-native build error : org.gradle.api.Project 유형의 ': app'프로젝트에서 인수 [jscFlavor]에 대한 메소드 implementation ()을 찾을 수 없지만 지금은 위의 내용을 얻었습니다.


어떤 운영 체제를 사용하고 있습니까? 내 문제는 안드로이드 빌드 폴더 내의 파일 권한으로 인한 것으로 나타났습니다. 무슨 일이 있었는지 모르지만 Windows 10 컴퓨터에서는 높은 권한으로 모든 앱 (Android Studio, VS Code, Windows Command)을 시작해야합니다 (실행 관리자로).
Tahir Khalid

나는 맥 OS를 사용하고 있습니다
yashatreya

CLI를 사용하여 프로젝트를 다시 만들고 작업을 시작했습니다 :-(
Tahir Khalid

@TahirKhalid 반응 네이티브 초기화를 사용하여 완전히 새로운 프로젝트를 시작 했습니까? 감사합니다
yashatreya

예, 프로젝트를 다시 만들었지 만 이번에는 권한이 올바른지 확인했습니다. 나는 올바른 읽기 / 쓰기 액세스를 보장하기 위해 맥 OS 콘솔을 사용하여 폴더와 파일을 chmod를 것
타히르 칼리드

답변:


15

솔루션 1 (나를 위해 일했다)

나를위한 해결책은 다음 줄을 제거하는 것이 었습니다

apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)

모든 곳에서 제거하십시오. 나는이 라인했다 build.gradle (응용 프로그램) 에서도 및 settings.gradle을 .

그 후 콘솔을 다시 실행 하여 실제 오류를 표시하고 오류를 수정 한 다음 제거 한 줄을 다시 넣으십시오.

내 경우에는 이전 노드 버전을 사용했기 때문에 오류가 발생했으며 두 번째로 프로젝트를 다시 동기화해야했습니다.


솔루션 2

"현재 문자 읽기는 'E'이며 int 값은 69입니다."라는 오류가 발생한 파일을 삭제하십시오.

삭제

app\build\intermediates\signing_config\debug\out\signing-config.json

다른 사람들을 위해 일했습니다.


솔루션 3

업데이트 @ 반응 - 기본 - 사회 / CLI 를 최신 버전으로.

좋은 코딩!


MacOS에 nodejs에서 직접 설치해도 나에게도 도움이되었습니다. 감사합니다! 제거 및 다시 연결 단계를 수행해도 추출 설치를 수행해도 작동하지 않았습니다. nodejs 다운로드를 직접 강조 표시 한 다음 아래 해결 방법을 사용하여 답을 구상하십시오.
Kelton. 템비

여전히 문제가 발생했습니다. 이 해결 방법은 android/app/src/main/AndroidManifest.xml파일 에서 작은 구문 오류를 확인하는 데 도움이되었습니다 . 이제는 고정되어 다른 회선을 다시 켤 수있었습니다.
Kelton.Temby

1
공유해 주셔서 감사합니다. 더 명확하게 답변을 업데이트하겠습니다!
Faustino Gagneten

@ Kelton.Temby, 다른 사용자가 언급 한대로 더 명확하게 답변을 편집 할 수 있습니다.
Faustino Gagneten

3

이 문제는 최신 버전 (0.61)에만 있다고 생각합니다. 동일한 문제가 있었고 방금 이전 버전 (0.60.0)을 사용했습니다.

 npx react-native init AwesomeProject --version 0.60.0

1

android에서 빌드 폴더를 제거하고 android 폴더로 이동 한 다음 powershell type ./gradlewclean을 입력 한 다음 cd..=>npx react-native run-android


0

AndroidManifest.xml 데이터가 ""가 아니라 ""가 아닌 올바른 인용 부호로되어 있는지 확인하십시오. 이것은 일반적으로 firebase를 구성하고 종속성을 붙여 넣을 때 발생합니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.