xgenav21
xgenav21

Reputation: 1

ERROR: Failed to resolve: androidx.support:support-v7:28.0.0 Android Studio

I've been already mirgate to AndroidX, but this error still happens..

dependencies {
    implementation 'com.google.android.gms:play-services-auth:17.0.0'
    implementation 'com.google.android.gms:play-services-plus:17.0.0'
    implementation fileTree(dir: 'libs', include: '*.jar')
    implementation project(':beacon_controller:BluetoothLe')
    implementation project(':beacon_controller:BluetoothLe')
    implementation 'com.google.android.material:material:1.0.0'
    implementation 'com.facebook.android:facebook-android-sdk:4.6.0'
    implementation 'androidx.recyclerview:recyclerview:1.1.0'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.android.support:support-v7:28.0.0'

}

Upvotes: 0

Views: 191

Answers (1)

Krzysztof Kubicki
Krzysztof Kubicki

Reputation: 676

remove this implementation 'com.android.support:support-v7:28.0.0'

Upvotes: 1

Related Questions