Android Open Source - cordova-android-accountmanager Account Manager Example






From Project

Back to project page cordova-android-accountmanager.

License

The source code is released under:

Copyright (c) 2013, Polychrom Pty Ltd All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are me...

If you think the Android project cordova-android-accountmanager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

// Copyright (C) 2013 Polychrom Pty Ltd
///*from   w ww  .jav a 2  s. c  o  m*/
// This program is licensed under the 3-clause "Modified" BSD license,
// see LICENSE file for full definition.

package com.polychrom.examples;

import android.os.Bundle;
import org.apache.cordova.*;

public class AccountManagerExample extends DroidGap
{
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        super.loadUrl("file:///android_asset/www/index.html");
    }
}




Java Source Code List

com.polychrom.cordova.AccountManagerPlugin.java
com.polychrom.cordova.AuthenticatorService.java
com.polychrom.cordova.Authenticator.java
com.polychrom.examples.AccountManagerExample.java