type 'Null' is not a subtype of type 'List<String>' in type cast
Rizardomon opened this issue · 3 comments
Rizardomon commented
yg271828 commented
workaround, that works for me:
add
'additionalPermissions': ['']
in 'android' section
yg271828 commented
android section in your calkeep setup:
final _callSetup = <String, dynamic>{
'ios': {
'appName': 'My app',
},
'android': {
'alertTitle': 'Permissions required',
'alertDescription':
'This application needs to access your phone accounts',
'cancelButton': 'Cancel',
'okButton': 'ok',
// Required to get audio in background when using Android 11
'foregroundService': {
'channelId': com.company.my',
'channelName': 'Foreground service for my app',
'notificationTitle': 'My app is running on background',
'notificationIcon': 'mipmap/ic_notification_launcher',
},
'additionalPermissions': [''],
},
};
Rizardomon commented
Thanks man, i tried here and works just fine!!