Bytemask - Android Gradle Plugin Help

Getting Started

The Gradle plugin can be only applied to the following Android modules:

  • Application (com.android.application)

  • Dynamic Feature Module (com.android.dynamic-feature)

Apply plugin

Apply the plugin in the app module.

Using Plugin DSL

plugins { id("dev.shreyaspatil.bytemask.plugin") version "1.0.0-beta01" }

OR using Legacy plugin application

buildscript { repositories { maven { url = uri("https://plugins.gradle.org/m2/") } } dependencies { classpath("dev.shreyaspatil.bytemask:gradle-plugin:1.0.0-beta01") } } apply(plugin = "dev.shreyaspatil.bytemask.plugin")
Last modified: 16 July 2024