Sign In Start Free Trial
Account

Add to playlist

Create a Playlist

Modal Close icon
You need to login to use this feature.
  • Book Overview & Buying Gradle for Android
  • Table Of Contents Toc
Gradle for Android

Gradle for Android

By : Kevin Pelgrims
5 (3)
close
close
Gradle for Android

Gradle for Android

5 (3)
By: Kevin Pelgrims

Overview of this book

If you are an experienced Android developer wanting to enhance your skills with the Gradle Android build system, then this book is for you. As a prerequisite, you will need some knowledge of the concepts of Android application development.
Table of Contents (11 chapters)
close
close
10
Index

Test coverage


Once you start writing tests for your Android projects, it is good to know how much of your code base is covered by tests. There are plenty of test coverage tools for Java, but Jacoco is the most popular one. It is also included by default, which makes it easy to get started.

Jacoco

Enabling coverage reports is very easy. You just need to set testCoverageEnabled = true on the build type that you are testing. Enable test coverage for the debug build type like this:

buildTypes {
  debug {
    testCoverageEnabled = true
  }
}

When you enable test coverage, the coverage reports are created when you execute gradlew connectedCheck. The task that creates the report itself is createDebugCoverageReport. Even though it is not documented, and it does not appear in the task list when you run gradlew tasks, it is possible to run it directly. However, because createCoverageReport depends on connectedCheck, you cannot execute them separately. The dependency on connectedCheck also means that you...

CONTINUE READING
83
Tech Concepts
36
Programming languages
73
Tech Tools
Icon Unlimited access to the largest independent learning library in tech of over 8,000 expert-authored tech books and videos.
Icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Icon 50+ new titles added per month and exclusive early access to books as they are being written.
Gradle for Android
notes
bookmark Notes and Bookmarks search Search in title playlist Add to playlist font-size Font size

Change the font size

margin-width Margin width

Change margin width

day-mode Day/Sepia/Night Modes

Change background colour

Close icon Search
Country selected

Close icon Your notes and bookmarks

Confirmation

Modal Close icon
claim successful

Buy this book with your credits?

Modal Close icon
Are you sure you want to buy this book with one of your credits?
Close
YES, BUY

Submit Your Feedback

Modal Close icon
Modal Close icon
Modal Close icon