Java Question VNC Viewer Library Wrap

coslad

Well-Known Member
Licensed User
Longtime User
Hi everyone
i found the following project with eclipse source code , it is a vnc viewer for android , i haven't the capability to wrap it to B4A but it should be great if someone can do that .
i found it on this site :


http://dasnic.com/vnc-viewer-android-source-code/
 

Attachments

  • android-vnc-viewer-master.zip
    209.4 KB · Views: 398

emockler

Member
Licensed User
Longtime User
I Was doing this to launch BVNC

sub VNC93
Dim Intent2 As Intent
Dim pm As PackageManager
Intent2 = pm.GetApplicationIntent ("com.iiordanov.bVNC")
Intent2.Initialize("android.intent.action.MAIN", "vnc://192.168.1.111:5993")
Intent2.SetComponent("com.iiordanov.bVNC/.RemoteCanvasActivity")
StartActivity (Intent2)




End Sub
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…