Back to project page hubblog.
The source code is released under:
MIT License
If you think the Android project hubblog listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.github.mobile.Accounts; /* w w w . j a v a2 s . c om*/ /** * Created with IntelliJ IDEA. * User: donski * Date: 10/12/13 * Time: 20:20 */ public interface AccountConstants { /** * Account type */ String ACCOUNT_TYPE = "com.hubblog"; /** * Account name */ String ACCOUNT_NAME = "Hubblog"; /** * Provider authority */ String PROVIDER_AUTHORITY = "com.hubblog.sync"; /** * Application note URL */ String APP_NOTE_URL = "https://github.com/donskifarrell/hubblog"; /** * Application note */ String APP_NOTE = "Hubblog Android App"; }