could not resolve all dependencies for configuration ':app:debugAPKCopy'

前端 未结 7 1133
忘了有多久
忘了有多久 2020-11-30 11:28

it seems that I got this problem when I try to run the app

7条回答
  •  一生所求
    2020-11-30 11:45

    I also encountered this error.

    This error resolved by updating Android Support Repository.

    Another way to solve this error is go to your build.gradle file and check for warnings related to support version dependencies. then look for hint, make change as it suggested. In my case this error caused by support dependencies:-

    • compile 'com.google.android.gms:play-services-maps:9.0.0'

    and I changed to :-

    • compile 'com.google.android.gms:play-services-maps:10.0.0'

提交回复
热议问题