mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2025-08-03 07:36:31 -04:00

* fix(submodules): Remove broken, unused gl4es submodule * fix(build): Git checks had typo version also gets updated here because I changed their build.gradle
21 lines
582 B
Groovy
21 lines
582 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes("Manifest-Version": "1.0",
|
|
"PreMain-Class": "git.artdeell.arcdns.ArcDNSInjectorAgent")
|
|
}
|
|
if (gitUsed()){
|
|
File versionFile = file("../app_pojavlauncher/src/main/assets/components/arc_dns_injector/version")
|
|
versionFile.write(getGitHash(project.name))
|
|
}
|
|
destinationDirectory.set(file("../app_pojavlauncher/src/main/assets/components/arc_dns_injector/"))
|
|
}
|