Skip to content

Instantly share code, notes, and snippets.

View rodly's full-sized avatar

Rodney Lyons rodly

  • @ Tesla
  • San Francisco, CA
View GitHub Profile
@rodly
rodly / circle.yml
Created July 20, 2016 19:32 — forked from donnfelker/circle.yml
Updated circle.yml file
#
# Build configuration for Circle CI
#
# See this thread for speeding up and caching directories: https://discuss.circleci.com/t/installing-android-build-tools-23-0-2/924
#
general:
artifacts:
- /home/ubuntu/AndroidCI/app/build/outputs/apk/
@rodly
rodly / Views.kt
Last active August 3, 2017 21:30
Useful Android view visibility extensions
import android.view.View
var View.isVisible: Boolean
get() = visibility == View.VISIBLE
set(value) {
visibility = if (value) {
View.VISIBLE
} else {
View.GONE