cmd give com.android.ide.common.process.ProcessException: не удалось выполнить aapt erro - PullRequest
0 голосов
/ 02 июня 2018

Я хочу использовать react-native-fcm для push-уведомлений Google Firebase, но когда я запускаю react-native run-android, появляется сообщение об ошибке com.android.ide.common.process.ProcessException: Не удалось выполнить aapt

myРеактивная собственная версия: «реактивная»: «0.55.4» fcm версия: «Реактивная-компьютерная»: «15.0.2»

android => bulde.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.2.3'
        classpath 'com.google.gms:google-services:3.0.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"
        }
    }
}

android / app => buld.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.2.3'
        classpath 'com.google.gms:google-services:3.0.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"
        }
    }
}

settings.gradle

rootProject.name = 'Notif'
include ':react-native-fcm'
project(':react-native-fcm').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-fcm/android')

include ':app'

Я связал google-services.json в папке android / app

Где проблема и как я могу ее решить?

...