讯飞的声纹识别导入教程

首先下载之后自己建一个文件夹将文件都解压进去

讯飞的声纹识别导入教程_第1张图片
导入的是下面的speechDemo

第一个bug

Error:(1, 0) Plugin with id ‘com.android.application’ not found.
【小发现】
发现:在导入compile ‘com.android.support:recyclerview-v7:24.2.0’时,提示了以下的错误。
解决:http://blog.csdn.net/mvpstevenlin/article/details/55209966
【但是并没有解决我找不到id】
但是在build.gradle里面加这段话解决了,希望有大佬解释一下

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.2'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

第二个bug

上面虽然把compile ‘com.android.support:support-v4:26.+’改成27也就是我有的,没有报错了
但是发现
Error:(40, 13) Failed to resolve: com.android.support:support-v4:27.+
Install Repository and sync project
Show in File
Show in Project Structure dialog
我点install没有半点反应
于是我又改回来了 可以是可以 但是下面有波浪线提示This support library should not use a different version
但是不管了 希望有人可以指点一下这里有没有错误

第三个bug

Error:Execution failed for task ‘:processDebugManifest’.
. > Manifest merger failed with multiple errors, see logs
在Gradle Console里我看到
93:5-43 Error:
uses-sdk:minSdkVersion 9 cannot be smaller than version 14 declared in library
Suggestion: use tools:overrideLibrary=”android.support.v4” to force usage
这时候 去gradle里面把minSdkVersion改成15就好了

你可能感兴趣的:(android-studio,讯飞)