FreeRDP/client/Android
zihao.jiang 0927114e83 android: Allow freerdp mobile version to be launched from URI (freerdp://)
It would be good if we have a easy way to call aFreeRDP in another Android APP (Requirement also mentioned in #2720)
We can define a scheme (freerdp://) as unified way to launch FreeRDP from another APP or browser and connect to compatible RDP server
1. Define scheme freerdp://
2. General form could be freerdp://user@hostname:port/connect?key1=value&key2=-&key3=%2b&key4=
3. [user] part would be translated to /u:
4. [hostname:port] would be translated to /v:
5. The [user@hostname:port] part would be used as app title, currently it's just the progress dialog title
6. query parameters would be translated to command line arguments. Later same arguments will overwrite the formers:
    a. key1=value: 		=> /key1:value
    b. key2=-: 			=> -key2
    c. key3=%2b 		=> +key3 (%2b is url encoded +)
	d. key4= 			=> /key4
	e. Especially, drive=sdcard will be properly handled with local sdcard path. On my device it will be translated to /drive:sdcard,/storage/emulated/0

Owing to the refactor work in PR #3097, we now pass same command line argument to JNI for freerdp settings.
We just need to make the SessionActivity accept freerdp scheme and translate argument from URI form to command line form.
2016-03-09 03:22:02 +08:00
..
Studio android: Allow freerdp mobile version to be launched from URI (freerdp://) 2016-03-09 03:22:02 +08:00
android_cliprdr.c Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00
android_cliprdr.h Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00
android_event.c Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00
android_event.h Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00
android_freerdp_jni.h Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00
android_freerdp.c Updated android API. 2016-02-05 02:32:47 +01:00
android_freerdp.h Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00
android_jni_callback.c Updated android API. 2016-02-05 02:32:47 +01:00
android_jni_callback.h Implemented temporary certificate accept. 2016-02-05 02:04:57 +01:00
android_jni_utils.c Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00
android_jni_utils.h Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00
CMakeLists.txt Restructured client project, moved to gradle build. 2016-02-01 15:25:40 +01:00