Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/229.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java Android AccountManager在添加帐户时引发AuthenticateToreException:绑定失败_Java_Android_Android Service_Accountmanager_Android Authenticator - Fatal编程技术网

Java Android AccountManager在添加帐户时引发AuthenticateToreException:绑定失败

Java Android AccountManager在添加帐户时引发AuthenticateToreException:绑定失败,java,android,android-service,accountmanager,android-authenticator,Java,Android,Android Service,Accountmanager,Android Authenticator,我正在尝试在android上使用AccountManager.addAccount()添加自定义帐户。我跟着。当我尝试使用AccountManagerCallback的run方法获取结果时,我得到AuthenticatorException,消息为:android.accounts.AuthenticatorException:bind failure 经过一些研究,我发现了两个潜在的解决方案,但我已经在应用程序标签中找到了,还有。我还将清单权限与教程中的权限进行了比较。我正在使用android

我正在尝试在android上使用
AccountManager.addAccount()
添加自定义帐户。我跟着。当我尝试使用
AccountManagerCallback
run
方法获取结果时,我得到
AuthenticatorException
,消息为:
android.accounts.AuthenticatorException:bind failure

经过一些研究,我发现了两个潜在的解决方案,但我已经在
应用程序
标签中找到了,还有。我还将清单权限与教程中的权限进行了比较。我正在使用android studio 1.4,我在几个模拟器和物理设备上进行了尝试

这是我的
AndroidManifest.xml
,还有
authenticator.xml
account\u preferences.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.test.myproject" >

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.USE_CREDENTIALS" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.READ_PROFILE" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />

    <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
    <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/test_logo"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity
            android:name=".view.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".view.LoginActivity"
            android:label="@string/app_name">
        </activity>

        <service
            android:name="com.test.myproject.model.utility.MyAuthenticatorService">
            <intent-filter>
                <action android:name="android.accounts.AccountAuthenticator"/>
            </intent-filter>
            <meta-data
                android:name="android.accounts.AccountAuthenticator"
                android:resource="@xml/authenticator" />
        </service>

        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

    </application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
        android:accountType="com.test.myproject"
        android:icon="@drawable/test_logo"
        android:smallIcon="@drawable/test_logo"
        android:label="@string/not_implemented"
        android:accountPreferences="@xml/account_preferences"
        />
</PreferenceScreen>
account_preferences.xml:

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <PreferenceCategory android:title="@string/not_implemented" />
    <CheckBoxPreference android:title="Use debug server"
        android:key="isDebug"
        android:summary="Connecting to a debug server instead of prod server"/>
    <SwitchPreference android:title="Debug Logs" android:key="logsVerbose" android:summary="Show debug logs on LogCat"/>
</PreferenceScreen>
这是我的验证器

public class MyAuthenticator extends AbstractAccountAuthenticator {

    private Context context;

    public MyAuthenticator(Context context) {
        super(context);
        this.context = context;
    }

    @Override
    public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) throws NetworkErrorException {
        final Intent intent = new Intent(context, LoginActivity.class);
        intent.putExtra(LoginActivity.ARG_ACCOUNT_TYPE, accountType);
        intent.putExtra(LoginActivity.ARG_AUTH_TYPE, authTokenType);
        intent.putExtra(LoginActivity.ARG_IS_ADDING_NEW_ACCOUNT, true);
        intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);
        final Bundle bundle = new Bundle();
        bundle.putParcelable(AccountManager.KEY_INTENT, intent);
        return bundle;
    }
   //other override methods (they all return null for now)
}
下面是
main活动

public class MainActivity extends AppCompatActivity {

    private Toolbar toolbar;
    private NavigationView navigationView;
    private DrawerLayout drawerLayout;
    private SharedPreferences sharedPreferences;
    private AccountManager accountManager;
    private static final String ACCOUNT_TYPE = "com.test.myproject";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_drawer);

        this.accountManager = AccountManager.get(this);

        signIn(ACCOUNT_TYPE, "access_token");

        //other stuff

    }

    private void signIn(String accountType, String authTokenType) {

        final AccountManagerFuture<Bundle> future = accountManager.addAccount(ACCOUNT_TYPE, authTokenType, null, null, this, new AccountManagerCallback<Bundle>() {
            @Override
            public void run(AccountManagerFuture<Bundle> future) {
                try {
                    Bundle bnd = future.getResult();
                    showMessage("Account was created");
                    Log.d("udinic", "AddNewAccount Bundle is " + bnd);

                } catch (Exception e) {
                    e.printStackTrace();
                    showMessage(e.getMessage());
                }
            }
        }, null);
    }
}
以下是完整的堆栈跟踪:

10-19 10:39:05.042 25931-25931/? I/art: Not late-enabling -Xcheck:jni (already on)
10-19 10:39:05.042 25931-25931/? I/art: Late-enabling JIT
10-19 10:39:05.068 25931-25931/? I/art: JIT created with code_cache_capacity=2MB compile_threshold=1000
10-19 10:39:05.118 25931-25931/com.test.myproject W/System: ClassLoader referenced unknown path: /data/app/com.test.myproject-1/lib/x86
10-19 10:39:05.355 25931-25960/com.test.myproject D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: true
10-19 10:39:05.358 25931-25931/com.test.myproject D/: HostConnection::get() New Host Connection established 0xad974e50, tid 25931
10-19 10:39:05.366 25931-25931/com.test.myproject W/System.err: android.accounts.AuthenticatorException: bind failure
10-19 10:39:05.366 25931-25931/com.test.myproject W/System.err:     at android.accounts.AccountManager.convertErrorToException(AccountManager.java:2147)
10-19 10:39:05.366 25931-25931/com.test.myproject W/System.err:     at android.accounts.AccountManager.-wrap0(AccountManager.java)
10-19 10:39:05.366 25931-25931/com.test.myproject W/System.err:     at android.accounts.AccountManager$AmsTask$Response.onError(AccountManager.java:1990)
10-19 10:39:05.366 25931-25931/com.test.myproject W/System.err:     at android.accounts.IAccountManagerResponse$Stub.onTransact(IAccountManagerResponse.java:69)
10-19 10:39:05.366 25931-25931/com.test.myproject W/System.err:     at android.os.Binder.execTransact(Binder.java:453)
10-19 10:39:05.423 25931-25960/com.test.myproject D/: HostConnection::get() New Host Connection established 0xac17e080, tid 25960
10-19 10:39:05.433 25931-25960/com.test.myproject I/OpenGLRenderer: Initialized EGL, version 1.4
10-19 10:39:05.538 25931-25960/com.test.myproject W/EGL_emulation: eglSurfaceAttrib not implemented
10-19 10:39:05.538 25931-25960/com.test.myproject W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xaf125cc0, error=EGL_SUCCESS
10-19 10:39:05.903 25931-25931/com.test.myproject I/Choreographer: Skipped 31 frames!  The application may be doing too much work on its main thread.
10-19 10:39:05.975 25931-25960/com.test.myproject W/EGL_emulation: eglSurfaceAttrib not implemented
10-19 10:39:05.975 25931-25960/com.test.myproject W/OpenGLRenderer: Failed to set EGL_SWAP_BEHAVIOR on surface 0xb3fe0c40, error=EGL_SUCCESS
10-19 10:39:07.392 25931-25960/com.test.myproject E/Surface: getSlotFromBufferLocked: unknown buffer: 0xac027c50

有人能帮我解决这个问题吗?

你可以显式地使用addAccount

好的,所以,这确实是一个复制粘贴错误,它让我发疯了。在
authenticator.xml
中:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.test.myproject" >

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.USE_CREDENTIALS" />
    <uses-permission android:name="android.permission.GET_ACCOUNTS" />
    <uses-permission android:name="android.permission.READ_PROFILE" />
    <uses-permission android:name="android.permission.READ_CONTACTS" />

    <uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>
    <uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>

    <application
        android:allowBackup="true"
        android:icon="@mipmap/test_logo"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >

        <activity
            android:name=".view.MainActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".view.LoginActivity"
            android:label="@string/app_name">
        </activity>

        <service
            android:name="com.test.myproject.model.utility.MyAuthenticatorService">
            <intent-filter>
                <action android:name="android.accounts.AccountAuthenticator"/>
            </intent-filter>
            <meta-data
                android:name="android.accounts.AccountAuthenticator"
                android:resource="@xml/authenticator" />
        </service>

        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version" />

    </application>
</manifest>
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
        android:accountType="com.test.myproject"
        android:icon="@drawable/test_logo"
        android:smallIcon="@drawable/test_logo"
        android:label="@string/not_implemented"
        android:accountPreferences="@xml/account_preferences"
        />
</PreferenceScreen>

不应该在这里


如果出现此错误,请检查xml文件。

我也遇到了同样的问题


就像Miljac的一样,我的问题是关于
AndroidManifest.xml
文件。

您是否尝试将清单中的服务名称更改为:.model.utility.MyAuthenticatorServiceI,同样的事情发生了,并向服务添加了export=“false”?false和true,在不同的模拟器和物理设备上,没有效果,还尝试了所有使用服务名称的排列。您能打印完整的堆栈跟踪吗?嗯,这不完全是我要找的,这更像是在这种情况下的一种解决方法。我想使用
addAccount
,而不是
addaccountexplicit
。但是我确实尝试过,我得到了异常
java.lang.SecurityException:uid 10053无法显式添加类型为:com.test.myproject
的帐户,但我没有投入更多的精力,因为它不是我想要的
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"
        android:accountType="com.test.myproject"
        android:icon="@drawable/test_logo"
        android:smallIcon="@drawable/test_logo"
        android:label="@string/not_implemented"
        android:accountPreferences="@xml/account_preferences"
        />
</PreferenceScreen>