USB通过android中的服务打开附件权限

时间:2012-07-02 06:37:53

标签: android

美好的一天,

我有一个应用程序通过服务将我的Android设备连接到arduino设备。我已设法建立连接,但每当我插上它时,它一直要求我允许使用配件。有没有办法绕过这个权限?如果我通过活动执行它,它与intent过滤器完美配合,我尝试在服务中应用相同的意图但它似乎不起作用:/。

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="blink.service"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="10" />
    <uses-feature android:name="android.hardware.usb.accessory" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
        <activity
            android:name=".ActivityCreate">
             <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <receiver android:name=".StartupIntent" >
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />
            </intent-filter>
        </receiver>

        <service 
            android:name=".MainService"
            android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED" />
            </intent-filter>
            <meta-data android:name="android.hardware.usb.action.USB_ACCESSORY_ATTACHED"
                android:resource="@xml/accessory_filter" />
        </service>
        <uses-library android:name="com.android.future.usb.accessory"/>

    </application>



</manifest>

以下是我的清单中的代码。 感谢名单

1 个答案:

答案 0 :(得分:2)

要绕过权限,您必须将您的应用设为系统应用。要使应用程序作为系统应用程序运行,您必须将apk放在system / app文件夹中。为此,我首先使用以下代码使用adb将系统驱动器重新安装为rw(读写):

adb remount rw
push "apk path" /system/app
adb remount ro

现在重启系统。 Android将不再请求许可。