我无法将应用程序从 android studio 运行到运行 android 2.3.6 的三星手机。我收到应用程序安装失败弹出窗口,请参阅下面的屏幕截图。
当我单击确定时,我在日志中收到以下错误
Failure [INSTALL_FAILED_DEXOPT]
DEVICE SHELL COMMAND: pm uninstall my.package.name
Unknown failure
添加名为“App Engine Backend with Google Cloud Messaging”的谷歌云模块后,我遇到了这个麻烦。
这与此处的堆栈溢出问题之一中描述的问题完全相同
我尝试了接受的答案。
Ran dex-method-counts应用程序我在终端中得到“整体方法计数:24474”。我不明白下一步该怎么做?
(注意:相同的应用程序正在运行在 kitkat 上的其他设备上运行。)
请帮助解决此问题。从过去的两天开始,我一直在挣扎。我知道有很多类似的问题,但没有任何帮助。
内置-> 清洁不起作用。
这是我的 build.gradle 文件
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "my.package.name"
minSdkVersion 9
targetSdkVersion 19
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile files('libs/libGoogleAnalyticsServices.jar')
compile project(path: ':gcmAppEngineBackend', configuration: 'android-endpoints')
compile 'com.android.support:support-v4:22.0.0'
compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.google.android.gms:play-services:7.0.0'
}
提前致谢!