[
我已经更新了androidx的所有依赖项,但是当我运行该应用程序时,会出现此错误。有任何想法吗?] 1
我的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.ark.appinstituto"
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "androidx.constraintlayout:constraintlayout:1.1.3"
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.android.material:material:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.firebase:firebase-analytics:17.2.1'
/* SelectionTracker API */
implementation 'androidx.recyclerview:recyclerview-selection:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
/* RoundedImageView API */
implementation 'com.makeramen:roundedimageview:2.3.0'
/* AndroidUtilCode API */
implementation 'com.blankj:utilcode:1.23.7'
}
apply plugin: 'com.google.gms.google-services'