Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 android studio 上开发了一个小型应用程序(视频播放器)我的问题和以下“我怎样才能使应用程序只能在 android tv 和 android box 上执行?” 谢谢
要限制设备兼容性,请确保清单中包含以下内容:
<uses-feature android:name="android.software.leanback" android:required="true" />
这会将其限制为 Android TV 设备,然后您可以根据需要从那里手动限制。