-1

We planning to develop an app for Bussiness platform, there is 2 features that we consider if it's allow to have in app

  1. Show Customer information in incoming call only customer exists in app DB (create by User and not collecting for any other purposes)
  2. Read sms message from Bank in white list (create by User) to progress automatically payment process

anyone have experience on this please help me thank

  • It is better to split questions like this into two separate questions, one for each platform. On iOS you can create a callkit directory extension. This allows your app to share a list of numbers and names with iOS to be displayed on incoming calls. Your app cannot have access to incoming call details directly. There is no way to access incoming text messages – Paulw11 Apr 05 '22 at 06:53
  • that's mean very few information can be show to User when incoming call appear? – Bin Nguyen Apr 06 '22 at 05:41
  • Correct. You can provide a name that will be displayed along with the information that the name came from your app – Paulw11 Apr 06 '22 at 05:54

1 Answers1

0

According to Android platform:

  1. You can read contacts from phone db, but you'll need special permission (permission.READ_CONTACTS) using Content Provider. You can read more here.
  2. Same for SMS. You can check it here.
Areyana
  • 373
  • 4
  • 17
  • maybe you misunderstand my point is show my-own infomation in app instead of using phone contact when incoming call appear – Bin Nguyen Apr 06 '22 at 05:39