Update to AndroidX

This is mostly the work of Android Studio's
   Refactor > Migrate to AndroidX...
option. That mostly worked. The two places which were manually updated
were:
  - The reference to AppBarLayout$ScrollingViewBehavior in
    loyalty_card_edit_activity.xml
  - The suggested constraintlayout version, 2.0.0-beta4 caused build
    issues that 1.1.3 avoids
This commit is contained in:
Branden Archer
2019-12-28 10:46:52 -08:00
committed by Sylvia van Os
parent 32b4178950
commit b9d158583b
28 changed files with 106 additions and 107 deletions

View File

@@ -1,7 +1,7 @@
package protect.card_locker;
import android.app.Application;
import android.support.v7.app.AppCompatDelegate;
import androidx.appcompat.app.AppCompatDelegate;
import protect.card_locker.preferences.Settings;