hi
i am using this code to get the outgoing call number (via a service)
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
the problem is that this code needs the android.permission.PROCESS_OUTGOING_CALLS permission.
i saw a lot call recording apps that does not need that permission, is there another way to get the outgoing call Number without using the (not very much sympathetic) PROCESS_OUTGOING_CALLS permission?
thanx
			
			i am using this code to get the outgoing call number (via a service)
			
				B4X:
			
		
		
		 If startingIntent.Action = "android.intent.action.NEW_OUTGOING_CALL" Then
      If startingIntent.HasExtra("android.intent.extra.PHONE_NUMBER") Then
         Dim myphone As String
         myphone = startingIntent.GetExtra("android.intent.extra.PHONE_NUMBER")
    
         Log(myphone)       
       
      End If
   End Ifthe problem is that this code needs the android.permission.PROCESS_OUTGOING_CALLS permission.
i saw a lot call recording apps that does not need that permission, is there another way to get the outgoing call Number without using the (not very much sympathetic) PROCESS_OUTGOING_CALLS permission?
thanx
 
				 
 
		 
 
		 
 
		 
 
		 
 
		