com.bselzer.gradle.internal.android.application.plugin.AndroidApplicationExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-plugin Show documentation
Show all versions of android-plugin Show documentation
Applies the Android gradle plugin.
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
}