Error retrieving parent for item: No resource found that matches the given name after upgrading to AppCompat v23

后端 未结 24 1754
孤城傲影
孤城傲影 2020-11-22 02:30

I\'ve always programmed Android with Eclipse and decided to start migrating to Android Studio. I decided to use the same SDK I already had for Eclipse, then:

  • S
24条回答
  •  旧时难觅i
    2020-11-22 03:01

    This is what helped me: Adding specific android platform

    What should be done is the following... In my case it was cordova but the same is relevant for ionic, phonegap and other frameworks like these:

    1. list all platforms installed for your project: cordova platform list. You'll see something like this:

    1. remove the android platform: cordova platform remove android.

    2. then add the specific android platform: cordova platform add android@5.0.0.

    Good luck! :)

提交回复
热议问题