Android 壁纸设置的权限拒绝启动 Intent
Android Permission Denial starting Intent for Wallpaper Settings
不幸的是,当我尝试 运行 我的墙纸时,我收到一条错误消息,说 Permission Denial starting Intent
并且需要 android.permission.BIND_WALLPAPER
,但我似乎无法弄清楚为什么。我的清单如下所示:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.package">
<uses-feature android:name="android.software.live_wallpaper" />
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<application
android:exported="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:permission="android.permission.BIND_WALLPAPER">
<service
android:name="WallpaperService"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>
<meta-data
android:name="android.service.wallpaper"
android:resource="@xml/livewallpaper" />
</service>
<activity
android:name=".WallpaperSetClass"
android:exported="true"
android:permission="android.permission.BIND_WALLPAPER"
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>
如果我通过 phone 的动态壁纸部分进行设置,动态壁纸会 运行 完美,但我也希望有一个设置区域,以便能够在其中打开我不能。
目前我的设置 class 基本上是空的,只包含一个 onCreate 函数和一个带有按钮的布局。
有什么我想念的吗?我似乎拥有 android:exported
的权限
原来我有
android:permission="android.permission.BIND_WALLPAPER"
发错地方了,应该在service tag里,而且只有一个,多个就坏了。
不幸的是,当我尝试 运行 我的墙纸时,我收到一条错误消息,说 Permission Denial starting Intent
并且需要 android.permission.BIND_WALLPAPER
,但我似乎无法弄清楚为什么。我的清单如下所示:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.package">
<uses-feature android:name="android.software.live_wallpaper" />
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<application
android:exported="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:permission="android.permission.BIND_WALLPAPER">
<service
android:name="WallpaperService"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:permission="android.permission.BIND_WALLPAPER">
<intent-filter>
<action android:name="android.service.wallpaper.WallpaperService" />
</intent-filter>
<meta-data
android:name="android.service.wallpaper"
android:resource="@xml/livewallpaper" />
</service>
<activity
android:name=".WallpaperSetClass"
android:exported="true"
android:permission="android.permission.BIND_WALLPAPER"
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>
如果我通过 phone 的动态壁纸部分进行设置,动态壁纸会 运行 完美,但我也希望有一个设置区域,以便能够在其中打开我不能。 目前我的设置 class 基本上是空的,只包含一个 onCreate 函数和一个带有按钮的布局。
有什么我想念的吗?我似乎拥有 android:exported
原来我有
android:permission="android.permission.BIND_WALLPAPER"
发错地方了,应该在service tag里,而且只有一个,多个就坏了。