禁用即时运行时不加载应用程序类

时间:2016-08-25 17:29:17

标签: android android-studio android-gradle android-instant-run

我正在做一个示例项目,我正在使用Google Play服务和FireBase来实现位置和FCM。

我正在使用android studio 2.1.1和gradle:2.1.0

所以我得到的最初的问题是:

  

java.lang.NoClassDefFoundError:解析失败:   LCOM /安卓/工具/ FD /运行/了AppInfo;
  在   com.android.tools.fd.runtime.BootstrapApplication。(BootstrapApplication.java:126)

为此,我找到了禁用即时运行的解决方案,所以我做到了。 现在我得到DexOverflowException,所以我从依赖项中排除了几个模块,一切都很好。但是现在我的Application类中的代码不起作用。不会调用应用程序类onCreate()方法。

如果有人想知道我是否在清单中放置了应用程序类引用,我就这样做了。

<application
    android:name=".HHApplication"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

这是我的项目 build.gradle

buildscript {
    repositories {
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'
        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
    }
}

以下是应用 build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "xxxxxxxxxxx"
        minSdkVersion 14
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    compile 'com.google.code.gson:gson:2.3'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile 'com.android.support:design:23.4.0'
    compile ('com.google.android.gms:play-services-location:9.0.2') {
        exclude module: 'support-v4'
        exclude module: 'support-annotations'
        exclude module: 'firebase-common'
    }
    compile ('com.google.firebase:firebase-messaging:9.0.0') {
        exclude module: 'play-services-base'
        exclude module: 'play-services-basement'
        exclude module: 'play-services-task'
        exclude module: 'support-v4'
        exclude module: 'support-annotations'
    }
    compile files('libs/android-query.0.26.7.jar')
}

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

1 个答案:

答案 0 :(得分:0)

我将工作室更新为2.13并使用com.android.tools.build:gradle:2.1.1 gradle to 2.14.1,这解决了原来的问题 -

  

java.lang.NoClassDefFoundError:解析失败:Lcom / android / tools / fd / runtime / AppInfo;   在com.android.tools.fd.runtime.BootstrapApplication。(BootstrapApplication.java:126)

禁用即时运行对我来说仍然无效。