English 中文(简体)
是否可能以国家为基础提供多笔APK支助?
原标题:Is it possible to have multiple APK support based on country?

我有一份免费和价格低的产品的申请,我需要为我的申请创建两台APK,并显示在那些支持该申请的国家支持“App Billing”的申请,并向另一个APK表示,同样的申请并不支持“App Billing”(它只有自由产品)在没有支持的国家。

我能否利用安的多市场支持特征来实现这一目标? 如果没有,除了提出单独申请外是否还有其他可行的建议?

最佳回答

Multiple APK feature AFAIK does not support filtering country at least in the current release. Check out Supported filters and Rules for multiple APKs for more details.

如果你将建造两座ks。 除了使用多功能的APK特征(即使它支持今后释放的过滤国家)之外,作为两种独立的申请(如果你可以不同,并为每个发展者设置可利用的国家)出版这些软件是比较简单和易于维持的。 用来避免重复使用密码的人通常使用安乐器项目。

如果你只想为所有案件建造和出版一张单张纸。 可行的解决办法可以是维持项目资源中支持的国家清单,并增加一些有条件的分支,使基于国家清单的账单能够/处分,同时承认用户在日常使用时会有一些国际统一分类的警告,例如:

if (isInSupportedCountryList()) {
  setInAppBillingOn();
} else {
  setInAppBillingOff();
}

如你所看到的那样,每当新国家得到谷歌的支持或消除时,这种需求(甚至没有必要)都会更新/公布。

问题回答

我认为最容易的是,只上载两个单独的申请,然后使用“设计选择”来选择你们希望有哪一个版本的国家。 然后,你可以逐个国家增加和取消申请。

“entergraph





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签