【问题标题】:Permission issue while starting a service from android从android启动服务时的权限问题
【发布时间】:2012-07-10 09:51:43
【问题描述】:

我已经编写了一个服务作为应用程序的一部分。我尝试使用以下代码从第二个应用程序调用此服务:

    Intent intent = new Intent () ;
    intent.setClassName("com.test" ,"com.test.DownloadService") ;
    // Create a new Messenger for the communication back
    Messenger messenger = new Messenger(handler);
    intent.putExtra("MESSENGER", messenger);
    intent.setData(Uri.parse("http://www.vogella.com/index.html"));
    intent.putExtra("urlpath", "http://www.vogella.com/index.html");
    this.startService(intent);

它给出了以下异常

07-10 09:27:28.819: ERROR/AndroidRuntime(4226): FATAL EXCEPTION: main
    java.lang.RuntimeException: Unable to start activity ComponentInfo{com.inject/com.inject.MyActivity}: java.lang.SecurityException: Not allowed to start service Intent { dat=http://www.vogella.com/index.html cmp=com.test/.DownloadService (has extras) } without permission not exported from uid 10109
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1971)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1996)
    at android.app.ActivityThread.access$700(ActivityThread.java:126)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1156)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:137)
    at android.app.ActivityThread.main(ActivityThread.java:4458)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:511)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
    at dalvik.system.NativeStart.main(Native Method)
    Caused by: java.lang.SecurityException: Not allowed to start service Intent { dat=http://www.vogella.com/index.html cmp=com.test/.DownloadService (has extras) } without permission not exported from uid 10109
    at android.app.ContextImpl.startService(ContextImpl.java:1122)
    at android.content.ContextWrapper.startService(ContextWrapper.java:359)
    at com.inject.MyActivity.onCreate(MyActivity.java:28)
    at android.app.Activity.performCreate(Activity.java:4465)
    at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
    at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1935)
    ... 11 more

为什么会出现这个权限问题?

当我从同一个应用程序调用服务时,以下代码完美运行:

    Intent intent = new Intent(this, DownloadService.class);
    // Create a new Messenger for the communication back
    Messenger messenger = new Messenger(handler);
    intent.putExtra("MESSENGER", messenger);
    intent.setData(Uri.parse("http://www.vogella.com/index.html"));
    intent.putExtra("urlpath", "http://www.vogella.com/index.html");
    startService(intent);

尽管我已在 App2 的清单中提供了所有必需的权限,但有人可以告诉我为什么当我从不同的应用程序调用服务时会出现此权限问题。

编辑

App2 的清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.inject"
      android:versionCode="1"
      android:versionName="1.0">
<uses-sdk android:minSdkVersion="14"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
    <activity android:name="MyActivity"
              android:label="@string/app_name">
        <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>
    </activity>
</application>
</manifest>

包含服务的 App1 的清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.test"
      android:versionCode="1"
      android:versionName="1.0">
<uses-sdk android:minSdkVersion="14"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name" >
    <activity
            android:name=".MainActivity"
            android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />


        </intent-filter>
    </activity>

    <service android:name="DownloadService" >
    </service>
</application>
</manifest>

【问题讨论】:

  • 您的清单中似乎缺少某些内容。添加两个应用的清单。
  • 您的两个应用程序的 uID 不同..

标签: android android-intent android-service android-permissions


【解决方案1】:

该服务对其他应用程序不可用,因为您尚未明确使其可用。您的服务需要这样定义:

<service android:name="DownloadService"
         android:exported="true">
</service>

您不需要任何额外的权限(除非您想使用它们)

【讨论】:

    【解决方案2】:

    你读过documentation吗?这个问题很清楚:

    当一个服务在它的 清单的标签。通过这样做,其他应用程序将需要 自己声明一个对应的元素 清单以便能够启动、停止或绑定到服务。

    从 GINGERBREAD 开始,使用 Context.startService(Intent) 时,您可以 还设置 Intent.FLAG_GRANT_READ_URI_PERMISSION 和/或 Intent.FLAG_GRANT_WRITE_URI_PERMISSION 在 Intent 上。这将授予 Service 临时访问 Intent 中的特定 URI。 访问将一直保持,直到服务为此调用 stopSelf(int) 启动命令或以后的命令,或直到服务完全 停了下来。这适用于授予对具有 未请求保护服务的许可,甚至当 服务根本没有导出。

    此外,服务可以通过以下方式保护对它的单个 IPC 调用 权限,通过调用 checkCallingPermission(String) 方法 在执行该调用之前。

    有关更多信息,请参阅安全和权限文档 权限和安全性。

    如果您在阅读文档后仍有权限问题,请向我们展示您的 AndroidManifest.xml。另请参阅清单中服务的 exported and the permission 属性。

    【讨论】:

    • 我尝试添加intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); intent.addFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);,但仍然无法解决问题并给出相同的异常
    猜你喜欢
    • 2014-09-23
    • 1970-01-01
    • 2017-03-23
    • 2011-10-16
    • 2016-09-30
    • 1970-01-01
    • 2011-05-17
    • 1970-01-01
    • 2018-01-24
    相关资源
    最近更新 更多