Мне нужна дата создания контакта в телефонной книге iOS в React Native.
Я попробовал код в моделировании с пакетом React-native-contacts и получаю данные ниже , но я не получаю дату создания в ответе ниже
"[
{
""id"": ""1"",
""displayName"": ""John Doe"",
""givenName"": ""John"",
""familyName"": ""Doe"",
""phoneNumbers"": [
{
""label"": ""mobile"",
""number"": ""+1234567890""
},
{
""label"": ""home"",
""number"": ""+0987654321""
}
],
""emailAddresses"": [
{
""label"": ""work"",
""email"": ""john.doe@example.com""
},
{
""label"": ""home"",
""email"": ""johndoe@personal.com""
}
],
""birthday"": ""1990-01-01"",
""addresses"": [
{
""label"": ""home"",
""street"": ""123 Main St"",
""city"": ""Anytown"",
""region"": ""CA"",
""postcode"": ""12345"",
""country"": ""USA""
}
],
""organization"": {
""company"": ""Example Corp"",
""jobTitle"": ""Developer"",
""department"": ""Engineering""
},
""note"": ""Met at conference"",
""profilePicture"": ""https://example.com/johndoe.jpg""
}
]"
Подробнее здесь: https://stackoverflow.com/questions/787 ... act-native