PhoneGap 支持应用内购买吗?

发布于 2024-11-02 03:21:18 字数 278 浏览 1 评论 0原文

有人使用 David Orchard 的 fork 通过 PhoneGap 进行应用内购买吗?已经有一年多没有更新了。根据这个线程城市飞艇不能还帮忙。

Has anyone used David Orchard's fork for in-app purchases with PhoneGap? It hasn't been updated in over a year. According to this thread Urban Airship can't help yet.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

决绝 2024-11-09 03:21:18

啊!我只是需要再仔细看看,这个 PhoneGap 插件应该可以完美工作。我将在这里评论它与城市飞艇的配合情况。

https://github.com/phonegap/phonegap-plugins/tree/主/iOS/InAppPurchaseManager

Ah! I just needed to look a bit harder, this PhoneGap plugin should work perfectly. I'll comment here how well it works with Urban Airship.

https://github.com/phonegap/phonegap-plugins/tree/master/iOS/InAppPurchaseManager

溇涏 2024-11-09 03:21:18

daniellmb 建议的 phonegap 插件效果很好。请记住

  1. InAppPurchaseManager.h 中的以下内容

    CORDOVA_FRAMEWORK,删除与其相关的所有代码。您将遇到在 inAppPurchaseManager.h 中找不到的“CDVPlugin.h”文件,这就是导入的样子

    #import ;
    #import 
    
  2. 如果您收到错误插件“InAppPurchaseManager”未找到,或者不是 CDVPlugin。检查 Cordova.plist 中的插件映射。您必须将以下内容添加到 Cordova.plist

    InAppPurchaseManager;
    <字符串>InAppPurchaseManager
    

The phonegap plugin suggested by daniellmb works well. Please keep the following in mind

  1. CORDOVA_FRAMEWORK in InAppPurchaseManager.h, remove all the code around that. You will run into 'CDVPlugin.h' file not found in inAppPurchaseManager.h, this is how both import should look

    #import <Cordova/CDVPlugin.h>
    #import <Cordova/NSData+Base64.h>
    
  2. If you get the errror Plugin 'InAppPurchaseManager' not found, or is not a CDVPlugin. Check your plugin mapping in Cordova.plist. You have to add the following to Cordova.plist

    <key>InAppPurchaseManager</key>
    <string>InAppPurchaseManager</string>
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文