- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
注意:这不是重复的,我在类似的 StackOverflow 问题中尝试了很多解决方案,但它们对我的情况不起作用。感谢您的帮助。
此崩溃似乎只发生在运行 Android 版本低于 6.0 的设备上。例如,它在运行 Android 5.1 版的 XT1032 上崩溃。在那种情况下,每当我调用此方法时,在我的 AppCompatActivity 的 onCreate 方法中,
AccountManager.get(this).addOnAccountsUpdatedListener(this, null, true);
它崩溃是因为它似乎没有所需的权限(我不知道为什么,因为它在 list 中)。我相信它并没有真正进入该方法,但由于 @RequiresPermission 行而在进入该方法时崩溃:
@RequiresPermission(GET_ACCOUNTS)
public void addOnAccountsUpdatedListener(final OnAccountsUpdateListener listener,
Handler handler, boolean updateImmediately) { ...
这是堆栈跟踪,加上一些更多的日志记录代码:
V/AccountManagerService: getAccounts: accountType null, caller's uid 10018, pid 23074
V/AccountManagerService: caller uid 10018 has android.permission.GET_ACCOUNTS
V/AccountManagerService: getAccounts: accountType null, caller's uid 10018, pid 23074
V/AccountManagerService: caller uid 10018 has android.permission.GET_ACCOUNTS
V/AccountManagerService: caller uid 10009 has android.permission.INTERACT_ACROSS_USERS
V/AccountManagerService: getAccounts: accountType com.google, caller's uid 10009, pid 1738
V/AccountManagerService: caller uid 10009 has android.permission.GET_ACCOUNTS
V/AccountManagerService: getAccounts: accountType null, caller's uid 10018, pid 23074
V/AccountManagerService: caller uid 10018 has android.permission.GET_ACCOUNTS
V/AccountManagerService: getAccounts: accountType null, caller's uid 10156, pid 13722
W/AccountManagerService: caller uid 10156 lacks any of android.permission.GET_ACCOUNTS
java.lang.RuntimeException: Unable to start activity ComponentInfo{MainActivity}: java.lang.SecurityException: caller uid 10156 lacks any of android.permission.GET_ACCOUNTS
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2325)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
at android.app.ActivityThread.access$800(ActivityThread.java:151)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:135)
at android.app.ActivityThread.main(ActivityThread.java:5254)
at java.lang.reflect.Method.invoke(Native Method)
at java.lang.reflect.Method.invoke(Method.java:372)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
Caused by: java.lang.SecurityException: caller uid 10156 lacks any of android.permission.GET_ACCOUNTS
at android.os.Parcel.readException(Parcel.java:1546)
at android.os.Parcel.readException(Parcel.java:1499)
at android.accounts.IAccountManager$Stub$Proxy.getAccounts(IAccountManager.java:728)
at android.accounts.AccountManager.getAccounts(AccountManager.java:407)
at android.accounts.AccountManager.addOnAccountsUpdatedListener(AccountManager.java:2372)
调用者 uid 是什么,为什么使用 uid 10156
而不是 10018
或 10009
哪些有权限?
我验证了我的 AuthenticationService 中的帐户类型字符串与 authenticator.xml 的 accountType 相同,并且它们都使用硬编码字符串(不是字符串资源)。
public class AuthenticationService extends Service {
public static final String ACCOUNT_TYPE = "com.mywebsite";
...
public static boolean createAccount(String username,...) {
AccountManager am = AccountManager.get(Application.getInstance());
Account account = new Account(username, ACCOUNT_TYPE);
还有我的验证器:
<account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="com.mywebsite"
android:icon="@mipmap/ic_launcher"
android:smallIcon="@mipmap/ic_launcher"
android:label="@string/app_name"
/>
我也有这个: <uses-permission android:name="android.permission.GET_ACCOUNTS" />
在<manifest>
标签,而不是 <application>
标签。 list :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mywebsite.android.department.departmentname” >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<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.WRITE_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.READ_SYNC_SETTINGS" />
<uses-permission android:name="android.permission.READ_CALENDAR" />
<uses-permission android:name="android.permission.WRITE_CALENDAR" />
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
<uses-permission android:name="android.permission.READ_LOGS"/>
<application
android:name=".Application"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name”>
<service android:name=".auth.AuthenticationService" >
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data
android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator" />
</service>
</application>
</manifest>
这似乎是 Android 文档中的一个线索,但它似乎与我的错误无关,因为我确实拥有 list 中的权限(http://developer.android.com/reference/android/Manifest.permission.html#GET_ACCOUNTS):
Note: Beginning with Android 6.0 (API level 23), if an app shares the signature of the authenticator that manages an account, it does not need "GET_ACCOUNTS" permission to read information about that account. On Android 5.1 and lower, all apps need "GET_ACCOUNTS" permission to read information about any account.
最佳答案
事实证明与我正在使用的库有冲突。具体来说,图书馆的支持团队告诉我:
The layer SDK requests the GET_ACCOUNTS permission using a maxSdkVersion of 18. It would appear that when the manifests get merged this is overwriting the permission request in your manifest, thus not requesting that permission for 19+.
解决方案是改变我的 list :
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
为此:
<uses-permission android:name="android.permission.GET_ACCOUNTS" tools:node="replace" />
具体来说,添加tools:node="replace"
。
有关更多详细信息,请参阅我的其他问题的答案:https://stackoverflow.com/a/37013603/2423194
关于android - java.lang.SecurityException : caller uid XXXXX lacks any of android. 权限.GET_ACCOUNTS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36851892/
我正在尝试更新我的应用程序以正确支持 v23,尤其是在新权限模型方面。不幸的是,当涉及到 GET_ACCOUNTS 权限时,我有点困惑。根据Table 1 (Dangerous permissions
Note it says: RGA package from CRAN. Which is different from "rga" package from Github. Nevertheless
我正在尝试使用使用 Google+ 登录的新 Android M 权限更新我的应用程序,但是当我执行 checkSelfPermission(Manifest.permission.GET_ACCOU
我正在使用它来获得许可: if (ContextCompat.checkSelfPermission(context, Manifest.permission.GET_ACCOUNTS) != Pac
我已经在使用 Intent intent = AccountPicker.newChooseAccountIntent(...) 让用户选择使用哪个帐户登录,但我想获得相同的帐户列表而不用用户的交互,
我在做客户经理。我想检查帐户是否存在。 private static final String TAG = "UserAccountUtil"; public static Account
我已经实现了“http://api.phonegap.com/1.0/contacts”我的 config.xml 文件中的 api 功能,我想使用 GET_ACCOUNTS 函数来获取帐户服务中登录
自从我有时间开发我的应用程序以来已经有好几个月了。今天我下载了最新的 Android Studio 和 SDK,我在构建应用程序后发现了一个问题。 我的 AndroidManifest 文件不需要 G
我的应用程序已经充当身份验证器,我只想检查是否已经存在属于我的应用程序的指定帐户。 我们可以使用 AccountManager#addAccountExplicitly 创建一个新帐户,而无需 GET
我在 Android 6 设备上运行时遇到以下异常。 java.lang.SecurityException: Missing android.permission.GET_ACCOUNTS 这看起来
我有一个应用,实现了推送通知。 我想了解在实现 GCM 时为什么需要“GET_ACCOUNTS”(android.permission.GET_ACCOUNTS) 的原因?一些用户对此权限表示担忧。我
Google 已弃用 Google Drive Android API。 我们正在迁移到 Google Drive REST API (v3)。 2 年前,我们有使用 Google Drive RES
这是从 Google+ 登录中使用的 GoogleApiClient 获取 token 的传统方式: String token = GoogleAuthUtil.getToken(apiClient.
android.permission.GET_ACCOUNTS,android.permission.READ_CONTACTS。在 APK 中使用这些权限的应用需要设置隐私政策。如何解决 Play
我正在开发一款具有社交登录功能的应用。所以我创建了一个 android-library 项目,其作用是通过 g+、FB 等提供社交登录。我的应用程序正在使用这个 android-library 项目进
注意:这不是重复的,我在类似的 StackOverflow 问题中尝试了很多解决方案,但它们对我的情况不起作用。感谢您的帮助。 此崩溃似乎只发生在运行 Android 版本低于 6.0 的设备上。例如
我有一个 Android 应用程序目前正在测试中,只有少数测试人员是我的家人。 我一直在将 APK 上传到 Google Play 商店中我的应用程序的 Alpha channel 。这几个月来一直运
我是一名优秀的程序员,十分优秀!