Compat themed icons
- Use native themed icons on Android 8.0 to 12
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package de.mm20.launcher2.ktx
|
||||
|
||||
import org.xmlpull.v1.XmlPullParser
|
||||
|
||||
fun XmlPullParser.skipToNextTag(): Boolean {
|
||||
while (next() != XmlPullParser.END_DOCUMENT) {
|
||||
if (eventType == XmlPullParser.START_TAG) return true
|
||||
}
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user