如何阻止我的应用程序通过蓝牙共享?
如何确保我的 Android 应用程序不可通过蓝牙共享?
使用允许用户通过蓝牙共享文件、应用程序等的应用程序(即来自 Android 市场的免费蓝牙文件传输),我已成功地将我的应用程序从一部手机传输到另一部手机。
我已经研究过使用 Android 的权限来禁止蓝牙传输,但没有任何效果。
有什么想法吗?
How can I ensure that my Android application is not shareable via Bluetooth?
Using applications which allow users to share files, apps, etc., via Bluetooth (ie, free Bluetooth File Transfer from the Android Market), I have successfully transferred my application from one phone to another.
I've looked into forbidding Bluetooth transfer using Android's permissions, but nothing came even close.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认情况下,在未 root 的 Android 手机上,所有应用无法共享到其他设备,除非某些应用不实现此功能。另一方面,如果手机已 root,则没有简单的方法可以阻止
.apk
文件被复制到另一台设备。所以,我认为你不应该为此烦恼。
By default, on non-rooted Android phones all apps can't be shared to other devices, unless some app doesn't implemet this functionality. On the other hand, if phone is rooted, there is no easy way to prevent
.apk
file from beeing copied to another device.So, I think you shouldn't bother about this.