Error “package android.support.v7.app does not exist”

前端 未结 16 1798
-上瘾入骨i
-上瘾入骨i 2020-11-30 02:03

I am new to android development, and I have been using the command line tools to create an android project. I followed all the instructions given in the tutorial at android

16条回答
  •  广开言路
    2020-11-30 02:15

    If you are using latest Android Studio, then v7 libraries contradict with AndroidX, only you have to do is:

    In Project files go in gradle.properties
    Find out android.useAndroidX=true then set it to android.useAndroidX=false
    Find out android.enableJetifier=true then set it to android.enableJetifier=false
    Rebuild your project, all will working fine.

提交回复
热议问题