AndroidStudio 编译出现的通用问题解决方案

问题一:

引入aar包时报错:Manifest merger failed with multiple errors, see logs

答:

输入 chmod +x gradlew

./gradlew processDebugManifest --stacktrace

问题二:

编译出现Invoke-customs are only supported starting with Android O (--min-api 26)

答:

在buid文件中加入

compileOptions {

sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8}

问题三:

jcenter() 导包慢,如何解决?

答:

在build 中配置

maven{ url 'http://maven.aliyun.com/nexus/content/repositories/central/'}

前提要配在 jcenter() 之前.

问题四:

解决Android studio 方法数超过65536的问题

答:

在build 中配置defaultConfig中加入 multiDexEnabled true

你可能感兴趣的:(AndroidStudio 编译出现的通用问题解决方案)