implementation 'com.android.support:appcompat-v7:28.0.0'

后端 未结 4 1019
一个人的身影
一个人的身影 2020-12-15 19:27

I am moving my first steps with app programming.

I searched the other topics that relate to this matter and tried all the solutions but still it\'s driving me mad: <

4条回答
  •  鱼传尺愫
    2020-12-15 19:46

    You must update your

    compileSdkVersion 28   &   targetSdkVersion 28
    

    then Use

       implementation 'com.android.support:appcompat-v7:28.0.0'
       implementation 'com.android.support:design:28.0.0'
    

    This is the stable release of Support Library 28.0.0 and is suitable for use in production. This will be the last feature release under the android.support packaging, and developers are encouraged to migrate to AndroidX.

提交回复
热议问题