jvoegele / gradle-android-plugin

Android plugin for the Gradle build system.
Apache License 2.0
406 stars 95 forks source link

Initial work on more flexible and reusable tasks. #79

Closed marcusb closed 6 years ago

marcusb commented 11 years ago

Apology

This started as some small modifications to the plugin, but has grown more into a quasi-rewrite. So maybe submitting a pull request is not appropriate, but I want to point to some of the improvements that the plugin could benefit from.

Features

dependencies {
    androidLibs project(':facebook')
}
dependencies {
    androidTest project(':main')
}

Notes

jvoegele commented 11 years ago

Hi, I'm interested in the refactoring you made here, but with such sweeping changes it's hard to tell if something won't break. Have you been able to do any testing to make sure the plugin still works for the various Android SDK releases?

Also, if I were to merge this pull request, it would be necessary to update documentation accordingly. Can you add doc updates to the pull request?

Thanks!