com.cryptenet.android.settings-patcher
Owner: Alamgir Hossain
The easiest way to move to new gradle 6 with kotlin dsl
Sources: https://bitbucket.org/cryptenet-oss/android-settings-patcher-plugin/
Version 702.1531.0.11 (latest)
Created 03 October 2021.
The easiest way to move to new gradle 7 with kotlin dsl
Add this plugin to your build using the plugins DSL:
plugins {
id("com.cryptenet.android.settings-patcher") version "702.1531.0.11"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.cryptenet.android.settings-patcher:com.cryptenet.android.settings-patcher.gradle.plugin:702.1531.0.11") }
It can then be applied in the precompiled script plugin:plugins { id("com.cryptenet.android.settings-patcher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.cryptenet.android.settings-patcher:com.cryptenet.android.settings-patcher.gradle.plugin:702.1531.0.11") } } apply(plugin = "com.cryptenet.android.settings-patcher")
- Applying plugins to all subprojects .