All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.triplet.gradle.common.validation.RuntimeValidationPlugin.kt Maven / Gradle / Ivy

Go to download

Gradle Play Publisher is a plugin that allows you to upload your App Bundle or APK and other app details to the Google Play Store.

There is a newer version: 3.12.1
Show newest version
package com.github.triplet.gradle.common.validation

import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.util.GradleVersion

internal class RuntimeValidationPlugin : Plugin {
    override fun apply(project: Project) {
        check(project === project.rootProject)

        GradleRuntimeValidator(GradleVersion.current(), MIN_GRADLE_VERSION)
                .validate()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy