We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Следуя документации https://static2.tinkoff.ru/acquiring/manuals/android_sdk.pdf
Конструктор
GooglePayParams params = new GooglePayParams() .setMerchantName(getString(R.string.merchant_name)) .setAddressRequired(false) .setPhoneRequired(false) .setTheme(WalletConstants.THEME_LIGHT) .setEnvironment(WalletConstants.ENVIRONMENT_TEST) .build();
ругается, что GooglePayParams() имеет приватный доступ
The text was updated successfully, but these errors were encountered:
Добрый день. Ошибка в документации. Попробуйте new GooglePayParams.Builder()вместо new GooglePayParams()
new GooglePayParams.Builder()
new GooglePayParams()
Sorry, something went wrong.
No branches or pull requests
Следуя документации
https://static2.tinkoff.ru/acquiring/manuals/android_sdk.pdf
Конструктор
GooglePayParams params = new GooglePayParams()
.setMerchantName(getString(R.string.merchant_name))
.setAddressRequired(false)
.setPhoneRequired(false)
.setTheme(WalletConstants.THEME_LIGHT)
.setEnvironment(WalletConstants.ENVIRONMENT_TEST)
.build();
ругается, что GooglePayParams() имеет приватный доступ
The text was updated successfully, but these errors were encountered: