user3922145
user3922145

Reputation: 39

error: package android.support.v7.app does not exist after migrating to android x

I have migrated to android x, Included google()repo to build.gradle(project's) and implementation 'com.android.support:appcompat-v7:22.0.0' to app's build.gradle, After migrating to android x can not install support libraries through sdk manager. how can i solve this? I have visited similar questions and no suitable answer for my case.

Upvotes: 0

Views: 885

Answers (1)

Md. Asaduzzaman
Md. Asaduzzaman

Reputation: 15433

Try to use AndroidX version of appcompat

implementation 'androidx.appcompat:appcompat:1.1.0'

Instead of

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

Upvotes: 2

Related Questions