Files
FridaBox/compiler/build.gradle.kts
2026-02-04 22:09:34 +05:30

16 lines
475 B
Kotlin

plugins {
id("java-library")
}
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
dependencies {
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
annotationProcessor("com.google.auto.service:auto-service:1.1.1")
compileOnly("com.google.auto.service:auto-service:1.1.1")
implementation("com.squareup:javapoet:1.13.0")
implementation(project(":black-reflection"))
}