Aidan Follestad
Aidan Follestad
You provide a background and a foreground which are wrapped in an `adaptive-icon` drawable. In most cases the background is just a solid color, while the foreground is a Vector...
Yep - there's a chance Android Studio will have trouble converting because of certain attributes like evenOdd fill type which isn't supported, so you'd have to make sure it's drawn...
Did this work in previous versions?
Copying in the above. --- ```kotlin private fun setupViewPager(viewPager: ViewPager) { val adapter = Adapter(childFragmentManager) adapter.addFragment(MediaItemFragment.newInstance(MediaID(TimberMusicService.TYPE_ALL_SONGS.toString(), null)), this.getString(R.string.songs)) adapter.addFragment(MediaItemFragment.newInstance(MediaID(TimberMusicService.TYPE_ALL_ALBUMS.toString(), null)), this.getString(R.string.albums)) adapter.addFragment(MediaItemFragment.newInstance(MediaID(TimberMusicService.TYPE_ALL_PLAYLISTS.toString(), null)), this.getString(R.string.playlists)) adapter.addFragment(MediaItemFragment.newInstance(MediaID(TimberMusicService.TYPE_ALL_ARTISTS.toString(), null)), this.getString(R.string.artists)) adapter.addFragment(MediaItemFragment.newInstance(MediaID(TimberMusicService.TYPE_ALL_FOLDERS.toString(), null)), this.getString(R.string.folders))...
@TomSwift - This pull request really needs to be accepted, I can't compile the project at the moment
Yeah something like... ```kotlin fun KClass.asMutableTypeName(): ClassName { return when (this) { List::class -> MUTABLE_LIST Map::class -> MUTABLE_MAP Set::class -> MUTABLE_SET else -> asTypeName() } } ``` ...is handy
I could definitely contribute if you'd like 😄 Since you have: ```kotlin class Notify { companion object { fun with(context: Context): Notify { ... } } } ``` You could...
No, if you monitor resources while an app is running, you can see that assets are allocated multiple times.
Hmm, I'm unable to reproduce this on stock Android.
The only error I see is totally unrelated to Assent: ``` Permission Denial: startForeground from pid=3408, uid=10102 requires android.permission.FOREGROUND_SERVICE ``` Still looking - but your sample does not support all...