I watched your video on DropBox. As a windows users I can’t hook my phone to the simulator.
You may want to point out that nothing is going to happen when it is working. I was expecting at least a native pop when I tested on my phone. Nothing.
After watching your video I added this
native.showAlert("Contacts", json.prettify(event) , { "OK" })
to
local function Button1Event( event )
Nice pop showing my contact list.
Great Job Scott!
local function Button1Event( event ) if ( "ended" == event.phase ) then contacts.get(function(event) native.showAlert("Contacts", json.prettify(event) , { "OK" }) --native.showAlert( "Status", tostring(event.status) , { "OK" }) if event.status == "success" then -- native.showAlert( "Contacts", tostring(event.contacts) , { "OK" }) end end) end end