Debasish Gracias
Debasish Gracias
I was also looking for this. @seanghay did you find answer to this?
> > I was also looking for this. @seanghay did you find answer to this? > > No, I haven't. I ended up using the current one. ok. Thanks!
Im also facing this issue in android. Has this been fixed? Please let us know.
Hi @leekelleher @CarlSargunar I am facing the same issue in contentment v4.4.5. Just checking if this has been resolved?
@LeonSweden did you find a solution to this? even im facing the same issue. Please help!
I was able to get it working by using the below code while registering for a foreground service: ``` String NOTIFICATION_CHANNEL_ID = "com.test.testapp"; String channelName = "test app service"; NotificationChannel...
I'm also facing the same issue.Any update on this? @kurtlmartin
I got it working in Android.This is what I did. **MainActivity.cs** ``` protected override void OnActivityResult(int requestCode, Result resultCode, Intent data) { byte[] array = null; base.OnActivityResult(requestCode, resultCode, data); if...
1. Check if your MultiMediaPickerService class is public.It should be public and not private. 2. I am not using ViewModel concept.I'm doing everything in code behind.
Here is my code **UploadPicture.xaml.cs** ``` private async void Gallery_Tapped(object sender, EventArgs e) { try { MessagingCenter.Unsubscribe(this, "Multiplesel"); MessagingCenter.Subscribe(this, "Multiplesel", (sender1, arg) => { //manipulate the args }); await DependencyService.Get().PickPhotosAsync();...