Error:Execution failed for task ':CARapp:transformClassesWithDexForYuntx_Android_DemoDebug'.
com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: com.android.dex.DexIndexOverflowException: method ID not in [0, 0xffff]: 65536
http://blog.csdn.net/u010648159/article/details/52248373
一个apk程序中默认的方法数量是不能超过65535的,你的就是这个错误,去看看这个http://blog.csdn.net/qq_27969037/article/details/53037254
Android studio 中的Gradle 配置:
dependencies {
compile 'com.android.support:multidex:1.0.0'
}