Owner:
hungnv-dmobin
Chặn build prod-release nếu AdMob IDs còn trống / sai publisher / dùng Google test ID.
https://github.com/hungnv-dmobin/verify-ads-plugin
Sources: https://github.com/hungnv-dmobin/verify-ads-plugin.git
Version 1.1.0 (latest)
Created 22 May 2026.
Chặn build prod-release nếu AdMob IDs còn trống / sai publisher / dùng Google test ID.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.hungnv-dmobin.verify-ads") version "1.1.0"
}
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("io.github.hungnv-dmobin.verify-ads:io.github.hungnv-dmobin.verify-ads.gradle.plugin:1.1.0") }It can then be applied in the precompiled script plugin:plugins { id("io.github.hungnv-dmobin.verify-ads") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.hungnv-dmobin.verify-ads:io.github.hungnv-dmobin.verify-ads.gradle.plugin:1.1.0") } } apply(plugin = "io.github.hungnv-dmobin.verify-ads") - Applying plugins to all subprojects .