我的问题是有关Android Studio中的错误。 每当我尝试在Android Studio中运行Java项目时,都会收到以下错误,并且我的程序无法正常工作:
这是我的gradle配置:
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.christianmastracco.jsondemo"
minSdkVersion 22
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'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
我该如何解决?谢谢
答案 0 :(得分:1)
将您的compileSdkVersion
和targetSdkVersion
更改为27,然后执行以下操作:
implementation 'com.android.support:appcompat-v7:26.1.0'
对此
implementation 'com.android.support:appcompat-v7:27.1.0'