Set up CI with Azure Pipelines
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
new file mode 100644
index 0000000..b31e5f6
--- /dev/null
+++ b/azure-pipelines.yml
@@ -0,0 +1,12 @@
+pool:
+ vmImage: 'Ubuntu 16.04'
+
+steps:
+- script: |
+ sudo apt install xmlstarlet
+ cd build
+ bash build.sh
+ displayName: 'Building APKs'
+
+- script: bash tests/tests.sh
+ displayName: 'Running test scripts'
diff --git a/build/aapt b/build/aapt
new file mode 100755
index 0000000..ef4967b
--- /dev/null
+++ b/build/aapt
Binary files differ
diff --git a/build/build.sh b/build/build.sh
index 448b91f..aa2b738 100644
--- a/build/build.sh
+++ b/build/build.sh
@@ -2,6 +2,8 @@
set -e
+export LD_LIBRARY_PATH=.
+export PATH=$PATH:.
if ! which aapt > /dev/null;then
echo "Please install aapt (apt install aapt should do)"
exit 1
diff --git a/build/libc++.so b/build/libc++.so
new file mode 100755
index 0000000..7daa576
--- /dev/null
+++ b/build/libc++.so
Binary files differ