Hey Ed,
Found a small issue with the documentation for your Easy Social. I could have worked it out if I had read the documentation more carefully, however I just copy, pasted and modified the example.
Your example shows;
if( onAndroid ) then ssk.social.rate( 'com.roaminggamer.sudoku4' ) -- Google Play ID elseif( oniOS ) then ssk.social.rate( '1150939979' ) -- iTunes Connect ID end
However is should be;
if( onAndroid ) then ssk.social.rate( {id = 'com.roaminggamer.sudoku4'} ) -- Google Play ID elseif( oniOS ) then ssk.social.rate( {id = '1150939979'} ) -- iTunes Connect ID end
Cheers,
Craig