I have a problem following this tutorial. It's a tutorial to make a Soundboard in Android Studio 3.6.3
The problem is in this line of code:
import androidx.appcompat.app.AlertController;
And this is the error:
error: AlertController is not public in androidx.appcompat.app; cannot be accessed from outside package
import androidx.appcompat.app.AlertController;
Perhaps the problem is here: At 6:27, the creator of the tutorial adds the recyclerview support library using this old code:
compile: 'com.android.support:recyclerview-v7:23.4.0'
I used this code instead:
implementation "androidx.recyclerview:recyclerview:1.1.0"
Can somebody help me solve the error, please?