简体   繁体   English

Android Studio在更新到2.2.2时无法识别应用程序名称

[英]Android Studio Not Recognizing Application Name on Update to 2.2.2

I recently updated Android Studio to version 2.2.2 and have been experiencing some issues, among them my application name is no longer being recognized in the manifest. 我最近将Android Studio更新到了2.2.2版,并且遇到了一些问题,其中清单中不再识别我的应用程序名称。 I also migrated to the new Firebase SDK based on the documentation located here : 我也迁移到基于位置的文档上的新火力地堡SDK 在这里

在此处输入图片说明

I am not exactly sure of the cause, but have been reading about multidexing as being one of the components related to this error. 我不能完全确定原因,但是一直在阅读有关多义化的信息,因为它是与此错误相关的组件之一。 I am also receiving a run-time error below that I believe also relates to the issue: 我还收到一个下面的运行时错误,我认为这也与该问题有关:

--------- beginning of crash
11-28 20:29:06.313 10163-10163/com.troychuinard.fanpolls E/AndroidRuntime: FATAL EXCEPTION: main
       Process: com.troychuinard.fanpolls, PID: 10163
       java.lang.RuntimeException: Unable to instantiate application com.troychuinard.fanpolls.FanPollsApplication: java.lang.ClassNotFoundException: Didn't find class "com.troychuinard.fanpolls.FanPollsApplication" on path: DexPathList[[zip file "/data/app/com.troychuinard.fanpolls-1/base.apk"],nativeLibraryDirectories=[/data/app/com.troychuinard.fanpolls-1/lib/x86, /vendor/lib, /system/lib]]
       at android.app.LoadedApk.makeApplication(LoadedApk.java:578)
       at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4680)
       at android.app.ActivityThread.-wrap1(ActivityThread.java)
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1405)
       at android.os.Handler.dispatchMessage(Handler.java:102)
       at android.os.Looper.loop(Looper.java:148)
       at android.app.ActivityThread.main(ActivityThread.java:5417)
       at java.lang.reflect.Method.invoke(Native Method)
       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726)
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
    Caused by: java.lang.ClassNotFoundException: Didn't find class "com.troychuinard.fanpolls.FanPollsApplication" on path: DexPathList[[zip file "/data/app/com.troychuinard.fanpolls-1/base.apk"],nativeLibraryDirectories=[/data/app/com.troychuinard.fanpolls-1/lib/x86, /vendor/lib, /system/lib]]
       at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56)
       at java.lang.ClassLoader.loadClass(ClassLoader.java:511)
       at java.lang.ClassLoader.loadClass(ClassLoader.java:469)
       at android.app.Instrumentation.newApplication(Instrumentation.java:981)
       at android.app.LoadedApk.makeApplication(LoadedApk.java:573)
       at android.app.ActivityThread.handleBindApplication(ActivityThread.java:4680) 
       at android.app.ActivityThread.-wrap1(ActivityThread.java) 
       at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1405) 
       at android.os.Handler.dispatchMessage(Handler.java:102) 
       at android.os.Looper.loop(Looper.java:148) 
       at android.app.ActivityThread.main(ActivityThread.java:5417) 
       at java.lang.reflect.Method.invoke(Native Method) 
       at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) 
       at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 
        Suppressed: java.lang.ClassNotFoundException: com.troychuinard.fanpolls.FanPollsApplication
       at java.lang.Class.classForName(Native Method)
       at java.lang.BootClassLoader.findClass(ClassLoader.java:781)
       at java.lang.BootClassLoader.loadClass(ClassLoader.java:841)
       at java.lang.ClassLoader.loadClass(ClassLoader.java:504)
            ... 12 more
    Caused by: java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available

Build.Gradle 建立等级

apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion '25.0.1'


defaultConfig {
    vectorDrawables.useSupportLibrary = true
    applicationId "com.troychuinard.fanpolls"
    minSdkVersion 16
    targetSdkVersion 24
    multiDexEnabled true
    versionCode 1
    versionName "1.0"
}


buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

packagingOptions {
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/LICENSE-FIREBASE.txt'
    exclude 'META-INF/NOTICE'
  }
}
repositories {
maven { url "https://jitpack.io" }
 }

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.google.firebase:firebase-core:9.6.1'
compile 'com.google.firebase:firebase-database:9.6.1'
compile 'com.google.firebase:firebase-auth:9.6.1'
compile 'jp.wasabeef:recyclerview-animators:2.2.3'
compile 'com.github.clans:fab:1.6.2'
compile 'de.hdodenhof:circleimageview:2.0.0'
compile 'com.android.support:cardview-v7:24.1.1'
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:recyclerview-v7:24.1.1'
compile 'com.android.support:design:24.1.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.facebook.android:facebook-android-sdk:4.6.0'
compile 'com.google.android.gms:play-services-auth:9.6.1'
compile 'org.twitter4j:twitter4j-core:4.0.2'
compile 'com.android.support:support-v4:24.1.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.squareup.okhttp3:okhttp:3.1.2'
compile 'com.github.PhilJay:MPAndroidChart:v2.2.2'
compile 'com.google.android.gms:play-services-appindexing:9.6.1'
compile 'com.google.code.gson:gson:2.6.2'
compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.okhttp3:logging-interceptor:3.3.0'
compile 'com.android.support:multidex:1.0.1'
 }

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

Here is my directory structure: 这是我的目录结构:

在此处输入图片说明

Any help or advice is appreciated! 任何帮助或建议,不胜感激!

I think when you add firebase, you application is over 64k methods and you need to follow this link about MultiDex 我认为,当您添加Firebase时,您的应用程序超过了64k种方法,您需要点击以下有关MultiDex的链接

https://developer.android.com/studio/build/multidex.html https://developer.android.com/studio/build/multidex.html

As you don't have a class com.troychuinard.fanpolls.FanPollsApplication , just remove the attribute name='.FanPollsApplication' . 由于您没有com.troychuinard.fanpolls.FanPollsApplication类,因此只需删除属性name='.FanPollsApplication' It will use standard android.app.Application instead. 它将使用标准的android.app.Application代替。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM