9

我写了一个到目前为止运行良好的 Android 应用程序。然后我添加了 Google Cloud Messaging (GCM) 的功能。我使用了谷歌的演示项目,它似乎添加了分析和应用索引等。

现在启动应用程序按预期工作,但需要很多时间。日志显示了许多这样的消息:

I/dex2oat: ----------------------------------------------------
I/dex2oat: <SS>: S T A R T I N G . . .
I/dex2oat: <SS>: Zip is absent. Canceled.
I/dex2oat: /system/bin/dex2oat --runtime-arg -classpath --runtime-arg  --instruction-set=arm --instruction-set-features=div --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --dex-file=/data/data/world.b2g.b2gether/files/instant-run/dex/slice-com.google.android.gms-play-services-measurement-8.4.0_d76b40d326ea93493481fa158b18846c1c4627dd-classes.dex --oat-fd=29 --art-fd=-1 --oat-location=/data/data/world.b2g.b2gether/cache/slice-com.google.android.gms-play-services-measurement-8.4.0_d76b40d326ea93493481fa158b18846c1c4627dd-classes.dex --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat: dex2oat took 288.616ms (threads: 4)
I/dex2oat: ----------------------------------------------------
I/dex2oat: <SS>: S T A R T I N G . . .
I/dex2oat: <SS>: Zip is absent. Canceled.
I/dex2oat: /system/bin/dex2oat --runtime-arg -classpath --runtime-arg  --instruction-set=arm --instruction-set-features=div --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --dex-file=/data/data/world.b2g.b2gether/files/instant-run/dex/slice-com.google.android.gms-play-services-maps-8.4.0_36e4d7c4ee371ae72ff4fba4383d7535cc7f3d3a-classes.dex --oat-fd=29 --art-fd=-1 --oat-location=/data/data/world.b2g.b2gether/cache/slice-com.google.android.gms-play-services-maps-8.4.0_36e4d7c4ee371ae72ff4fba4383d7535cc7f3d3a-classes.dex --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat: dex2oat took 321.095ms (threads: 4)
I/dex2oat: ----------------------------------------------------
I/dex2oat: <SS>: S T A R T I N G . . .
I/dex2oat: <SS>: Zip is absent. Canceled.
I/dex2oat: /system/bin/dex2oat --runtime-arg -classpath --runtime-arg  --instruction-set=arm --instruction-set-features=div --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --dex-file=/data/data/world.b2g.b2gether/files/instant-run/dex/slice-com.google.android.gms-play-services-location-8.4.0_298f1e5056d6eea423c13052ef0c9136963ce27b-classes.dex --oat-fd=29 --art-fd=-1 --oat-location=/data/data/world.b2g.b2gether/cache/slice-com.google.android.gms-play-services-location-8.4.0_298f1e5056d6eea423c13052ef0c9136963ce27b-classes.dex --runtime-arg -Xms64m --runtime-arg -Xmx512m
I/dex2oat: dex2oat took 298.720ms (threads: 4)
I/dex2oat: ----------------------------------------------------
...

似乎缺少一些包。由于我不需要任何这些功能(地图和 GCM 除外),我在 Android Studio 中停用了 Analytics、Authentication... 的选项。然而,这些消息仍然出现。

这可能是因为我在 build.gradle 文件中应用了服务吗?

    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile files('libs/greendao-2.1.0.jar')
    compile project(':volley')
    compile 'com.android.support:support-v13:23.3.0'
    compile 'com.android.support:recyclerview-v7:23.3.0'
    compile 'com.android.support:appcompat-v7:23.3.0'
    compile 'com.google.android.gms:play-services-gcm:8.4.0'
    compile 'com.google.android.gms:play-services-maps:8.4.0'
    compile 'com.google.android.gms:play-services-location:8.4.0'
}

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

在应用程序 gradle 配置中,我还写了

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

- - - - - - - - - - - - - 编辑 : - - - - - - - - - - - ----

原来这似乎是gradle的错

当我更新到新的 Android Studio 时,我将问题追溯到了一点。有一次我不得不从Gradle 2.8切换到Gradle 2.10。如果我将其更改为 Gradle 2.8,这个问题就消失了。不幸的是,Android Studio 告诉我现在必须更新到 2.10。

那么我能做什么呢?

----------------------- 编辑 07.June.2016 :-------- ---

看起来随着 Android Studio 2.1.2 的新更新,这个 bug 已经修复(或者至少我不再看到这个消息了)

4

2 回答 2

11

最后我找到了答案。问题出在 Gradle 上。但不是新版本本身。更多的即时构建。

我学到的是:

问题似乎是在启用即时运行的情况下,无法找到一些框架的“切片”。当独立于编译器运行应用程序时,这也会影响手机(例如,如果通过 App Drawer 启动)。似乎必须再次搜索/链接/编译已经编译的库。仅在 Gradle 2.10 或更高版本中发生这种情况的原因不是版本本身,而仅仅是 Gradle 2.8 不支持新功能。

解决方案:

目前最好的解决方法是在以下位置停用此功能:

Settings/Build, Execution, Deployment/Instant Run -> Enable Instant Run to hot swap code

>> 编辑:Android Studio 2.1 的更新对我来说似乎并没有解决这个问题。

在此处输入图像描述

于 2016-04-12T14:34:53.920 回答
-1

我也遇到了这个问题。我的应用程序加载速度太慢。我检查了下面的logcat。I/dex2oat: dex2oat 花了 288.616ms 在我取消选中作者提到的问题已经解决的选项框后。

于 2016-04-28T05:28:49.800 回答