hi all,
i use the following code now :
local my\_fb\_id = 111111111111 local my\_urlfb = "mypage" if ( system.canOpenURL( "fb://profile/" .. my\_fb\_id ) ) then system.openURL( "fb://profile/"..my\_fb\_id ) -- open in webapp else system.openURL(my\_urlfb) -- open in browser end
and i have modify my build.settings like that :
settings = { iphone = { plist = { LSApplicationQueriesSchemes = { "fb" }, }, }, }
now, it works perfectly on ios, but NOT on android… grrrrr… blank page… any idea ?