1.The SourceSet ‘instrumentTest‘ is not recognized by the Android Gradle Plugin.
解决办法
用 androidTest 替换 instrumentTest,编译运行即可。
2.The minSdk version should not be declared in the android manifest file. You can move the version
解决办法
把manifest.xml 里的sdk最小版本设置都删掉 。Androidstudio3.0 以后 不能在manifest.xml 设置这些必须在 gradle里设置
3.The Android Gradle plugin supports only Kotlin Gradle plugin version 1.3.10 and higher.
解决办法 修改ext.kotlin_version,改成1.3.10
改完之后可能会出现 Failed to resolve: org.jetbrains.kotlin:kotlin-stdlib-jre8:1.3.10
解决办法
写法上将jre换成jdk