其他分享
首页 > 其他分享> > 使用Samsung Galaxy Tab附加组件将如何影响/限制我的Android Market部署?

使用Samsung Galaxy Tab附加组件将如何影响/限制我的Android Market部署?

作者:互联网

我已经针对here所提到的插件提供的新构建目标运行了android应用.这在模拟器中似乎可以正常工作,但是现在我不确定在将应用交付给您时使用此构建目标的含义.市场.

>看来我必须使用此构建目标才能使模拟器正常工作.一般来说,这是对的吗? (即)我可以根据标准的android / google API构建并使其在实际的Galaxy Tab上正确运行吗?
>如果我将具有此构建目标的应用程序部署到Android市场,这是否会对已经运行的其他(较小屏幕)设备产生不利影响? (即,“ Galaxy Tab”“特殊调味料”是Android功能的超集吗?我看到关于Google API不适用于地图的抱怨,等等)
>市场上是否必须有两个版本的我的应用程序?一种用于“标准”设备,另一种用于“大”屏幕设备?特别适合Galaxy Tab吗?
>当Android Tablet vNext(无论是哪种版本)问世并具有自己的自定义加载项和构建目标时,我是否必须克隆我的存储库并发布/维护该版本的设备特定版本(假定所有加载项都是特殊的)星系标签的调味料将不在vNext的附件中,并且不会“兼容”)

我要解决的问题是,我找不到可靠的文档来证明这样的加载项将如何影响我的应用程序部署和维护的分散性.我希望能够支持新的Android设备(例如Galaxy Tab),但我不想构建大量的一次性设备特定的应用程序实现.能够在一个设备范围内运行一个应用程序不是很重要吗?

预先感谢您对情况的任何见解.

解决方法:

It would appear that I have to use
this build target to get the
emulator to work. Is this true of
the device in general? (i.e.) could
I build against the standard
android/google APIs and have it run
correctly on the actual Galaxy Tab?

这不是必需的.毕竟,大多数市场应用程序在“银河”选项卡上运行都很好.唯一的问题似乎是GT模拟器没有安装Google API,尽管实际设备确实安装了AFAIR.但是我可能想在回到办公室后立即进行检查.

If I deploy an app with this build
target to the Android market, will
this adversely affect other (smaller
screen) devices that I already run
on? (I.e. is the galaxy tab “special
sauce” a superset of Android
functionality? I see grumbles about
the Google APIs for maps not working
in it, etc.)

好吧,我不这么认为,但是无论如何您都应该使用常规的构建目标之一. GT插件仅通过指定API版本和设备参数即可为您提供帮助,并且不会涉及任何特殊问题.

Will i have to have two versions of
my app in the market? One for
“standard” devices and one for
“large” screen devices? One for the
Galaxy Tab specifically?

不,您不需要.实际上,您无需更改应用程序中的任何内容即可使其在GT上正常运行,因为Android可以处理大部分繁重的工作. Android仍无法帮助您为平板电脑提供不同的布局,因为尚未正式支持它们.但是通过查看屏幕的大小和密度,您仍然可以选择手动进行操作.

When Android Tablet vNext (whatever
that may be) comes out and has its
own custom add-on and build target,
will I have to clone my repository
and publish/maintain a device
specific version of that (presuming
that any add-on special sauce for
the galaxy tab will not be in
vNext’s add on and will not be
“compatible”)

简单地说,不.未来,平板电脑很可能会直接受到Android的支持,并且,如果当前的状况表明一切,它将提供多种方法来帮助您将应用程序也应用到各种平板电脑设备中,而无需进行分叉您的代码.

标签:add-on,google-play,tablet,android
来源: https://codeday.me/bug/20191209/2095581.html