新建完项目后需要做以下几步
1、gradle对应上
gradle-wrapper.properties中distributionUrl修改gradle版本号
Andorid/build.gradle中修改gradle版本号
2、如果用到了三方库需要在Andorid/build.gradle中增加
subprojects {
afterEvaluate { project ->
if (project.hasProperty('android')) {
project.android {
if (namespace == null) {
namespace project.group
}
}
def manifestFile = project.android.sourceSets.main.manifest.srcFile
if (manifestFile.exists()) {
def manifestText = manifestFile.text
if(manifestText.contains('package=')) {
manifestText = manifestText.replaceAll(/package="[^"]*"/,"")
manifestFile.text = manifestText
}
}
}
}
}