main.kotlin.org.jetbrains.bsp.protocol.AndroidBuildTarget.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bazel-bsp Show documentation
Show all versions of bazel-bsp Show documentation
An implementation of the Build Server Protocol for Bazel. Allows clients such as IntelliJ to obtain build
specific
information in order to improve the experience of users in the IDE.
package org.jetbrains.bsp.protocol
import ch.epfl.scala.bsp4j.JvmBuildTarget
import com.google.gson.annotations.JsonAdapter
import org.eclipse.lsp4j.jsonrpc.json.adapters.EnumTypeAdapter
@JsonAdapter(EnumTypeAdapter.Factory::class)
public enum class AndroidTargetType(public val value: Int) {
APP(1),
LIBRARY(2),
TEST(3),
}
public data class AndroidBuildTarget(
val androidJar: String,
val androidTargetType: AndroidTargetType,
val manifest: String?,
val manifestOverrides: Map,
val resourceDirectories: List,
val resourceJavaPackage: String?,
val assetsDirectories: List,
val apk: String? = null,
var jvmBuildTarget: JvmBuildTarget? = null,
var kotlinBuildTarget: KotlinBuildTarget? = null,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy