mirror of
https://github.com/QM4RS/FridaBox.git
synced 2026-09-22 00:52:20 +02:00
16 lines
475 B
Kotlin
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"))
|
|
}
|