Skip to content

Instantly share code, notes, and snippets.

View erd's full-sized avatar

Erich Douglass erd

View GitHub Profile

Keybase proof

I hereby claim:

  • I am erd on github.
  • I am erd (https://keybase.io/erd) on keybase.
  • I have a public key whose fingerprint is 8EE5 07DC A5A5 BA0F A679 2F4C 8716 A285 E8B2 DBD9

To claim this, I am signing this object:

@erd
erd / build.gradle
Last active October 9, 2015 00:43
Android set localhost address to local ip
android {
buildTypes {
debug {
debuggable true
buildConfigField "String", "API_HOST", '"http://' + getIpAddress() + ':3000"'
buildConfigField "String", "API_PATH", '"/api/v1"'
}
}
}