在模拟器和设备上测试应用内购买

时间:2020-05-25 22:15:06

标签: java android android-studio

我刚刚在我的应用程序中添加了应用程序购买功能,但是我在“运行”日志中收到此错误消息:

W / BillingClient:此设备不支持应用内结算API版本3。

为什么有任何想法?这是我在implementation 'com.android.billingclient:billing:2.2.1' 中实现的:

report_name = task_instance.xcom_pull(task_ids='task_1', key='report_key')
print('report name in email op : ',report_name)        
template="""Hello,<br><br>
Report is generated successfully <br><br>
File Names : {}<br><br>
Thanks & Regards,<br><br>
"""
t_email_success = email_operator.EmailOperator(
                task_id='t_email_success',
                to=user_email,
                cc='abc@sample.com',
                subject='This is sample of subject',
                html_content=template.format('<br>'.join(report_name.split(',')))
            )
t_email_success.execute(context=kwargs) 

0 个答案:

没有答案