Scope is a Gradle plugin which helps you analyze the size of your Android apps.
Motivation
App size is an important metric which directly correlates with business metrics like install conversion rate. Measuring app size is straightforward, but knowing what contributes to it is not. Especially in bigger projects with hundreds or thousands of modules and third-party dependencies. Scope provides a convenient way to find out how much each module and dependency contributes to the total size of your app by running a single Gradle task.
Usage
Follow the following steps to start using Scope in your project.
Adding the plugin
First you need to add the Scope Gradle plugin to the buildscript classpath in your top-level build.gradle
file:
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.plexus.scope:scope-gradle-plugin:1.1.0")
}
}
You also have to apply the plugin in the build.gradle
of your application module:
plugins {
id("com.android.application")
id("com.plexus.scope")
}
Configuring the plugin
When using app bundles, Google Play will generate optimized APKs for each device. This means that the size of an APK depends on the specifications of the device that's downloading it. You can configure which device specifications should be used for the analysis in the build.gradle
of your application module:
scope {
abi.set("arm64-v8a")
locale.set("en")
screenDensity.set(480)
sdkVersion.set(27)
}
Running the task
Once this is done, scope
tasks will be added for each of your app variants. Running this task will build the app and generate a HTML report, which you can use to analyze your app size. It will also generate a JSON report, in case you want to further process the data.
Ownership
In larger organizations, Gradle modules and dependencies are often owned by specific teams. If that's the case for your app, Scope can help you analyze app size contributions by different teams. All you need to do is provide a YAML file listing all components and their owners:
# Identifier for Gradle modules -> path of the module
- identifier: :sample:app
owner: app-team
# Identifier for dependencies -> dependency shorthand without the version
- identifier: androidx.core:core
owner: core-team
# Wildcard identifier -> matches multiple components (can be both modules or dependencies)
- identifier: :sample:wildcard:*
owner: wildcard-team
This ownership file can be maintained manually, but in most cases it will be more practical to generate it during the build. You can point Scope to your YAML file in the build.gradle
, you can also configure default owners for components missing from the ownership file:
scope {
ownershipFile.set(project.file("/path/to/ownership.yaml"))
defaultOwner.set("default-team") // unknown by default
}
When you pass an ownership file to Scope, you'll see a new tab in the HTML report with app size insights broken down by team.
Project structure
Scope is built with Kotlin and contains multiple modules:
- scope-gradle-plugin: Core Gradle plugin where the APK parsing, dependency handling and attribution logic lives.
- scope-frontend: React template used for the HTML report, built with Kotlin JS.
- scope-models: Common models shared between the Gradle plugin and the frontend, built with Kotlin Multiplatform.
Working with this project
The project is set up like a standard Gradle project. You can build it using ./gradlew assemble
and run the tests with ./gradlew test
.
There is also a sample project, which shows the usage of the plugin. Because the way this sample project is set up, the initial build can fail if you bump the plugin version. To fix this, you have to publish the plugin to your local Maven repository by running ./gradlew publishToMavenLocal -PwithoutSample
.
When working on the frontend, you can start a development server by running ./gradlew browserRun
, which will show a report filled with dummy data to make development easier.
Compatibility
The latest version of this plugin is compatible with
- Java 11 or above,
- Gradle 7.0 or above and
- Android Gradle Plugin 7.0.0 or above.
Earlier versions might also work, but compatibility can't be guaranteed.
Code of conduct
This project adheres to the Open Code of Conduct. By participating, you are expected to honor this code.
License
Copyright 2022 Plexus, Inc
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.