Skip to content

Instantly share code, notes, and snippets.

View gloc-mike's full-sized avatar
💭
Living the dream! 🎉

Michael B gloc-mike

💭
Living the dream! 🎉
View GitHub Profile
@gloc-mike
gloc-mike / android_instructions.md
Created May 4, 2019 08:53 — forked from patrickhammond/android_instructions.md
Easily setup an Android development environment on a Mac

Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.

Prerequisites (for Homebrew at a minimum, lots of other tools need these too):

  • XCode is installed (via the App Store)
  • XCode command line tools are installed (xcode-select --install will prompt up a dialog)
  • Java

Install Homebrew:

ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"

@gloc-mike
gloc-mike / ios.gradle
Created April 30, 2019 04:23 — forked from benasher44/ios.gradle
iOS Gradle Utilities for Generating Fat Frameworks and dSYMs
afterEvaluate {
// Create tasks for creating fat frameworks and fat dsyms for sim and device
def binaryKinds = [
// config, sim task, device task
new Tuple('Debug', linkDebugFrameworkIosSim, linkDebugFrameworkIosDevice),
new Tuple('Release', linkReleaseFrameworkIosSim, linkReleaseFrameworkIosDevice),
]