You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
21 lines
901 B
XML
21 lines
901 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<project name="custom_rules" default="debug">
|
|
<fail
|
|
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through the ANDROID_HOME environment variable."
|
|
unless="sdk.dir"
|
|
/>
|
|
|
|
<path id="android.antlibs">
|
|
<pathelement path="${sdk.dir}/tools/lib/ant-tasks.jar" />
|
|
</path>
|
|
|
|
<!-- Custom tasks -->
|
|
<taskdef resource="anttasks.properties" classpathref="android.antlibs" />
|
|
|
|
<getbuildtools name="android.build.tools.dir" verbose="${verbose}" />
|
|
<property name="aapt" location="${android.build.tools.dir}/aapt" />
|
|
<property name="aidl" location="${android.build.tools.dir}/aidl" />
|
|
<property name="dx" location="${android.build.tools.dir}/dx.bat" />
|
|
<property name="zipalign" location="${android.build.tools.dir}/zipalign" />
|
|
</project>
|