apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '26.0.2'
useLibrary 'org.apache.http.legacy'
defaultConfig {
applicationId "org.passitonkentucky.fayetteresources"
minSdkVersion 18
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'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
compile 'com.android.support:multidex:1.0.2'
}
我下载了Android 3.0.1,在此之前我有最低版本3.0的错误。 当它解决后,它现在显示错误。 (27,4)。
我该如何解决这个问题?
答案 0 :(得分:0)
首先,应避免在版本号中使用“ +”,这是一种不好的做法。添加版本号将解决您的问题。
compile 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'