JobService does not require android.permission.BIND_JOB_SERVICE permission

后端 未结 2 1362
清酒与你
清酒与你 2020-12-30 19:38

I am getting does not require android.permission.BIND_JOB_SERVICE permission error while scheduling my JobService and I already have the bind perm

相关标签:
2条回答
  • 2020-12-30 20:00

    To solve this problem:

    Scheduled service ComponentInfo{.........} does not require android.permission.BIND_JOB_SERVICE permission

    add the permission:

            android:permission="android.permission.BIND_JOB_SERVICE"
    

    but requires the property:

    android:exported="..."
    

    android:exported: Whether or not the broadcast receiver can receive messages from sources outside its application — "true" if it can, and "false" if not.

    For example:

        <service android:name="com.jorgesys.jobscheduler.MyService"
            android:permission="android.permission.BIND_JOB_SERVICE"
            android:exported="true"/>
    
    0 讨论(0)
  • 2020-12-30 20:08

    There's a typo in your Android Manifest.

    Just change the following line:

    android:permission="android:permission.BIND_JOB_SERVICE"
                               ^
                               |
                        This " : " is WRONG!
    

    to

    android:permission="android.permission.BIND_JOB_SERVICE"
    

    So just change : (colon) in to . (dot).

    0 讨论(0)
提交回复
热议问题