1

我们有一个将图像打印到蓝牙打印机的应用程序。此应用程序在 Android 4.0 ICS 上运行良好,但当我们将其中一个升级到 Android 4.1 果冻豆时,在 logcat 中打印停止工作:

W/System.err(19319): java.lang.SecurityException: Permission Denial: 从 pid=19319, uid=10106 写入 com.android.bluetooth.opp.BluetoothOppProvider uri content://com.android.bluetooth.opp/btopp需要 android.permission.ACCESS_BLUETOOTH_SHARE 或 grantUriPermission()

问题是我们声明了这个权限,所以这个错误对我们来说毫无意义。这是我们清单中的行

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.turner.itstrategy.LumenboxClient"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="11" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
    <uses-permission android:name="android.permission.ACCESS_BLUETOOTH_SHARE"/>
    <uses-permission android:name="android.permission.BLUETOOTH"/>
    <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
    <uses-permission android:name="android.permission.VIBRATE" />

     (stuff removed)
</manifest>

这是我们用来打印的代码。此代码取自 stackoverflow 和其他地方的示例。

ContentValues values = new ContentValues();

String path = Environment.getExternalStorageDirectory().toString();
File imageFile = new File(path, "CurrentLumenboxPrint.jpg");

//build the message to send on BT
values.put(BluetoothShare.URI, Uri.fromFile(imageFile).toString());
values.put(BluetoothShare.MIMETYPE, "image/jpeg");
values.put(BluetoothShare.DESTINATION, device.getAddress());
values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_OUTBOUND);
Long ts = System.currentTimeMillis();
values.put(BluetoothShare.TIMESTAMP, ts);

// Here is where the exception happens      
final Uri contentUri = getApplicationContext().getContentResolver().insert(BluetoothShare.CONTENT_URI, values);

现在我们已经死在水中了..任何建议表示赞赏。

4

1 回答 1

6

发现这将不再适用于 4.1。直接写入内容提供者的权限现在受到“签名”的保护,这意味着您必须使用用于签署蓝牙应用程序的相同密钥来签署您的应用程序。

所以这就是我们最终如何做到的。首先使用分享意图将其直接发送到应用程序:

Intent sharingIntent = new Intent(android.content.Intent.ACTION_SEND);
sharingIntent.setType("image/jpeg");
sharingIntent.setComponent(new ComponentName("com.android.bluetooth", "com.android.bluetooth.opp.BluetoothOppLauncherActivity"));
sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(imageFile));
startActivity(sharingIntent);

这有效,但它会弹出“选择设备”用户界面。如果您不想这样做,则必须处理意图android.bluetooth.devicepicker.action.LAUNCH并使用广播消息进行响应android.bluetooth.devicepicker.action.DEVICE_SELECTED。但是用户仍然可以获得选择器弹出窗口。

更新:我写了一篇博客文章,完整地描述了如何做到这一点。

于 2012-09-16T12:43:03.043 回答