Skip to content

Instantly share code, notes, and snippets.

View dhesson's full-sized avatar
🏠
Working from home

Dave Hesson dhesson

🏠
Working from home
View GitHub Profile
@dmarcato
dmarcato / strip_play_services.gradle
Last active December 21, 2022 10:10
Gradle task to strip unused packages on Google Play Services library
def toCamelCase(String string) {
String result = ""
string.findAll("[^\\W]+") { String word ->
result += word.capitalize()
}
return result
}
afterEvaluate { project ->
Configuration runtimeConfiguration = project.configurations.getByName('compile')