Ich versuche, eine App für Sony Smart Glass in Android Studio 2.1.2 zu entwickeln. Ich habe versucht, die Sony Smart Glass Sample Library-Funktionen hinzuzufügen. Ich erhalte eine Fehlermeldung wie dieFehler: Konfiguration mit dem Namen 'Standard' nicht gefunden, wenn für Sony Smart Glass
Error:Configuration with name 'default' not found.
Mein settings.gradle:
include ':app'
include ':libraries:mylib'
Mein 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
}