Android Libraries
Publishing to Maven Central
·456 words·3 mins
This is just a quick post to highlight how easy it can be to publish libraries to Maven Central.
Designing the Design Support Library
Conference: Droidcon London
Description # The design library introduced CoordinatorLayout, AppBarLayout and CollapsingToolbarLayout last year. This talk will go through how it all works, from CoordinatorLayout Behaviors, to nested scrolling, to all of the crazy things in between to make it work back to API 9. You’ll also discover some of the new stuff we’ve got lined up.
What's New in the Support Library
Conference: Google I/O 2016
Co-speakers: Alan Viverette and Tenghui Zhu
Description # Compatibility with older versions of Android is a must-have for most applications. Join members of the Android Support Library team as they walk through recent advances in backwards compatibility, explain important changes, and discuss the future of the support libraries.
Support Library - Guts and Glory
Conference: Android Dev Summit 2015
Description # The Android Support Libraries contain great libraries which help you jump-start your Android app. Chris Banes and Adam Powell use their expertise in Android Support Libraries at Google to discuss all the ins and outs along the way.
Support Library - Guts and Glory
Meetup: Londroid
Description # The Android Support Libraries contain great libraries which help you jump-start your Android app. Chris Banes and Adam Powell use their expertise in Android Support Libraries at Google to discuss all the ins and outs along the way.
(My) Open Source Libraries
·342 words·2 mins
Over the past few months I’ve been receiving a ton of emails, tweets, G+ mentions and GitHub issues in connection with my open source libraries. So I thought I would set out what my plan is for them in the future, and the order in which I’ll be tackling the backlog.
Pushing AARs to Maven Central
·563 words·3 mins
Over the past few weeks I’ve been updating ActionBar-PullToRefresh for the release of v0.7, but have been a bit blocked on publishing the library as an Android Archive (aar) to Maven Central. It was the number one issue/request that I received, and while I had a working local Gradle build I could not find an easy way to publish the results.
ActionBar-PullToRefresh
·205 words·1 min
So this is my first blog post on ActionBar-PullToRefresh. I’ve been mainly talking about it on Google+ up until now as it simply was not ready for production use. Well today I tagged and push v0.4 of the project, which adds the main missing feature: automatically styling based on your Action Bar style.
Android-PullToRefresh – Stopping Development
·110 words·1 min
Android-PullToRefresh was started about 18 months ago, as I needed it for a project (Friendcaster). Since then I’ve kept maintaining the project, pushing it forward and adding new features.
Android-BitmapCache… the rebirth.
·441 words·3 mins
A while ago I wrote Android-BitmapMemoryCache, a cache based off of LruCache which would cache Android Bitmap objects in memory in a clever way. You can get the full details from this earlier post, but the bottom line is that it knew when a Bitmap was no longer being used, and so would recycle it.