当我在Android工作室中按下运行时,会弹出编辑配置窗口,并显示"错误:未指定模块"。
我已经通过手动创建文件夹结构android / hardware / automotive / vehicle / V2_0并将文件复制到应用程序libs文件夹中添加了源代码。
构建完成且没有错误。 我还没有编辑MainActivity -class,所以它都是预先生成的代码。
我认为这个错误与包含错误语法有关,但似乎很难让它工作:)
这是我的settings.gradle文件:
include ':app'
project(':app').projectDir = new File('libs/android/hardware/automotive/vehicle/V2_0')
这是我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.example.s26150.testingopencar"
minSdkVersion 21
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile project(":android.hardware.automotive.vehicle.V2_0")
testCompile 'junit:junit:4.12'
}
这可能是什么问题? 提前谢谢。