android-build
How to convert an Eclipse Android project to use Ant for build?
Running android update project -p . on the command line, in the base folder of your project will create the necessary build.xml and supporting files for an Ant build.
Run task before compilation using Android Gradle plugin
Apparently, the android plugin doesn’t add a compileJava task (like the java plugin would). You can check which tasks are available with gradle tasks –all, and pick the right one for your (otherwise correct) dependency declaration. EDIT: Apparently, the android plugin defers creation of tasks in such a way that they can’t be accessed eagerly … Read more
Google-play-services_lib Unable to resolve target ‘android-9
Actually downloading the latest ADT bundle for Eclipse gives the same error when trying to import the google_play_services_lib (17). http://developer.android.com/sdk/index.html#download Open the SDK Manager, click obsolete (so API 9 shows up), and grab API 9. This is really something that seems like a simple oversight and should be fixed.
warning : The following options were not recognized by any processor: ‘[dagger.fastInit, kapt.kotlin.generated]’
Move the id “kotlin-kapt” to the bottom of plugins{} in build.gradle Module-level.