2012-06-26 59 views
1

我正在開發一個我們想要限制訪問的移動應用程序。我正在使用Phonegap Build並在​​3210文件上設置配置。有一個名爲target-device(僅適用於iOS)的屬性,可以設置爲handset,tabletuniversal,並且應該根據設備阻止應用程序的安裝。限制App Store上的移動應用程序

將它設置爲handset允許應用程序在智能手機和平板電腦上運行,但這不是我想要的。這種行爲在App Store上是一樣的還是僅限於智能手機?

編輯:這個問題僅適用於iOS設備

+0

是您的項目包含AndroidManifest.xml文件,如果是的話,那麼你可以通過在 – rajpara

+0

給予支持屏幕上的數值限制你總是可以限制和過濾至極設備你不想使用Google Play開發者控制檯中的手動配置展示您的應用可用性。請查看:https://support.google.com/googleplay/android-developer/bin/answer.py?hl=zh_CN&ctx=go&answer=1286017 –

回答

2

我相信​​3210文件,你說的是對的PhoneGap構建,這是常規的PhoneGap(現Cordova)不同。

根據他們關於PhoneGap Build config.xml的文檔,它指出target-device設置僅適用於iOS版本,所以此設置不會用於您的Android版本。

https://build.phonegap.com/docs/config-xml

target-device with possible values handset, tablet, or universal 
    example: <preference name="target-device" value="universal" /> 
    please note that this currently only applies to iOS builds; by default all builds are universal 

我認爲最好的辦法是使用Eclipse,Android SDK中,等和PhoneGap的(Corvoda),而不是PhoneGap的建設服務,因爲它會給你的控制你要。有關安裝說明,請參閱:

http://docs.phonegap.com/en/1.8.1/guide_getting-started_android_index.md.html#Getting%20Started%20with%20Android

相關問題