User's AllMessages is gone in latest preview of the sdk - microsoft-graph-api

Also Users[{id}].Chats.AllMessages() is gone on 0.30.0-preview
when using 0.29 it's there..
Was it moved?

It was removed on 0.30 preview and added back on 0.31
https://github.com/microsoftgraph/msgraph-beta-sdk-dotnet/issues/184

Related

cdk-virtual-scroll-viewport not working on iOS 15.3 and below Angular 14

Description
After upgrading my Angular application from version 13 to 14, I have noticed that the cdk-virtual-scroll-viewport component no longer works on iOS devices running version 15.3 or earlier. The virtual scrolling feature is not functioning correctly, and the scrolledIndexChange event is not updating as expected. Additionally, the scrollToIndex function is not working on iOS 15.3 or earlier when using Angular 14, although it worked when using Angular 13.
Steps to reproduce
To reproduce the issue:
Create an Angular application with version 14.
Implement the cdk-virtual-scroll-viewport component in the application.
Test the application on an iOS device running version 15.3 or earlier.
Observe that the virtual scrolling functionality is not working correctly, and the scrolledIndexChange event is not updating as expected.
Expected behavior
The cdk-virtual-scroll-viewport component should allow for virtual scrolling on all devices, including iOS devices running version 15.3 or earlier. The scrolledIndexChange event should update correctly as the user scrolls, and the scrollToIndex function should work as expected.
Actual behavior
On iOS devices running version 15.3 or earlier, the virtual scrolling feature is not functioning correctly in the Angular 14 application. The scrolledIndexChange event is not updating, and the scrollToIndex function is not working.
Relevant code
Here is a code sample that I am currently using, which has not been modified since upgrading from Angular 13 to 14:
<cdk-virtual-scroll-viewport #viewPort class="vscroll" *ngIf="categories"
(scrolledIndexChange)="scrolled($event)" customVirtualScrollStrategy [itemHeights]='rowHeights'
[headerHeight]="recommendationHeight">
<section [ngStyle]="{'height.px': rowHeights[i]}"
*cdkVirtualFor="let cat of categories; templateCacheSize: 3; let i = index">
<h1>{{cat.name}}</h1>
</section>
</cdk-virtual-scroll-viewport>
Additional information
I have already attempted to update the #angular/cdk package to the latest version, but the issue persists. I have also checked the documentation and issue tracker for the cdk-virtual-scroll component, but could not find any known issues or workarounds specifically related to iOS 15.3 or earlier. Any assistance with resolving this issue would be greatly appreciated.
Thank you in advance!

Photo-library plugin crash in ios version 13

Reposted: question link
app crashes when the user wants to fetch images from the library in ionic 3.
image picker plugin works fine in iOS 12. But after updating to iOS 13, it is crashing.
it is working in iPhone X but when trying it on iPad it's getting the error which is in the link given above.
can anyone help with this? Thanks in advance!
Just add property in ImagePicker options:
disable_popover: true
It will solve the crashing issue.But the error still would be there in logs!
Happy coding!!!

[Firestore][I-FST000001] Could not reach Firestore backend

I have configured Firebase/Firestore, but Firestore return this error ever:
[Firestore][I-FST000001] Could not reach Firestore backend.
I'm using Swift 4 and Xcode 9. Any idea?
Update 10th March 2018 - thanks to richardfrk
This issue has now been fixed in Firebase SDK 4.10.1
Unfortunately I experienced this bug yesterday for Firebase SDK 4.10.0 and have reported it directly to one of the Firebase engineers working on the iOS SDK. For me, I only had this error when the user is not authenticated. As soon as the user is authenticated, the problem went away.
For now, I'd recommend sticking with Firebase SDK 4.9.0 until they fix it in the next update.

AddressBook not working in iOS9

Recently I have downloaded Xcode beta4 for giving support to iOS 9 in myApp.Now the address book is not working its show blank screen when I select a contact, with following logs.
plugin com.apple.MobileAddressBook.ContactsViewService interrupted
plugin com.apple.MobileAddressBook.ContactsViewService invalidated
I have implemented all major delegate of ABPeoplePicker and put break points its not going in any of them.
Thanks in advance.
UPDATE
This issue has been solved by Apple since Xcode 7 GM , I have confirmed that it works.
ABPeoplePickerNavigationController no longer works on iOS9,
Apple created new library/framework for Contacts in iOS9 ( https://developer.apple.com/library/prerelease/ios/documentation/Contacts/Reference/Contacts_Framework/index.html )
even if application is compiled/built with older Xcode (6) it still behaves like that, in Beta 2 it crashed , in beta 3 it shows black screen,
Apples sample project ( https://developer.apple.com/library/prerelease/ios/samplecode/PeoplePicker/Introduction/Intro.html ) also has the same issue/behavior.
I have opened an issue at bugreport.apple.com ( id - 22001958 ) , saying that it should at least behave like older iOS versions

localStorage cleared on app restart with Cordova 1.7 and iOS 5.1.1

From my extensive reading, the iOS 5.1 localStorage/WebSQL behavior change that Apple instituted has been fully rolled into Cordova 1.6.0.
However, while running on my (new) application on Cordova 1.7.0 and iOS 5.1.1, I am still seeing ugly, incorrect behavior.
I use window.localStorage to store and retrieve data. E.g.
window.localStorage.getItem("activeFormId")
window.localStorage.setItem("activeFormId", formId);
These work flawlessly during the same session of the Cordova-based app. If I background the app with the main iOS button then resume, that usually works as well.
However, the moment I kill the application (double-tap, long-press, tap the red circle) and relaunch, all localStorage data is lost. I have verified this with jsconsole.com as well.
Are there additional steps I need to take to ensure the persistence bug fixes are working? Any help is greatly appreciated.
Try using 1.7 - I had a similar issue and once I upgraded to 1.7 everything worked like it used to.
Try using localStorage vs window.localStorage syntax.
Also set what ever you're trying to call as a global variable...
var globalVar;
function onDeviceReady(){
globalVar = localStorage.getItem('something');
}

Resources