我刚刚使用新的SDK 22.2.0更新了我的build.gradle应用程序文件
直到现在我无法同步文件,因为当我按下安装时android工作室要求我安装sdk他给我这个错误:
这是我的build.gradle应用程序文件源代码:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.2.0"
defaultConfig {
applicationId "com.kimo.kimo.pillreminder"
minSdkVersion 17
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:22.2.0'
}
帮帮我。
答案 0 :(得分:0)
我刚发现错误
以便
from abc import ABC
class CVIterator(ABC):
def __init__(self):
self.n = None # the value of n is obtained in the fit method
你需要改变
compile 'com.android.support:appcompat-v7:22.2.0'
我现在不知道为什么?
但它解决了同步问题。