Android:NoSuchMethodError:没有静态方法zzy(Ljava/lang/Object;

5

我创建了一个应用程序,可以通过FirebaseUI Auth和Firebase SDK Authentication两个波段进行访问(我知道这很错误,我只是为了做一些测试)。好吧,从我添加谷歌访问权限开始,我就无法使用SDK身份验证进行访问,应用程序总是崩溃,我不知道原因。以下是我的代码:

public class MainActivity extends AppCompatActivity
{
DialogProgress dialogProgress;
EditText editEmail;
EditText editPassword;
String email;
String password;
FirebaseAuth firebaseAuth;
final int REQUEST_CODE_GOOGLE = 100;
static Activity activity;

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    activity = this;
    editEmail = (EditText) findViewById(R.id.editEmailA);
    editPassword = (EditText) findViewById(R.id.editPasswordA);
    firebaseAuth = FirebaseAuth.getInstance();

    if(firebaseAuth.getCurrentUser()!=null)
    {
        Toast.makeText(getApplicationContext(), "Bentornato " + firebaseAuth.getCurrentUser().getEmail().toString(), Toast.LENGTH_SHORT).show();
        Intent intent = new Intent(MainActivity.this,ProfileActivity.class);
        startActivity(intent);
        finish();
    }

    findViewById(R.id.accediButton).setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            email = editEmail.getText().toString();
            password = editPassword.getText().toString();

            if(TextUtils.isEmpty(email))
            {
                Toast.makeText(getApplicationContext(),"Email vuota",Toast.LENGTH_SHORT).show();
            }

            if(TextUtils.isEmpty(password))
            {
                Toast.makeText(getApplicationContext(),"Password vuota",Toast.LENGTH_SHORT).show();
            }

            if(!(TextUtils.isEmpty(email)||TextUtils.isEmpty(password)))
            {
                DialogProgress.setLayout(0);
                dialogProgress = new DialogProgress();
                dialogProgress.setCancelable(false);
                dialogProgress.show(getSupportFragmentManager().beginTransaction(),"Dialog");

                firebaseAuth.signInWithEmailAndPassword(email, password).addOnCompleteListener(MainActivity.this, new OnCompleteListener<AuthResult>() {
                    @Override
                    public void onComplete(@NonNull Task<AuthResult> task)
                    {
                        if (task.isSuccessful())
                        {
                            dialogProgress.dismiss();
                            Toast.makeText(getApplicationContext(), "Bentornato " + firebaseAuth.getCurrentUser().getEmail().toString(), Toast.LENGTH_SHORT).show();
                            Intent intent = new Intent(MainActivity.this,ProfileActivity.class);
                            startActivity(intent);
                            finish();
                        }
                        else
                        {
                            dialogProgress.dismiss();
                            Toast.makeText(getApplicationContext(), "Login fallito " + task.getException().toString(), Toast.LENGTH_LONG).show();
                        }
                    }
                });
            }
        }
    });

    findViewById(R.id.registratiText).setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            Intent intent = new Intent(MainActivity.this,RegistrazioneActivity.class);
            startActivity(intent);
        }
    });

    findViewById(R.id.accediGoogle).setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            AuthUI authUi = AuthUI.getInstance();
            Intent intent = authUi.createSignInIntentBuilder().build();
            startActivityForResult(intent,REQUEST_CODE_GOOGLE);
        }
    });

}

@Override
public void onActivityResult(int codice, int risultato, Intent data)
{
    super.onActivityResult(codice, risultato, data);
    if(codice==REQUEST_CODE_GOOGLE && risultato==RESULT_OK && data!=null)
    {
        IdpResponse idpResponse = IdpResponse.fromResultIntent(data);
        Toast.makeText(getApplicationContext(),idpResponse + "",Toast.LENGTH_LONG).show();
    }
}
}

这是我的 gradle 项目:

buildscript 
{
  repositories 
  {
    jcenter()
  }
  dependencies 
  {
    classpath 'com.android.tools.build:gradle:2.2.3'
    classpath 'com.google.gms:google-services:3.0.0'
  }
}

allprojects 
{
  repositories 
  {
    jcenter()
    maven { url 'https://maven.fabric.io/public' }
  }
}

task clean(type: Delete) 
{
delete rootProject.buildDir
}

这是我的Gradle应用程序:
apply plugin: 'com.android.application'

android 
{
compileSdkVersion 25
buildToolsVersion "25.0.2"
  defaultConfig 
  {
    applicationId "com.example.utente.myfirebase"
    minSdkVersion 16
    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.0'
compile 'com.google.firebase:firebase-auth:9.4.0'
compile 'com.google.firebase:firebase-database:9.4.0'
compile 'com.google.firebase:firebase-storage:9.4.0'
compile 'com.firebaseui:firebase-ui-auth:1.2.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'

}
apply plugin: 'com.google.gms.google-services'

日志:

04-15 21:34:06.318 26912-26912/com.example.utente.myfirebase A/FirebaseApp: Firebase API initialization failure.
                                                                        java.lang.reflect.InvocationTargetException
                                                                            at java.lang.reflect.Method.invoke(Native Method)
                                                                            at java.lang.reflect.Method.invoke(Method.java:372)
                                                                            at com.google.firebase.FirebaseApp.zza(Unknown Source)
                                                                            at com.google.firebase.FirebaseApp.initializeApp(Unknown Source)
                                                                            at com.google.firebase.FirebaseApp.initializeApp(Unknown Source)
                                                                            at com.google.firebase.FirebaseApp.initializeApp(Unknown Source)
                                                                            at com.google.firebase.provider.FirebaseInitProvider.onCreate(Unknown Source)
                                                                            at android.content.ContentProvider.attachInfo(ContentProvider.java:1737)
                                                                            at android.content.ContentProvider.attachInfo(ContentProvider.java:1712)
                                                                            at com.google.firebase.provider.FirebaseInitProvider.attachInfo(Unknown Source)
                                                                            at android.app.ActivityThread.installProvider(ActivityThread.java:5437)
                                                                            at android.app.ActivityThread.installContentProviders(ActivityThread.java:5032)
                                                                            at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4972)
                                                                            at android.app.ActivityThread.access$1600(ActivityThread.java:177)
                                                                            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1491)
                                                                            at android.os.Handler.dispatchMessage(Handler.java:102)
                                                                            at android.os.Looper.loop(Looper.java:135)
                                                                            at android.app.ActivityThread.main(ActivityThread.java:5910)
                                                                            at java.lang.reflect.Method.invoke(Native Method)
                                                                            at java.lang.reflect.Method.invoke(Method.java:372)
                                                                            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1405)
                                                                            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1200)
                                                                         Caused by: java.lang.NoSuchMethodError: No static method zzy(Ljava/lang/Object;)Ljava/lang/Object; in class Lcom/google/android/gms/common/internal/zzab; or its super classes (declaration of 'com.google.android.gms.common.internal.zzab' appears in /data/app/com.example.utente.myfirebase-2/split_lib_dependencies_apk.apk:classes33.dex)
                                                                            at com.google.android.gms.measurement.internal.zzx.zzdo(Unknown Source)
                                                                            at com.google.android.gms.measurement.AppMeasurement.getInstance(Unknown Source)
                                                                            at java.lang.reflect.Method.invoke(Native Method) 
                                                                            at java.lang.reflect.Method.invoke(Method.java:372) 
                                                                            at com.google.firebase.FirebaseApp.zza(Unknown Source) 
                                                                            at com.google.firebase.FirebaseApp.initializeApp(Unknown Source) 
                                                                            at com.google.firebase.FirebaseApp.initializeApp(Unknown Source) 
                                                                            at com.google.firebase.FirebaseApp.initializeApp(Unknown Source) 
                                                                            at com.google.firebase.provider.FirebaseInitProvider.onCreate(Unknown Source) 
                                                                            at android.content.ContentProvider.attachInfo(ContentProvider.java:1737) 
                                                                            at android.content.ContentProvider.attachInfo(ContentProvider.java:1712) 
                                                                            at com.google.firebase.provider.FirebaseInitProvider.attachInfo(Unknown Source) 
                                                                            at android.app.ActivityThread.installProvider(ActivityThread.java:5437) 
                                                                            at android.app.ActivityThread.installContentProviders(ActivityThread.java:5032) 
                                                                            at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4972) 
                                                                            at android.app.ActivityThread.access$1600(ActivityThread.java:177) 
                                                                            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1491) 
                                                                            at android.os.Handler.dispatchMessage(Handler.java:102) 
                                                                            at android.os.Looper.loop(Looper.java:135) 
                                                                            at android.app.ActivityThread.main(ActivityThread.java:5910) 
                                                                            at java.lang.reflect.Method.invoke(Native Method) 
                                                                            at java.lang.reflect.Method.invoke(Method.java:372) 
                                                                            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1405) 
                                                                            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1200

可能是一个重复的问题,参考 在升级到 Google Play Services 8.4.0 后,我的应用在启动时崩溃 - Code-Apprentice
你能贴出你的堆栈跟踪吗? - Drew Szurko
@Code-Apprentice 但这非常不同。 - Curio
1
@Drew,我已经完成了。 - Curio
请解释一下你的问题与众不同之处。 - Code-Apprentice
@Code-Apprentice 它在概念上有所不同,在我的情况下,它无法使用访问。 - Curio
4个回答

7
您必须使用兼容的Firebase API库和Firebase UI版本。兼容版本表格在Firebase UI文档中。将com.google.firebase:firebase-*库的版本从9.4.0更改为10.2.0。
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.google.firebase:firebase-auth:10.2.0'
compile 'com.google.firebase:firebase-database:10.2.0'
compile 'com.google.firebase:firebase-storage:10.2.0'
compile 'com.firebaseui:firebase-ui-auth:1.2.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'

1
我不使用Firebase。我使用Onesignal,它使用Firebase,我遇到了相同的错误。有什么建议吗? - Fatima
@Tina:发布一个新问题并包含你的build.gradle文件。另请参考此链接:https://github.com/OneSignal/OneSignal-Android-SDK/issues/286 - Bob Snyder
我刚刚发布了一个带有完整细节的答案 :) https://stackoverflow.com/questions/49645215/onesignal-and-google-gms-incompatibility - Fatima

6

将其改为:

compile 'com.google.firebase:firebase-auth:9.4.0'
compile 'com.google.firebase:firebase-database:9.4.0'
compile 'com.google.firebase:firebase-storage:9.4.0'

转化为:

compile 'com.google.firebase:firebase-auth:10.2.0'
compile 'com.google.firebase:firebase-database:10.2.0'
compile 'com.google.firebase:firebase-storage:10.2.0'

您需要升级Firebase,您正在使用旧版本。您会发现Firebase已经有10.2.1版本可用,但是根据FirebaseUi的说法,它目前只支持Firebase版本10.2.0,因此请使用10.2.0版本。


0

检查 Firebase 的兼容版本,建议使用最新版本

在我的情况下,我忘记添加以下依赖项

compile 'com.google.firebase:firebase-core:9.4.0'  

我的所有依赖如下:

compile 'com.google.firebase:firebase-core:9.4.0'
compile 'com.google.firebase:firebase-messaging:9.4.0'
compile 'com.firebase:firebase-client-android:2.5.1' 

所有使用以向设备发送推送通知


0
  1. 如此提到,将所有版本更新为最新版本,并且所有版本应该相同
  2. 清理并重新构建您的项目。

运行该项目。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接