我的Android應用程序在Android 5上運行良好,但在其他設備(Android 4)上測試應用程序時崩潰。 我沒有使用特殊的代碼。 不幸的是我的android studio沒有用於查看錯誤日誌的api16虛擬設備。 請幫助me.thanks我的應用程序在Android 5(api 22)上運行,但無法在Android 4(api 16)上運行
我gradle這個代碼:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.blogsky.delete.azbook"
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.1.1'
}
爲API 16安裝虛擬設備? – Simon
我是新手,不能(我不知道)爲api 16安裝虛擬設備:( –
https://developer.android.com/studio/run/managing-avds.html#viewing – Simon