Error in ScanningActivity
With the migration to androidx, the lib must be imported in build.gradle (:app):
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
Because, the Android Studio get this error: [+] android.view.InflateException: Binary XML file line #15: Error inflating class androidx.swiperefreshlayout.widget.SwipeRefreshLayout. [+] java.lang.ClassNotFoundException: Didn't find class "androidx.swiperefreshlayout.widget.SwipeRefreshLayout"
So, as in ScanningActivity.kt don't have this import: import androidx.swiperefreshlayout.widget.SwipeRefreshLayout;
We have to import that in our gradle file =D
add this implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'