be8b96280e
* snapshot 219 * revert non-working string searcher * fix(gui): fix illegal ':' character in path when exporting resources.arsc/res * fix(gui): use resource short name when exporting a folder via context menu * fix(gui): use new resource class for files in arsc (#2771) * fix(gui): limit tabs title length, fix tooltips (#2771) * resolve issues with script code area after merge --------- Co-authored-by: Jan S. <jpstotz@users.noreply.github.com> Co-authored-by: Skylot <118523+skylot@users.noreply.github.com>
58 lines
1.7 KiB
Kotlin
58 lines
1.7 KiB
Kotlin
plugins {
|
|
id("jadx-library")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":jadx-plugins:jadx-input-api"))
|
|
api(project(":jadx-commons:jadx-zip"))
|
|
|
|
implementation("com.google.code.gson:gson:2.13.2")
|
|
|
|
testImplementation("org.apache.commons:commons-lang3:3.20.0")
|
|
|
|
testImplementation(project(":jadx-plugins:jadx-dex-input"))
|
|
// 'ClassNotFound' error is raised if set as 'testRuntime'
|
|
// for the plugins below when running the tests from vscode.
|
|
testImplementation(project(":jadx-plugins:jadx-smali-input"))
|
|
testImplementation(project(":jadx-plugins:jadx-java-convert"))
|
|
testImplementation(project(":jadx-plugins:jadx-java-input"))
|
|
testImplementation(project(":jadx-plugins:jadx-raung-input"))
|
|
|
|
testImplementation("org.eclipse.jdt:ecj") {
|
|
version {
|
|
prefer("3.33.0")
|
|
strictly("[3.33, 3.34[") // from 3.34 compiled with Java 17
|
|
}
|
|
}
|
|
testImplementation("tools.profiler:async-profiler:4.2")
|
|
}
|
|
|
|
val jadxTestJavaVersion = getTestJavaVersion()
|
|
|
|
fun getTestJavaVersion(): Int? {
|
|
val envVarName = "JADX_TEST_JAVA_VERSION"
|
|
val testJavaVer = System.getenv(envVarName)?.toInt() ?: return null
|
|
val currentJavaVer = java.toolchain.languageVersion.get().asInt()
|
|
if (testJavaVer < currentJavaVer) {
|
|
throw GradleException("'$envVarName' can't be set to lower version than $currentJavaVer")
|
|
}
|
|
println("Set Java toolchain for core tests to version '$testJavaVer'")
|
|
return testJavaVer
|
|
}
|
|
|
|
tasks.named<Test>("test") {
|
|
jadxTestJavaVersion?.let { testJavaVer ->
|
|
javaLauncher =
|
|
javaToolchains.launcherFor {
|
|
languageVersion = JavaLanguageVersion.of(testJavaVer)
|
|
}
|
|
}
|
|
|
|
// disable cache to allow test's rerun,
|
|
// because most tests are integration and depends on plugins and environment
|
|
outputs.cacheIf { false }
|
|
|
|
// exclude temp tests
|
|
exclude("**/tmp/*")
|
|
}
|