================================================== =========================__ Ich konnte das Problem trotz meiner Nachforschungen nicht feststellen. Bitte hilf mir. Wo mache ich einen Fehler?
build.gradle -Datei;
// Top-level build file where you can add configuration options common to all sub-projects/modules.
def googlePlayServicesVersion = '11.8.0'
buildscript {
repositories {
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.Android.tools.build:gradle:2.2.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
def versionOverrides = [
"com.facebook.Android:facebook-Android-sdk": "4.22.1",
]
project(':react-native-fbsdk') {
configurations.all {
resolutionStrategy {
force 'com.facebook.Android:facebook-Android-sdk:4.22.1'
}
}
}
allprojects {
repositories {
// Add jitpack repository (added by tipsi-stripe)
maven { url "https://jitpack.io" }
mavenLocal()
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/Android"
}
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
configurations.all {
resolutionStrategy {
// react-native-admob
force "com.google.Android.gms:play-services-ads:$googlePlayServicesVersion"
// react-native-onesignal
force "com.google.Android.gms:play-services-gcm:$googlePlayServicesVersion"
force "com.google.Android.gms:play-services-analytics:$googlePlayServicesVersion"
force "com.google.Android.gms:play-services-location:$googlePlayServicesVersion"
force 'com.facebook.Android:facebook-Android-sdk:4.22.1'
}
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def overrideVersion = versionOverrides[details.requested.group + ":" + details.requested.name]
if (overrideVersion != null && details.requested.version != overrideVersion) {
println("********************************************************")
println("Overriding dependency ${details.requested.group}:${details.requested.name} version ${details.requested.version} --> $overrideVersion")
details.useVersion overrideVersion
println("********************************************************")
}
}
}
}
subprojects {
afterEvaluate {
project -> if (project.hasProperty("Android")) {
Android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
}
}
}
}
React-Native Run-Android-Fehler:
> Could not resolve all dependencies for configuration ':app:_debugApk'.
> A problem occurred configuring project ':react-native-onesignal'.
> Could not find play-services-tasks-license.aar (com.google.Android.gms:play-services-tasks-license:11.8.0).
Searched in the following locations:
https://jcenter.bintray.com/com/google/Android/gms/play-services-tasks-license/11.8.0/play-services-tasks-license-11.8.0.aar
jcenter liefert keinen https://jcenter.bintray.com/com/google/Android/gms/play-services-tasks-license/11.8.0/play-services-tasks-license-11.8.0.aar
.
maven { https://maven.google.com/ } dient dazu.
Tauschen Sie jcenter () mit maven {url " https://maven.google.com "} aus und versuchen Sie es erneut.
build.gradle
allprojects {
repositories {
mavenLocal()
maven {
url "https://maven.google.com"
}
jcenter()
maven {
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/Android"
}
configurations.all {
resolutionStrategy {
force 'com.facebook.Android:facebook-Android-sdk:4.31.0'
force 'com.google.Android.gms:play-services-base:11.8.0'
force 'com.google.Android.gms:play-services-maps:11.8.0'
force 'com.google.Android.gms:play-services-gcm:11.8.0'
force 'com.google.Android.gms:play-services-location:11.8.0'
}
}
}
}
Ich hatte Erfolg.
Viel Glück.
Der Fehler verschwindet, aber es erscheint ein weiterer Fehler
error: cannot access AbstractSafeParcelable
if( remoteMessage.getNotification() != null){
^
class file for com.google.Android.gms.common.internal.safeparcel.AbstractSafeParcelable not found
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
1 error
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.
Ich hatte das gleiche Problem und habe nur den letzten Link der build.gradle-Datei kommentiert oder entfernt.
Ich habe diese Zeile vom Ende der build.gradle-Datei entfernt
apply plugin: 'com.google.gms.google-services'
dependencies {
compile 'com.Android.support:support-v4:24.0.0'
compile 'com.google.Android.gms:play-services-ads:11.8.0'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services' //**Comment or Remove this Line**