AndroidStudio 3.0 项目迁移注意事项

以下内容暂未经过验证,根据经验初步得出,此处为笔记,未验证前仅供参考:

一、AS 3.0要求 Project Structure中,Compile Sdk Version 为8.0,Build Tools Version 为26.0.2,Source Compatibility 1.8,Target Compatibility 1.8;

二、AS 3.0中65536问题,采用多dex时,app module依赖为:

compile 'com.android.support:multidex:1.0.2'

compile 'com.android.support:multidex-instrumentation:1.0.2'

该依赖需配置国内maven路径:maven{ url'https://dl.google.com/dl/android/maven2/'}

三、项目build.gradle下,dependencies中gradle的classpath需换成AS相应版本(本人用的AS 3.0 Beta7,因此classpath为: classpath 'com.android.tools.build:gradle:3.0.0-beta7');

你可能感兴趣的:(AndroidStudio 3.0 项目迁移注意事项)