Hi I am trying to build a vpn session using titanium for android.
For it I was creating a android native module.
Now the issue what I get is that , the api which is needed for building VPN is in android api level 14.
And titanium supports android api level 8.
Also I tried to use the android's jar file of api level 14 as a reference library ( I was just trying ), the module build failed.
So any suggestion for this !!!!
4 Answers
You just need to change tiapp.xml, and add this:
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8"/>more here:
https://wiki.appcelerator.org/display/guides/tiapp.xml+and+timodule.xml+Reference#tiapp.xmlandtimodule.xmlReference-Androidspecificapplicationproperties
Try changing the build.properties file in the Module directory normally this file directs to Android-8 API level, you have set that manually.
Hi Sid, Yes definitely you can do that for android 14 API. Refer Titanium Compatibility Matrix Here.
Hi Sid,
Please share the module log. This seems to be a configuration issue.
Your Answer
Think you can help? Login to answer this question!