我是android新手并开发密码管理器的android应用程序。我开始在Ubuntu安卓工作室工作,由于一些问题我切换到Windows 10但无法导入项目显示错误的应用程序:compileDebugAidl或Aidl丢失。我试图将版本从23.2.0更改为21.0.2或21.0.0但无法解决。请建议
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.example.devil.password"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.0'
}