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: 392

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
 

DonManfred

Expert
Licensed User
Longtime User
news about this project?
Which project? He asked whether someone do a wrap for it. No one answered. Guess the answer is no.
 
Top