Hi
I am getting complains that my app is not working on Galaxy S5 or Nexus 5
I think I manage to see the issue (I sent debug apk to someone) and he says he see this:
java.lang.IllegalArgumentException: column 'Must_Approve' does not exist
I then used the avg manager and saw same issue
this is related to this code part:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
but if I run this on my galaxy s2, I can get the result from the parameter table
this is how I init the sql:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
any idea what is wrong here?
			
			I am getting complains that my app is not working on Galaxy S5 or Nexus 5
I think I manage to see the issue (I sent debug apk to someone) and he says he see this:
java.lang.IllegalArgumentException: column 'Must_Approve' does not exist
I then used the avg manager and saw same issue
this is related to this code part:
			
				B4X:
			
		
		
		Sub Read_Settings
       
    Cursor2 = SQL2.ExecQuery("SELECT * FROM Table_Parameters")
    Cursor2.Position = 0
   
    Must_Approve = (Cursor2.GetString("Must_Approve"))
	but if I run this on my galaxy s2, I can get the result from the parameter table
this is how I init the sql:
			
				B4X:
			
		
		
		File.Copy(File.DirAssets,"Parameters.db",File.DirDefaultExternal,"Parameters.db")
      SQL2.Initialize(File.DirDefaultExternal,"Parameters.db", False)
	any idea what is wrong here?