Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Gradle for Android

You're reading from   Gradle for Android Automate the build process for your Android projects with Gradle

Arrow left icon
Product type Paperback
Published in Jul 2015
Publisher Packt
ISBN-13 9781783986828
Length 172 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Kevin Pelgrims Kevin Pelgrims
Author Profile Icon Kevin Pelgrims
Kevin Pelgrims
Arrow right icon
View More author details
Toc

Getting started with tasks


Custom Gradle tasks can significantly improve the daily life of a developer. Tasks can manipulate the existing build process, add new build steps, or influence the outputs of a build. You can perform simple tasks, such as renaming a generated APK, by hooking into the Android plugin for Gradle. Tasks also enable you to run more complex code, so you can generate images for several densities before your app is packaged, for instance. Once you know how to create your own tasks, you will find yourself empowered to change every aspect of your build process. This is especially true when you learn how to hook into the Android plugin.

Defining tasks

Tasks belong to a Project object, and each task implements the Task interface. The easiest way to define a new task is by executing the task method with the name of the task as its parameter:

task hello

This creates the task, but it will not do anything when you execute it. To create a task that is somewhat useful, you need to add...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image