* #27232: jni: added pjproject checkout as regular git content

We will remove it once the next release of pjsip (with Android support)
comes out and is merged into SFLphone.
diff --git a/jni/pjproject-android/tests/pjsua/scripts-pres/100_peertopeer.py b/jni/pjproject-android/tests/pjsua/scripts-pres/100_peertopeer.py
new file mode 100644
index 0000000..a35f981
--- /dev/null
+++ b/jni/pjproject-android/tests/pjsua/scripts-pres/100_peertopeer.py
@@ -0,0 +1,12 @@
+# $Id: 100_peertopeer.py 2392 2008-12-22 18:54:58Z bennylp $
+#
+from inc_cfg import *
+
+# Direct peer to peer presence
+test_param = TestParam(
+		"Direct peer to peer presence",
+		[
+			InstanceParam("client1", "--null-audio"),
+			InstanceParam("client2", "--null-audio")
+		]
+		)
diff --git a/jni/pjproject-android/tests/pjsua/scripts-pres/200_publish.py b/jni/pjproject-android/tests/pjsua/scripts-pres/200_publish.py
new file mode 100644
index 0000000..d06b190
--- /dev/null
+++ b/jni/pjproject-android/tests/pjsua/scripts-pres/200_publish.py
@@ -0,0 +1,35 @@
+# $Id: 200_publish.py 2028 2008-06-16 13:04:44Z bennylp $
+#
+from inc_cfg import *
+
+# Basic registration
+test_param = TestParam(
+		"Presence with PUBLISH",
+		[
+			InstanceParam(	"ua1", 
+					"--null-audio"+
+						" --id=\"<sip:test1@pjsip.org>\""+
+						" --registrar=sip:sip.pjsip.org" +
+						" --username=test1" +
+						" --password=test1" +
+						" --realm=*" +
+						" --proxy=\"sip:sip.pjsip.org;lr\"" +
+						" --publish",
+					uri="<sip:test1@pjsip.org>",
+					have_reg=True,
+					have_publish=True),
+			InstanceParam(	"ua2", 
+					"--null-audio"+
+						" --id=\"<sip:test2@pjsip.org>\""+
+						" --registrar=sip:sip.pjsip.org" +
+						" --username=test2" +
+						" --password=test2" +
+						" --realm=*" +
+						" --proxy=\"sip:sip.pjsip.org;lr\"" +
+						" --publish",
+					uri="<sip:test2@pjsip.org>",
+					have_reg=True,
+					have_publish=True),
+		]
+		)
+