如何在我的Android应用程序中插入促销代码来购买物品?

时间:2016-10-31 12:31:01

标签: android google-play promotion-code

我已在我的应用中实施了InApp购买并且工作正常。现在想使用促销代码自由获取物品。

在文档中说:您的应用应该允许用户在应用内部兑换促销代码。如果您的应用支持应用内购买工作流程(在制作应用内结算请求中进行了描述),您的应用会自动支持应用内兑换促销代码。当您启动应用内购买用户界面时,用户可以选择使用促销代码为购买付款。 https://developer.android.com/google/play/billing/billing_promotions.html

But in my application there is not any option to select for promo code. There is only buy option. How can user insert promo code inside app?

来自PlayStore应用的这些图片。有Redeem对话框看起来像peyment对话框。可以按照本文所述和以下图像从Play商店应用程序打开它。我可以插入我的促销代码,然后它就可以了。 http://www.greenbot.com/article/3043048/android/how-to-redeem-a-google-play-store-promo-code.html
enter image description here Redeem dialog

3 个答案:

答案 0 :(得分:4)

在此SO您找到的解决方案中

调整代码

# app/models/routine.rb
class Routine < ActiveRecord::Base
  has_and_belongs_to_many :exercises
end

# app/models/exercise.rb
class Exercise < ActiveRecord::Base
  has_and_belongs_to_many :routines
end

# db/migrate/1213123123123_create_exercises_routines_join_table.rb
class CreateExercisesRoutinesJoinTable < ActiveRecord::Migration
  def self.change
    create_table :exercises_routines, :id => false do |t|
      t.integer :exercise_id
      t.integer :routine_id
      t.index [:category_id, :routine_id]
    end
  end
end

答案 1 :(得分:0)

我认为您需要在自己的应用中实施应用内促销。

请查看文档here,标题为支持您应用中的促销代码

答案 2 :(得分:-1)

当用户点击购买按钮时,在付款方式列表中,存在兑换促销代码的选项,您可以向您的用户发送代码,他可以使用付款流程中的此付款方式兑换它可以将其加入Play商店并点击兑换,您的用户应该插入促销代码并按照步骤进行兑换