Fix app lock crashing app on older devices

This commit is contained in:
NerdNumber9 2018-04-18 10:11:47 -04:00
parent b69af710ad
commit d03c49db58
2 changed files with 6 additions and 1 deletions

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid android:color="?android:attr/textColorSecondary" />
</shape>

View File

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" <shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval"> android:shape="oval">
<solid android:color="?android:attr/textColorSecondary" /> <solid android:color="@color/material_grey_500" />
</shape> </shape>