gpt4 book ai didi

android - 在设备上运行应用程序时出现 transformClassesWithJarMergingForDebug 错误

转载 作者:行者123 更新时间:2023-11-29 02:41:48 28 4
gpt4 key购买 nike

我尝试使用 Firebase 平台开发带有通知的简单应用程序。我收到了错误 :app:transformClassesWithDexForDebug,我通过将行 multiDexEnabled true 添加到 build.gradle 中来修复该错误。编辑后出现错误 :app:transformClassesWithJarMergingForDebug我的build.gradle:

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

android

{
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.jaroslavvystavel.noti"
minSdkVersion 17
targetSdkVersion 25
multiDexEnabled true // this line will solve this problem
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
debuggable true
}
}
}

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.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'

compile 'com.google.firebase:firebase-messaging:10.2.1'
}

构建没有问题,当我尝试在连接的手机上运行应用程序时出现问题。当我使用 AVD 时,我收到消息 App has stopped..我正在根据本教程开发应用程序 YouTube tutorial

最佳答案

google-servicesapply plugin 必须遵循 dependencies block :

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

Google Services Gradle Plugin 的文档中对此进行了描述.

关于android - 在设备上运行应用程序时出现 transformClassesWithJarMergingForDebug 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43566844/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com