├── Demo ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── Demo.apk │ ├── classes.dex │ ├── classes │ │ └── com │ │ │ └── example │ │ │ └── demo │ │ │ ├── BuildConfig.class │ │ │ ├── LoginFragment$1.class │ │ │ ├── LoginFragment.class │ │ │ ├── MainActivity.class │ │ │ ├── MainFragment$1$1.class │ │ │ ├── MainFragment$1.class │ │ │ ├── MainFragment.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$menu.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ └── SignupFragment.class │ ├── dexedLibs │ │ ├── android-support-v4-48ed6b96efff843cc24bad93d74ab476.jar │ │ ├── gson-2.2.4-e449ad82ce0c4df73bd6e3531c444a0f.jar │ │ ├── gson-2.2.4-javadoc-992cf6eae773d8f6070b904a23aaccb7.jar │ │ ├── gson-2.2.4-sources-e82d742f34c315829db1aa99a9c8b8e0.jar │ │ ├── json-20131018-b51cc6a7f0e9fbba62a7a0921db97709.jar │ │ └── userapp-android-ced4443df28254b4deea5f4d0652076e.jar │ ├── jarlist.cache │ ├── res │ │ └── crunch │ │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_launcher.png │ │ │ └── drawable-xxhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ └── com │ │ └── example │ │ └── demo │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ ├── android-support-v4.jar │ ├── gson-2.2.4-javadoc.jar │ ├── gson-2.2.4-sources.jar │ ├── gson-2.2.4.jar │ ├── json-20131018.jar │ └── userapp-android.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_login.xml │ │ ├── fragment_main.xml │ │ └── fragment_signup.xml │ ├── menu │ │ └── main.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ └── demo │ ├── LoginFragment.java │ ├── MainActivity.java │ ├── MainFragment.java │ └── SignupFragment.java ├── LICENSE ├── README.md ├── UserApp-Android ├── .classpath ├── .project ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ ├── R.txt │ ├── classes │ │ └── io │ │ │ └── userapp │ │ │ └── client │ │ │ ├── JsonHelper.class │ │ │ ├── UserAppClient$API.class │ │ │ ├── UserAppClient$Array.class │ │ │ ├── UserAppClient$ClientOptions.class │ │ │ ├── UserAppClient$Parameter.class │ │ │ ├── UserAppClient$Result.class │ │ │ ├── UserAppClient$Struct.class │ │ │ ├── UserAppClient.class │ │ │ ├── android │ │ │ ├── AuthFragment$1.class │ │ │ ├── AuthFragment$2.class │ │ │ ├── AuthFragment$3$1$1.class │ │ │ ├── AuthFragment$3$1.class │ │ │ ├── AuthFragment$3.class │ │ │ ├── AuthFragment$4.class │ │ │ ├── AuthFragment$5.class │ │ │ ├── AuthFragment$6.class │ │ │ ├── AuthFragment.class │ │ │ ├── BuildConfig.class │ │ │ ├── Feature.class │ │ │ ├── Lock.class │ │ │ ├── OAuthFragment$1.class │ │ │ ├── OAuthFragment.class │ │ │ ├── Permission.class │ │ │ ├── Property.class │ │ │ ├── R$attr.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R.class │ │ │ ├── Subscription.class │ │ │ ├── User.class │ │ │ ├── UserApp$Session$1.class │ │ │ ├── UserApp$Session$2.class │ │ │ ├── UserApp$Session$3.class │ │ │ ├── UserApp$Session$AsyncResult.class │ │ │ ├── UserApp$Session$GetOAuthUrlTask.class │ │ │ ├── UserApp$Session$LoadUserTask.class │ │ │ ├── UserApp$Session$LoginTask.class │ │ │ ├── UserApp$Session$LogoutTask.class │ │ │ ├── UserApp$Session$OAuthUrlCallback.class │ │ │ ├── UserApp$Session$SaveUserTask.class │ │ │ ├── UserApp$Session$StatusCallback.class │ │ │ ├── UserApp$Session$UserCallback.class │ │ │ ├── UserApp$Session.class │ │ │ ├── UserApp$UIHelper$1.class │ │ │ ├── UserApp$UIHelper.class │ │ │ ├── UserApp.class │ │ │ └── WebViewRelativeLayout.class │ │ │ ├── exceptions │ │ │ ├── InvalidMethodException.class │ │ │ ├── InvalidServiceException.class │ │ │ ├── ServiceException.class │ │ │ ├── TransportException.class │ │ │ └── UserAppException.class │ │ │ └── rest │ │ │ ├── Restful.class │ │ │ ├── RestfulContext.class │ │ │ ├── UserCredentials.class │ │ │ └── core │ │ │ ├── HttpHeaderCollection.class │ │ │ ├── HttpMethodType.class │ │ │ ├── HttpProtocolVersionType.class │ │ │ ├── HttpResponse.class │ │ │ ├── HttpResponseHead.class │ │ │ ├── HttpResponseStatusHead.class │ │ │ └── HttpStatusCode.class │ ├── jarlist.cache │ └── userapp android.jar ├── gen │ └── io │ │ └── userapp │ │ └── client │ │ └── android │ │ ├── BuildConfig.java │ │ └── R.java ├── libs │ ├── android-support-v4.jar │ ├── gson-2.2.4-javadoc.jar │ ├── gson-2.2.4-sources.jar │ ├── gson-2.2.4.jar │ └── json-20131018.jar ├── lint.xml ├── proguard-project.txt ├── project.properties └── src │ └── io │ └── userapp │ └── client │ ├── JsonHelper.java │ ├── UserAppClient.java │ ├── android │ ├── AuthFragment.java │ ├── Feature.java │ ├── Lock.java │ ├── OAuthFragment.java │ ├── Permission.java │ ├── Property.java │ ├── Subscription.java │ ├── User.java │ ├── UserApp.java │ └── WebViewRelativeLayout.java │ ├── exceptions │ ├── InvalidMethodException.java │ ├── InvalidServiceException.java │ ├── ServiceException.java │ ├── TransportException.java │ └── UserAppException.java │ └── rest │ ├── Restful.java │ ├── RestfulContext.java │ ├── UserCredentials.java │ └── core │ ├── HttpHeaderCollection.java │ ├── HttpMethodType.java │ ├── HttpProtocolVersionType.java │ ├── HttpResponse.java │ ├── HttpResponseHead.java │ ├── HttpResponseStatusHead.java │ └── HttpStatusCode.java └── userapp-android.jar /Demo/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Demo/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Demo 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Demo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Demo/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Demo/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 12 | 13 | 18 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Demo/bin/Demo.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/Demo.apk -------------------------------------------------------------------------------- /Demo/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes.dex -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/BuildConfig.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/LoginFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/LoginFragment$1.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/LoginFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/LoginFragment.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/MainActivity.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/MainFragment$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/MainFragment$1$1.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/MainFragment$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/MainFragment$1.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/MainFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/MainFragment.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R$attr.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R$dimen.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R$drawable.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R$id.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R$layout.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R$menu.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R$string.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R$style.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/R.class -------------------------------------------------------------------------------- /Demo/bin/classes/com/example/demo/SignupFragment.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/classes/com/example/demo/SignupFragment.class -------------------------------------------------------------------------------- /Demo/bin/dexedLibs/android-support-v4-48ed6b96efff843cc24bad93d74ab476.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/dexedLibs/android-support-v4-48ed6b96efff843cc24bad93d74ab476.jar -------------------------------------------------------------------------------- /Demo/bin/dexedLibs/gson-2.2.4-e449ad82ce0c4df73bd6e3531c444a0f.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/dexedLibs/gson-2.2.4-e449ad82ce0c4df73bd6e3531c444a0f.jar -------------------------------------------------------------------------------- /Demo/bin/dexedLibs/gson-2.2.4-javadoc-992cf6eae773d8f6070b904a23aaccb7.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/dexedLibs/gson-2.2.4-javadoc-992cf6eae773d8f6070b904a23aaccb7.jar -------------------------------------------------------------------------------- /Demo/bin/dexedLibs/gson-2.2.4-sources-e82d742f34c315829db1aa99a9c8b8e0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/dexedLibs/gson-2.2.4-sources-e82d742f34c315829db1aa99a9c8b8e0.jar -------------------------------------------------------------------------------- /Demo/bin/dexedLibs/json-20131018-b51cc6a7f0e9fbba62a7a0921db97709.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/dexedLibs/json-20131018-b51cc6a7f0e9fbba62a7a0921db97709.jar -------------------------------------------------------------------------------- /Demo/bin/dexedLibs/userapp-android-ced4443df28254b4deea5f4d0652076e.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/dexedLibs/userapp-android-ced4443df28254b4deea5f4d0652076e.jar -------------------------------------------------------------------------------- /Demo/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /Demo/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/res/crunch/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/bin/resources.ap_ -------------------------------------------------------------------------------- /Demo/gen/com/example/demo/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.demo; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Demo/gen/com/example/demo/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.example.demo; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class dimen { 14 | /** Default screen margins, per the Android Design guidelines. 15 | 16 | Customize dimensions originally defined in res/values/dimens.xml (such as 17 | screen margins) for sw720dp devices (e.g. 10" tablets) in landscape here. 18 | 19 | */ 20 | public static final int activity_horizontal_margin=0x7f040000; 21 | public static final int activity_vertical_margin=0x7f040001; 22 | } 23 | public static final class drawable { 24 | public static final int ic_launcher=0x7f020000; 25 | } 26 | public static final class id { 27 | public static final int action_logout=0x7f080013; 28 | public static final int action_settings=0x7f080012; 29 | public static final int email=0x7f080010; 30 | public static final int error_text=0x7f08000b; 31 | public static final int facebook_button=0x7f080009; 32 | public static final int login=0x7f080006; 33 | public static final int loginFragment=0x7f080000; 34 | public static final int login_button=0x7f080008; 35 | public static final int login_form=0x7f080005; 36 | public static final int login_status=0x7f080003; 37 | public static final int login_status_message=0x7f080004; 38 | public static final int mainFragment=0x7f080002; 39 | public static final int password=0x7f080007; 40 | public static final int show_signup=0x7f08000a; 41 | public static final int signupFragment=0x7f080001; 42 | public static final int signup_button=0x7f080011; 43 | public static final int signup_form=0x7f08000f; 44 | public static final int signup_status=0x7f08000d; 45 | public static final int signup_status_message=0x7f08000e; 46 | public static final int welcome_text=0x7f08000c; 47 | } 48 | public static final class layout { 49 | public static final int activity_main=0x7f030000; 50 | public static final int fragment_login=0x7f030001; 51 | public static final int fragment_main=0x7f030002; 52 | public static final int fragment_signup=0x7f030003; 53 | } 54 | public static final class menu { 55 | public static final int main=0x7f070000; 56 | } 57 | public static final class string { 58 | public static final int action_logout=0x7f050002; 59 | public static final int action_settings=0x7f050001; 60 | public static final int app_name=0x7f050000; 61 | public static final int email=0x7f05000a; 62 | public static final int error_field_required=0x7f050007; 63 | public static final int facebook_login=0x7f05000d; 64 | public static final int facebook_signup=0x7f05000e; 65 | public static final int hello_world=0x7f050003; 66 | public static final int login=0x7f050008; 67 | public static final int login_progress_signing_in=0x7f050004; 68 | public static final int password=0x7f05000c; 69 | public static final int signup=0x7f050009; 70 | public static final int signup_progress_signing_up=0x7f050005; 71 | public static final int title_activity_main_fragment=0x7f050006; 72 | public static final int username=0x7f05000b; 73 | } 74 | public static final class style { 75 | /** 76 | Base application theme, dependent on API level. This theme is replaced 77 | by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 78 | 79 | 80 | Theme customizations available in newer API levels can go in 81 | res/values-vXX/styles.xml, while customizations related to 82 | backward-compatibility can go here. 83 | 84 | 85 | Base application theme for API 11+. This theme completely replaces 86 | AppBaseTheme from res/values/styles.xml on API 11+ devices. 87 | 88 | API 11 theme customizations can go here. 89 | 90 | Base application theme for API 14+. This theme completely replaces 91 | AppBaseTheme from BOTH res/values/styles.xml and 92 | res/values-v11/styles.xml on API 14+ devices. 93 | 94 | API 14 theme customizations can go here. 95 | */ 96 | public static final int AppBaseTheme=0x7f060000; 97 | /** Application theme. 98 | All customizations that are NOT specific to a particular API-level can go here. 99 | */ 100 | public static final int AppTheme=0x7f060001; 101 | } 102 | } 103 | -------------------------------------------------------------------------------- /Demo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/ic_launcher-web.png -------------------------------------------------------------------------------- /Demo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Demo/libs/gson-2.2.4-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/libs/gson-2.2.4-javadoc.jar -------------------------------------------------------------------------------- /Demo/libs/gson-2.2.4-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/libs/gson-2.2.4-sources.jar -------------------------------------------------------------------------------- /Demo/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /Demo/libs/json-20131018.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/libs/json-20131018.jar -------------------------------------------------------------------------------- /Demo/libs/userapp-android.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/libs/userapp-android.jar -------------------------------------------------------------------------------- /Demo/lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Demo/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Demo/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Demo/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/userapp-io/userapp-android/248cb85ce5cabd20baee1a42efbde764a99d52fa/Demo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Demo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 10 | 11 | 18 | 19 | 26 | 27 | 34 | 35 | -------------------------------------------------------------------------------- /Demo/res/layout/fragment_login.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 9 | 17 | 18 | 23 | 24 | 32 | 33 | 34 | 35 | 39 | 40 | 45 | 46 | 54 | 55 | 63 | 64 |