Has anyone tried implementing Amazon's GameCircle into their Kindle Fire app?
I can't get it pass the initialization stage:
EnumSet<AmazonGamesFeature> myGameFeatures = EnumSet.of(AmazonGamesFeature.Leaderboards);
onCreate:
AmazonGamesClient.initialize(getApplication(), new AmazonGamesCallback()
{
@Override
public void onServiceReady()
{
}
@Override
public void onServiceNotReady(AmazonGamesStatus reason)
{
switch (reason)
{
case CANNOT_BIND:
Log.d(Globals.sApplicationName, "onCreate: CANNOT_BIND");
break;
case CANNOT_AUTHORIZE:
Log.d(Globals.sApplicationName, "onCreate: CANNOT_AUTHORIZE");
break;
case NOT_AUTHORIZED:
Log.d(Globals.sApplicationName, "onCreate: NOT_AUTHORIZED");
break;
case NOT_AUTHENTICATED:
Log.d(Globals.sApplicationName, "onCreate: NOT_AUTHENTICATED");
break;
}
}
}, myGameFeatures);
I get these errors when running the game:
07-31 15:45:39.609: E/AGC_ServiceProxy(970): Amazon Games Service is not available
07-31 15:45:39.609: D/AGC_ServiceProxy(970): Changing Status from:INITIALIZING to: CANNOT_BIND
07-31 15:45:39.619: E/GC_AmazonGamesClient(970): Failed to enable softkey button: android.content.pm.PackageManager$NameNotFoundException: com.amazon.ags.app
Any help will be appreciated. Thank you.