这是我的build.gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.example.sarahahmed.imeche2TEST3"
minSdkVersion 16
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'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:cardview-v7:23.0.+'
compile 'com.android.support:recyclerview-v7:23.0.+'
compile 'com.github.nkzawa:socket.io-client:0.3.0'
}
该应用程序在Jellybean上完美运行,但在Lollipop和Kitkat发布时崩溃,即使目标sdk为23
答案 0 :(得分:0)
我发现问题不在于构建配置,而在于代码。我在MainActivity中的OnCreate使用了一个对话框,由于某种原因在Kitkat和Lollipop中崩溃了。所以,错误是运行时错误
答案 1 :(得分:-1)
尝试更新API并使用最新版本更新依赖项。
答案 2 :(得分:-1)
更新所有plugin
,然后re-Build
您的项目