當我想在我的手機上運行應用程序時,我面對這個問題:min sdk 26> device sdk24 我該如何解決這個問題?我搜索關於這個問題,但我沒有找到有用的解決:(我無法運行我的應用程序,因爲SDK 26>設備SDK 24?
的gradle構建:
android {
compileSdkVersion 26
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.example.asus.order"
minSdkVersion 26
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'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
//Add Library
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support:cardview-v7:26.+'
compile 'com.android.support:recyclerview-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.0-beta1'
compile 'com.google.firebase:firebase-core:10.2.1'
compile 'com.google.firebase:firebase-database:10.2.1'
compile 'info.hoang8f:fbutton:1.0.5'
compile 'com.rengwuxian.materialedittext:library:2.1.4'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.firebaseui:firebase-ui-database:1.2.0'
compile 'com.android.support:design:26.+'
testCompile 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
如果您_device_有降低您的應用所需的SDK,那麼您只能通過將您的應用程序需求降低到較早的SDK版本來「修復」。 –
「即時運行完成構建並安裝自設備上的安裝d oes與磁盤上的本地構建不匹配「我該怎麼做? – khlood
它仍然是同樣的問題,我的應用程序打開和關閉在同一時間:(..爲什麼?請幫助 – khlood