我正在尝试在Android Studio 2.1.2中为索尼智能玻璃开发应用程序。我尝试添加Sony Smart Glass样本库函数。我收到了类似的错误
错误:配置名称'默认'没找到。
我的 settings.gradle :
include ':app'
include ':libraries:mylib'
我的 build.gradle :
// Top-level build file where you can add configuration options
common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 0 :(得分:1)
创建SmartEyeglass应用程序的最佳起点是其中一个示例。他们已经为您声明了所有必需的依赖项。作为一个基本的例子,尝试从" HelloWorld"样品。最后,您的settings.gradle文件应包含以下内容:
includeFlat 'SmartExtensionAPI'
includeFlat 'SmartExtensionUtils'
includeFlat 'SmartEyeglassAPI'
你的build.gradle文件应该包含这个
compile project(':SmartEyeglassAPI')
compile project(':SmartExtensionAPI')
compile project(':SmartExtensionUtils')
如果有帮助,请告诉我。