Don't store compat themed icons in database
This commit is contained in:
@@ -1,10 +1,13 @@
|
||||
package de.mm20.launcher2.ktx
|
||||
|
||||
import android.util.Log
|
||||
import org.xmlpull.v1.XmlPullParser
|
||||
|
||||
fun XmlPullParser.skipToNextTag(): Boolean {
|
||||
while (next() != XmlPullParser.END_DOCUMENT) {
|
||||
if (eventType == XmlPullParser.START_TAG) return true
|
||||
if (eventType == XmlPullParser.START_TAG) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user