1.下載官方SDKandroid
https://www.xfyun.cn/sdk/dispatcherapp
2.打開AS,選擇import projectmaven
3.導入mscV5PlusDemogradle
4.解決ERROR: Plugin with id 'com.android.application' not found.問題ui
①build.gradle中添加如下代碼google
buildscript {
repositories {
// mavenCentral() // or
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2' //last version Jul 2017
}
}
最新的gradle版本是5.1.1 而對應的插件版本是3.4.2,這裏的版本要填寫插件版本spa
②這裏須要將compilesdk,buildtools,以及supportv4等版本改爲集成開發環境裏對應的版本插件
以及supportv4,不要使用動態版本dependencies3d
compile 'com.android.support:support-v4:23.+'
改成
compile 'com.android.support:support-v4:28.0.0'
5.修改Bugblog
sync一下,按照AS提示一步步作下去
關於安卓最小版本的問題:新版的andorid studio 不能在安卓配置文件中標誌最小版本了,這裏只須要按提示刪掉就能夠。
compile也可改成implement
6.在手機上運行便可
over!