Execution failed for task :app:processDebugManifest Android Studio 2.3.3

后端 未结 1 1175
时光说笑
时光说笑 2021-01-21 02:42

I\'m getting a compile error after adding CardView and RecyclerView dependencies, I\'ve checked every post but no one seems to solve this case.

1条回答
  •  清酒与你
    2021-01-21 03:07

    You need to use the same android support library version. You need to use support library 26.0.0-alpha1 version. So change the following:

    compile 'com.android.support:appcompat-v7:25.3.1'
    

    to

    compile 'com.android.support:appcompat-v7:26.0.0-alpha1'
    

    You also need to change the compileSdkVersion and targetSdkVersion to version 26.

    0 讨论(0)
提交回复
热议问题