我正在寻找摆脱警告的解决方案。我甚至不明白它出现的原因。我看了一个没有出现警告的SDK示例。
首先是我的清单,我收到警告导出的服务不需要许可:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="15" />
<uses-feature android:name="android.hardware.camera"
android:required="true" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS" />
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS" />
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.WRITE_SYNC_SETTINGS" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock">
<service
android:name=".AuthenticationService"
android:exported="true">
<intent-filter>
<action
android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
<activity
android:name=".Test"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
...
虽然Android SDK的 SampleSyncAdapter 有此清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.samplesync"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.USE_CREDENTIALS" />
<!-- ... -->
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="15" />
<application
android:icon="@drawable/icon"
android:label="@string/label">
<!-- The authenticator service -->
<service
android:name=".authenticator.AuthenticationService"
android:exported="true">
<intent-filter>
<action
android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
...
但没有警告。为什么我会收到警告?我使用Theme.Sherlock主题来使用 ActionBarSherlock 。但我无法想象这会导致错误。
答案 0 :(得分:68)
警告告诉您,您已经导出(即:公开发布)服务,但未获得许可。这使您的服务可以无限制地用于任何其他应用程序。见Exported service does not require permission: what does it mean?
如果您的服务不需要可供其他应用程序使用,则无需导出它。明确设置android:exported="false"
将删除警告。
注意:如果您提供了Intent过滤器,则android:exported
的默认值为true
。
答案 1 :(得分:4)
您需要为服务添加权限要求。你需要的是android.permission.ACCOUNT_MANAGER
。您的身份验证者只能通过经理访问。
答案 2 :(得分:1)
关于此问题,Android项目中已经存在使用“同步适配器”:https://code.google.com/p/android/issues/detail?id=37280创建有关此警告的错误,但它仍然是一个Open错误。