0
0
mirror of https://github.com/schwabe/ics-openvpn.git synced 2024-09-19 19:42:29 +02:00
openvpn-android/doc/README.txt
Arne Schwabe 31aaf5a71a Add API FAQ
--HG--
extra : rebase_source : 538e40184eb91b47aec48b8484c103c7895e5f65
2013-06-11 00:02:17 +02:00

63 lines
2.4 KiB
Plaintext

This is my first Android project, so some things may be done in a completely stupid way.
See the file todo.txt for ideas/not yet implemented features (and the bug tracker).
Build instraction:
Disable Google breakcode (WITH_BREAKPAD=0 in jni/Android.mk) or checkout google breakcode
svn co http://google-breakpad.googlecode.com/svn/trunk/ google-breakpad
- Install sdk
- Install ndk (Version 8d gives strange linker errors, use 8b for now)
- Make sure that ndk-build is in your build path.
Do ./misc/build-native.(sh|bat) in the root directory of the project.
You may need to refresh the project and clean the project in eclipse
to have the libraries included the resulting apk.
Use eclipse with android plugins to build the project.
FAQ
Q: How is the OpenVPN version different from normal OpenVPN
A: OpenVPN for Android uses a OpenVPN 2.3 master branch + Android patches + dual stack client patches.
A git repository of the OpenVPN source code and changes is under:
https://github.com/schwabe/openvpn/tree/android_2.3rc1%2Bds
Q: what is minivpn?
A: minivpn is only a executable thats links against libopenvpn which is the normal openvpn build as
library. It is done this way so the Android Play/Store apk will treat the library as normal library
and update it on updates of the application. Also the application does not need to take care of
keeping minivpn up to date because it contains no code. For almost all intents and purposes
minivpn + libopenvpn.so is the same as the normal openvpn binary
Q: How to a VPN by name from an external app
A: public class StartOpenVPNActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final String EXTRA_NAME = "de.blinkt.openvpn.shortcutProfileName";
Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
shortcutIntent.setClassName("de.blinkt.openvpn", "de.blinkt.openvpn.LaunchVPN");
shortcutIntent.putExtra(EXTRA_NAME,"upb ssl");
startActivity(shortcutIntent);
}
}
or from the shell:
am start -a android.intent.action.MAIN -n de.blinkt.openvpn/.LaunchVPN -e de.blinkt.openvpn.shortcutProfileName Home
Q: How to control the app from an external app?
A: There is an AIDL interface. See src/de/blinkt/openvpn/api/IOpenVPNAPIService.aidl. See the normal Android documentation how to use AIDL.