CI cleanup

This commit is contained in:
Anuken 2020-11-19 19:26:10 -05:00
parent 4e9b07d8e2
commit 8bd2b9b45c

View File

@ -35,7 +35,8 @@ dependencies{
natives "com.github.Anuken.Arc:natives-box2d-android:${getArcHash()}"
//android dependencies magically disappear during compilation, thanks gradle!
if(new File(projectDir.parent, '../Arc').exists()) compileOnly fileTree(dir: '../../Arc/backends/backend-android/libs', include: ['*.jar'])
def sdkFile = new File(System.getenv("ANDROID_HOME"), "/platforms/android-29/android.jar")
if(sdkFile.exists()) compileOnly files(sdkFile.absolutePath)
}
task deploy(type: Copy){