There is a standard contact database on an Android device, I want to add more contacts to it. I open this database using SQL Lite and execute the insert:
insert into raw_contacts (display_name, display_name_alt, sort_key_alt,sync1) values (89000000000,89000000000,89000000000,89000000000); After that, a new line appears in raw_contacts when transferring the base back to the phone in the contacts of the new contact is not displayed. What am I doing wrong?