Android AccountManager.addAccountExplicitly is stopping my App

蓝咒 提交于 2019-12-10 20:00:40

问题


I'm still having problems with the Method AccountManager.addAccountExplicitly. I want to create a App which is submitting a User PW combo to a website. The app should save the login data and therefore i wanted to use AccountManager:

HttpAuth.java:

package com.geberit.eismi.httpauth;

import android.os.Bundle;
import android.accounts.Account;
import android.accounts.AccountManager;
import android.app.Activity;
import android.text.Editable;
import android.text.TextWatcher;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.webkit.HttpAuthHandler;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.EditText;
import android.widget.Button;

public class HttpAuth extends Activity {

 private EditText field_username;
 private EditText field_password;
 private Button btn_login;
 private AccountManager accountM;
 private Account eismi;

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

    accountM = AccountManager.get(this);
    eismi = new Account("eismi", "com.geberit.sap.t81");

    boolean test = accountM.addAccountExplicitly(eismi, "testpassword", null);

    field_username = (EditText) findViewById(R.id.field_user);
    field_password = (EditText) findViewById(R.id.field_password);
    btn_login = (Button) findViewById(R.id.btn_login);

    field_username.setText(accountM.getPassword(eismi));

HttpAuth Manifest:

    <?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.geberit.eismi.httpauth"
    android:versionCode="1"
    android:versionName="1.0"
    android:sharedUserId="com.geberit.eismi"
     >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />

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

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.geberit.eismi.httpauth.HttpAuth"
            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>

Everytime when executing the step

boolean test = accountM.addAccountExplicitly(eismi, "testpassword", null); 

my app is stopping!!

some output of the console:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.geberit.eismi.httpauth/com.geberit.eismi.httpauth.HttpAuth}: java.lang.SecurityException: caller uid 10039 is different than the authenticator's uid

I hope you can help me

Thanks Michi

来源:https://stackoverflow.com/questions/15139736/android-accountmanager-addaccountexplicitly-is-stopping-my-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!