You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
var connectedPlayers = FBInstant.player.getConnectedPlayersAsync()
.then(function(players) {
console.log(players.map(function(player) {
return {
id: player.getID(),
name: player.getName(),
}
}));
});
I tried to import packages but didn't find FBInstant package it gives error
Use of unresolved identifier 'FBInstant' (error)
The text was updated successfully, but these errors were encountered:
sheikpunia1
changed the title
Not Able to import the FBInstant (Use of unresolved identifier 'FBInstant')
Not Able to import the FBInstant (Use of unresolved identifier 'FBInstant') Swift IOS
Oct 9, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I have added pod file's to my project
pod 'FBSDKShareKit'
pod 'FacebookSDK'
pod 'FBSDKCoreKit'
pod 'FBSDKLoginKit'
I want to use this function of FBInstant
var connectedPlayers = FBInstant.player.getConnectedPlayersAsync()
.then(function(players) {
console.log(players.map(function(player) {
return {
id: player.getID(),
name: player.getName(),
}
}));
});
I tried to import packages but didn't find FBInstant package it gives error
Use of unresolved identifier 'FBInstant' (error)
The text was updated successfully, but these errors were encountered: