Ich habe diesen Fehler heute beim Versuch, eine App mit angeschlossenem Facebook SDK auszuführen, erhalten.
Warning:string 'com_facebook_smart_login_confirmation_continue_as_f1gender' has no default translation.
Warning:string 'com_facebook_loginview_log_out_action_f1gender' has no default translation.
Warning:string 'com_facebook_loginview_log_in_button_continue_f1gender' has no default translation.
Warning:string 'com_facebook_smart_login_confirmation_continue_as_m2gender' has no default translation.
Warning:string 'com_facebook_loginview_log_out_button_m2gender' has no default translation.
Warning:string 'com_facebook_loginview_log_out_action_m2gender' has no default translation.
Warning:string 'com_facebook_share_button_text_m2gender' has no default translation.
Warning:string 'com_facebook_loginview_logged_in_as_f1gender' has no default translation.
Warning:string 'com_facebook_send_button_text_m2gender' has no default translation.
Warning:string 'com_facebook_smart_login_confirmation_cancel_m2gender' has no default translation.
Warning:string 'com_facebook_loginview_logged_in_using_facebook_m2gender' has no default translation.
Warning:string 'com_facebook_loginview_log_out_button_f1gender' has no default translation.
Warning:string 'com_facebook_send_button_text_f1gender' has no default translation.
Warning:string 'com_facebook_loginview_logged_in_as_m2gender' has no default translation.
Warning:string 'com_facebook_smart_login_confirmation_cancel_f1gender' has no default translation.
Warning:string 'com_facebook_loginview_logged_in_using_facebook_f1gender' has no default translation.
Warning:string 'com_facebook_share_button_text_f1gender' has no default translation.
Warning:string 'com_facebook_loginview_log_in_button_continue_m2gender' has no default translation.
Warning:string 'com_facebook_smart_login_confirmation_title_f1gender' has no default translation.
Warning:string 'com_facebook_smart_login_confirmation_title_m2gender' has no default translation.
Warning:string 'com_facebook_tooltip_default_f1gender' has no default translation.
Warning:string 'com_facebook_tooltip_default_m2gender' has no default translation.
Error:Error converting bytecode to dex:
Cause: Java.lang.RuntimeException: Exception parsing classes
Error:1 error; aborting
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
> com.Android.build.api.transform.TransformException: Java.lang.RuntimeException: com.Android.ide.common.process.ProcessException: Java.util.concurrent.ExecutionException: com.Android.ide.common.process.ProcessException: Return code 1 for dex process
Information:BUILD FAILED
Ich versuche herauszufinden, warum, aber ich habe nicht nach einer anderen Zeichensprache als Englisch gefragt. Im Bedarfsfall ist dies meine App Gradle:
apply plugin: 'com.Android.application'
Android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId ".chillout"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.Android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.Android.support', module: 'support-annotations'
})
compile 'com.Android.support:appcompat-v7:25.1.1'
compile 'com.Android.support:design:25.3.1'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.google.firebase:firebase-database:10.0.0'
compile 'com.google.firebase:firebase-storage:10.0.0'
compile 'com.google.firebase:firebase-messaging:10.0.0'
compile 'com.facebook.Android:facebook-Android-sdk:[4,5)'
compile 'com.firebaseui:firebase-ui-database:1.2.0'
compile 'com.Android.support:cardview-v7:25.3.0'
compile 'com.Android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
Und das ist mein Projekt Gradle.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.Android.tools.build:gradle:2.3.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 {
jcenter {
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Vielen Dank!
(Stand vom 11. Juli 2017)
Rollback auf die Vorgängerversion 4.23.0 scheint gut zu funktionieren. Das heißt.
compile 'com.facebook.Android:facebook-Android-sdk:4.23.+'
Die neueste Version 4.24.0 scheint auf Android und iOS in vielerlei Hinsicht problematisch zu sein.
Ich hatte beim Erstellen meiner App die gleichen com_facebook
-Warnungen, jedoch ohne die Fehler. Ich vermute also, dass die Warnungen und die Fehler nicht miteinander zusammenhängen.
In jedem Fall habe ich die com_facebook
-Warnungen mit dem Hinzufügen einer Datei res/values/facebook-strings.xml
entfernt, die Folgendes enthält:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="com_facebook_loginview_log_in_button_continue_f1gender">Continue</string>
<string name="com_facebook_loginview_log_in_button_continue_m2gender">Continuee</string>
<string name="com_facebook_loginview_log_out_action_f1gender">Log out</string>
<string name="com_facebook_loginview_log_out_action_m2gender">Log out</string>
<string name="com_facebook_loginview_log_out_button_f1gender">Log out</string>
<string name="com_facebook_loginview_log_out_button_m2gender">Log out</string>
<string name="com_facebook_loginview_logged_in_as_f1gender">Logged in as</string>
<string name="com_facebook_loginview_logged_in_as_m2gender">Logged in as</string>
<string name="com_facebook_loginview_logged_in_using_facebook_f1gender">Logged in using Facebook</string>
<string name="com_facebook_loginview_logged_in_using_facebook_m2gender">Logged in using Facebook</string>
<string name="com_facebook_send_button_text_f1gender">Send</string>
<string name="com_facebook_send_button_text_m2gender">Send</string>
<string name="com_facebook_share_button_text_f1gender">Share</string>
<string name="com_facebook_share_button_text_m2gender">Share</string>
<string name="com_facebook_smart_login_confirmation_cancel_f1gender">Cancel</string>
<string name="com_facebook_smart_login_confirmation_cancel_m2gender">Cancel</string>
<string name="com_facebook_smart_login_confirmation_continue_as_f1gender">Continue</string>
<string name="com_facebook_smart_login_confirmation_continue_as_m2gender">Continue</string>
<string name="com_facebook_smart_login_confirmation_title_f1gender">Confirm</string>
<string name="com_facebook_smart_login_confirmation_title_m2gender">Confirm</string>
<string name="com_facebook_tooltip_default_f1gender">Default</string>
<string name="com_facebook_tooltip_default_m2gender">Default</string>
</resources>
Ich weiß nicht, ob die oben genannten "Standardübersetzungen" sinnvoll sind, aber ich habe sie sowieso nie gesehen. (Die Warnungen waren das Ergebnis eines Cordova-Plugins, mit dem ich mich nicht anfreunden wollte).
Xamarin.Facebook.Android 4.26.0 hat das Problem gelöst