0
我剛剛安裝了Android Studio,並且正在從Eclipse移植我的項目。當我嘗試運行應用程序時,只能使用我的手機,它是4.4.2(API 19),我收到錯誤Failure [INSTALL_FAILED_OLDER_SDK]
。我的build.gradle看起來是這樣的:Android Studio錯誤:INSTALL_FAILED_OLDER_SDK
apply plugin: 'com.android.application'
android {
compileSdkVersion 'android-L'
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.appuccino.collegefeed"
minSdkVersion 14
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
repositories {
mavenCentral()
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
}
而且我AndroidManifest外觀採用了以下內容:
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="19" />
當我嘗試在向下兼容的選擇設備對話框它說沒有我的設備上運行, minSdk(API 20,L預覽)!= deviceSdk(API 19)。