A user is running my App on a Acer chromebook CB5-571 with android 7.1.1
I normally create a PDF(s) and then display it/them with the following code.
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
Code WORKS great on all android devices and android versions (to my knowledge - no complaints from users until this Chromebook issue)
She says it is not working on her Chromebook.
I went to Acer's support page and according to them there is a PDF Viewer installed on the device by default.
SO My questions:
1) Do I need to do something different to get the PDF Viewer to start on a Chromebook?
2) Do they need to install an Android PDF Viewer for my code to work?
3) How can I identify that my software is running on a Chromebook?
I don't yet own a Chromebook so I cannot test out any of this and am looking for some help for anyone that has tried to create a pdf and view it.
BobVal
			
			I normally create a PDF(s) and then display it/them with the following code.
			
				B4X:
			
		
		
		                       File.Copy(File.DirRootExternal, mPrintingFileName, Starter.gSharedLocation, FileName)
                   
                       Dim ViewIntent As Intent
                       
                       ViewIntent.Initialize(ViewIntent.ACTION_VIEW, CreateFileProviderUri(Starter.gSharedLocation, FileName))
                       ViewIntent.Flags = 1
                       StartActivity(ViewIntent)Code WORKS great on all android devices and android versions (to my knowledge - no complaints from users until this Chromebook issue)
She says it is not working on her Chromebook.
I went to Acer's support page and according to them there is a PDF Viewer installed on the device by default.
SO My questions:
1) Do I need to do something different to get the PDF Viewer to start on a Chromebook?
2) Do they need to install an Android PDF Viewer for my code to work?
3) How can I identify that my software is running on a Chromebook?
I don't yet own a Chromebook so I cannot test out any of this and am looking for some help for anyone that has tried to create a pdf and view it.
BobVal
 
				 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		