Shows toast message if there is error while purchasing.

This commit is contained in:
Timo Reunanen 2014-06-03 13:41:52 +03:00
Родитель 07af0460d4
Коммит 7c9d9f54fd
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -65,7 +65,11 @@ public class PaymentOneAPKActivity extends Activity implements ServiceConnection
Log.d(TAG, String.format("requestCode = %d", requestCode));
Log.d(TAG, String.format("resultCode = %d", resultCode));
toastMessage("Item purchased");
if (resultCode == RESULT_OK) {
toastMessage("Item purchased");
} else {
toastMessage("Error while purchasing product");
}
consumeTestProduct();
}