* #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/.svn/pristine/d7/d71ebe23a0f6e8f10760788247957d9b860d0655.svn-base b/jni/pjproject-android/.svn/pristine/d7/d71ebe23a0f6e8f10760788247957d9b860d0655.svn-base
new file mode 100644
index 0000000..199493e
--- /dev/null
+++ b/jni/pjproject-android/.svn/pristine/d7/d71ebe23a0f6e8f10760788247957d9b860d0655.svn-base
@@ -0,0 +1,16 @@
+# $Id$
+import inc_sip as sip
+import inc_sdp as sdp
+
+pjsua = "--null-audio --id=sip:CLIENT --registrar sip:127.0.0.1:$PORT " + \
+	"--realm=provider --user=username --password=password"
+
+req1 = sip.RecvfromTransaction("", 401,
+				include=["REGISTER sip"], 
+				exclude=["Authorization"],
+				resp_hdr=["WWW-Authenticate: Digest realm=\"python\", nonce=\"1234\""],
+				expect="PJSIP_ENOCREDENTIAL"
+			  )
+
+recvfrom_cfg = sip.RecvfromCfg("Failed registration because of realm test",
+			       pjsua, [req1])