Compat themed icons

- Use native themed icons on Android 8.0 to 12
This commit is contained in:
MM20
2023-02-15 15:23:17 +01:00
parent 9e56f960e6
commit 59b8f17fc4
10 changed files with 557 additions and 304 deletions
@@ -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
}