in app/build.gradle:
implementation 'com.android.support:appcompat-v7:28.0.0'
in my activity I use
import android.support.v7.widget.Toolbar
Nice. It's work finde.
But when I migrate to androidx
I add this:
android.useAndroidX=true
android.enableJetifier=true
As result now my activity not compile with error:
import android.support.v7.widget.Toolbar;
Cannot resolve symbol 'v7'
Is it possible to use android.support.v7.widget.Toolbar
together with anrdoidx.*
package?