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

com.bselzer.gradle.internal.android.application.plugin.AndroidApplicationExtension.kt Maven / Gradle / Ivy

The newest version!
package com.bselzer.gradle.internal.android.application.plugin

import com.bselzer.gradle.internal.android.plugin.AndroidExtension
import org.gradle.api.provider.Property

interface AndroidApplicationExtension : AndroidExtension {
    /**
     * The id of the application.
     */
    val applicationId: Property

    /**
     * The semantic version.
     */
    val versionName: Property

    /**
     * The incremental version.
     */
    val versionCode: Property

    /**
     * The target API level.
     */
    val targetSdk: Property

    /**
     * The type of default proguard file.
     */
    val defaultProguardFile: Property
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy