Hi all.
Is it safe to use a code like this to get unique phone id? It works on my Android 10 phone today. But what about tomorrow? Or Advertising ID is a only safe way?
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
Thanks.
			
			Is it safe to use a code like this to get unique phone id? It works on my Android 10 phone today. But what about tomorrow? Or Advertising ID is a only safe way?
			
				GenerateID:
			
		
		
		Sub GenerateID() As String
   
    Try
        Dim P As Phone
        Dim IDAndroid As String=P.GetSettings("android_id")
        Log("IDAndroid=" & IDAndroid)
        Return IDAndroid
   
    Catch
        Log("GenerateID " & LastException)      
        Return "Error"
    End Try
   
End Sub
	Thanks.