Skip to content

Instantly share code, notes, and snippets.

View mandarl's full-sized avatar
🎯
Focusing

Mandar Limaye mandarl

🎯
Focusing
View GitHub Profile
@CedricGatay
CedricGatay / strip_play_services.gradle
Last active August 29, 2015 14:09 — forked from dmarcato/strip_play_services.gradle
Keep track of previous run to prevent restripping if nothing has changed
// adapted from https://gist.github.com/dmarcato/d7c91b94214acd936e42
def toCamelCase(String string) {
String result = ""
string.findAll("[^\\W]+") { String word ->
result += word.capitalize()
}
return result
}