I would like to use some functions of Sygic Remote Api.jar for my project.
Is this possible with JavaObject at all? If yes, how do I start with the integration?
https://developers.sygic.com/documentation.php?action=getstarted_android
So far I have done that:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
			
			Is this possible with JavaObject at all? If yes, how do I start with the integration?
https://developers.sygic.com/documentation.php?action=getstarted_android
So far I have done that:
			
				B4X:
			
		
		
		#AdditionalJar: RemoteApi
			
				B4X:
			
		
		
		Sub GetContext As JavaObject
    Return GetBA.GetField("context")
End Sub
Sub GetBA As JavaObject
    Dim jo As JavaObject
    Dim cls As String = Me
    cls = cls.SubString("class ".Length)
    jo.InitializeStatic(cls)
    Return jo.GetField("processBA")
End Sub 
				 
 
		 
 
		