我添加了Google Play服务广告
Structure employee
Dim percent As Decimal
Dim dayname As DayOfWeek
End Structure
Dim emp As employee
emp.percent = CDec(45.5)
emp.dayname = DayOfWeek.Friday
Select Case True
Case (emp.percent >= 0 And emp.percent <= 49.99
And emp.dayname = Now.DayOfWeek)
MsgBox("Employee percentage " & emp.percent
& "Name of the day " & Now.DayOfWeek.ToString)
End Select
错误,我做了指导:https://developers.google.com/admob/android/quick-start
compile 'com.google.android.gms: play-services-ads: 11.6.0
请帮助我,非常感谢你!
答案 0 :(得分:0)
搜索com.android.builder.dexing.DexArchiveMergerException
会产生this page,这似乎表明您的问题与您的依赖项版本不匹配。
我看不到你的gradle文件的其余部分,因为你把它作为图像而不是文本发布,但是看看底部的依赖项部分,看看是否有任何冲突。
最终,您应该先阅读Android Multidex Salvation问题/答案中的所有信息,然后在发布新问题之前按照其排查步骤进行操作。