本文介绍了如何将Google Play许可添加到使用Appcelerator创建的Android应用程序中?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Appcelerator创建了一个Android支付应用程序,并且我想在Google Play中发布。我需要添加Google Play许可。我已阅读,但我不知道如何改编Titanium Studio应用程序。
我尝试使用此模块



要允许授权,只需使用

 < uses-permission android:name =com.android.vending.CHECK_LICENSE/> 



避免

 错误:未找到请求的模块:com.sofisoftwarellc.licensing 

尝试清理构建应用程序并在安装
之前从设备(模拟器)中删除应用程序

I created an Android payment application with Appcelerator and I want to publish in google play. I need to add license Google Play. I have read the information in http://developer.android.com/intl/es/google/play/licensing/index.html but I don't know how to adapt this for a Titanium Studio app.I try use this module https://github.com/eric-sofisoftwarellc/TiLicensing but I haven't luck, it shows Error: Requested module not found: com.sofisoftwarellc.licensingDo you know a module for this? Does anyone know how to integrate it into an appcelerator app?Thank you.

解决方案

You can find how to add application to google play there

To allow licensing just use

<uses-permission android:name="com.android.vending.CHECK_LICENSE" />

and Licensing module for Appcelerator

To avoid

Error: Requested module not found: com.sofisoftwarellc.licensing

Try to clean build application and remove application from device(emulator) before installing

这篇关于如何将Google Play许可添加到使用Appcelerator创建的Android应用程序中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-24 00:45