Android Studio 3.1: mixing versions can lead to runtime crashes

后端 未结 10 1027
北荒
北荒 2021-02-07 05:11

Have recently upgraded to Android Studio 3.1, and at the same time I\'m trying the Android P preview.

I\'m getting the following error on compiling:

10条回答
  •  执笔经年
    2021-02-07 06:07

    I think your gradle file has the below dependency. Add this to your app level build.gradle.

    implementation 'com.android.support:appcompat-v7:28.0.0-alpha1'
    implementation 'com.android.support:mediarouter-v7:28.0.0-alpha1'
    implementation 'com.android.support:support-vector-drawable:28.0.0-alpha1'
    implementation 'com.android.support:support-v4:28.0.0-alpha1'
    

提交回复
热议问题