-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tmolokomme
committed
Aug 4, 2014
0 parents
commit a154e7d
Showing
72 changed files
with
1,666 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto | ||
|
||
# Custom for Visual Studio | ||
*.cs diff=csharp | ||
*.sln merge=union | ||
*.csproj merge=union | ||
*.vbproj merge=union | ||
*.fsproj merge=union | ||
*.dbproj merge=union | ||
|
||
# Standard to msysgit | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<classpath> | ||
<classpathentry kind="src" path="src"/> | ||
<classpathentry kind="src" path="gen"/> | ||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> | ||
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> | ||
<classpathentry kind="output" path="bin/classes"/> | ||
</classpath> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>registration</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>org.eclipse.jdt.core.javabuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
<buildCommand> | ||
<name>com.android.ide.eclipse.adt.ApkBuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>com.android.ide.eclipse.adt.AndroidNature</nature> | ||
<nature>org.eclipse.jdt.core.javanature</nature> | ||
</natures> | ||
</projectDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
eclipse.preferences.version=1 | ||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 | ||
org.eclipse.jdt.core.compiler.compliance=1.6 | ||
org.eclipse.jdt.core.compiler.source=1.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="za.co.uvaka.registration.main" | ||
android:versionCode="1" | ||
android:versionName="1.0" > | ||
|
||
<uses-sdk | ||
android:minSdkVersion="8" | ||
android:targetSdkVersion="17" /> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" > | ||
<activity | ||
android:name="za.co.uvaka.registration.main.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="za.co.uvaka.registration.views.LoginActivity" | ||
android:label="@string/title_activity_login" | ||
android:windowSoftInputMode="adjustResize|stateVisible" > | ||
</activity> | ||
<activity | ||
android:name="za.co.uvaka.registration.main.SettingsActivity" | ||
android:label="@string/title_activity_settings" > | ||
</activity> | ||
<activity | ||
android:name="za.co.uvaka.registration.main.RegisterActivity" | ||
android:label="@string/title_activity_register" > | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="za.co.uvaka.registration.main" | ||
android:versionCode="1" | ||
android:versionName="1.0" > | ||
|
||
<uses-sdk | ||
android:minSdkVersion="8" | ||
android:targetSdkVersion="17" /> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme" > | ||
<activity | ||
android:name="za.co.uvaka.registration.main.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="za.co.uvaka.registration.views.LoginActivity" | ||
android:label="@string/title_activity_login" | ||
android:windowSoftInputMode="adjustResize|stateVisible" > | ||
</activity> | ||
<activity | ||
android:name="za.co.uvaka.registration.main.SettingsActivity" | ||
android:label="@string/title_activity_settings" > | ||
</activity> | ||
<activity | ||
android:name="za.co.uvaka.registration.main.RegisterActivity" | ||
android:label="@string/title_activity_register" > | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
Binary file not shown.
Binary file added
BIN
+1.06 KB
Uvaca/bin/classes/za/co/uvaka/registration/main/LoginActivity$1.class
Binary file not shown.
Binary file added
BIN
+1.06 KB
Uvaca/bin/classes/za/co/uvaka/registration/main/LoginActivity$2.class
Binary file not shown.
Binary file added
BIN
+2.28 KB
Uvaca/bin/classes/za/co/uvaka/registration/main/LoginActivity$UserLoginTask.class
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+682 Bytes
Uvaca/bin/classes/za/co/uvaka/registration/main/RegisterActivity.class
Binary file not shown.
Binary file added
BIN
+860 Bytes
Uvaca/bin/classes/za/co/uvaka/registration/main/SettingsActivity$1.class
Binary file not shown.
Binary file added
BIN
+845 Bytes
...n/classes/za/co/uvaka/registration/main/SettingsActivity$DataSyncPreferenceFragment.class
Binary file not shown.
Binary file added
BIN
+842 Bytes
...in/classes/za/co/uvaka/registration/main/SettingsActivity$GeneralPreferenceFragment.class
Binary file not shown.
Binary file added
BIN
+857 Bytes
...asses/za/co/uvaka/registration/main/SettingsActivity$NotificationPreferenceFragment.class
Binary file not shown.
Binary file added
BIN
+3.67 KB
Uvaca/bin/classes/za/co/uvaka/registration/main/SettingsActivity.class
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/** Automatically generated file. DO NOT MODIFY */ | ||
package za.co.uvaka.registration.main; | ||
|
||
public final class BuildConfig { | ||
public final static boolean DEBUG = true; | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# To enable ProGuard in your project, edit project.properties | ||
# to define the proguard.config property as described in that file. | ||
# | ||
# Add project specific ProGuard rules here. | ||
# By default, the flags in this file are appended to flags specified | ||
# in ${sdk.dir}/tools/proguard/proguard-android.txt | ||
# You can edit the include path and order by changing the ProGuard | ||
# include property in project.properties. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# Add any project specific keep options here: | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# This file is automatically generated by Android Tools. | ||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! | ||
# | ||
# This file must be checked in Version Control Systems. | ||
# | ||
# To customize properties used by the Ant build system edit | ||
# "ant.properties", and override values to adapt the script to your | ||
# project structure. | ||
# | ||
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): | ||
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt | ||
|
||
# Project target. | ||
target=android-17 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
<merge xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
tools:context=".LoginActivity" > | ||
|
||
<!-- Login progress --> | ||
|
||
<LinearLayout | ||
android:id="@+id/login_status" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="center" | ||
android:gravity="center_horizontal" | ||
android:orientation="vertical" | ||
android:visibility="gone" > | ||
|
||
<ProgressBar | ||
style="?android:attr/progressBarStyleLarge" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="8dp" /> | ||
|
||
<TextView | ||
android:id="@+id/login_status_message" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginBottom="16dp" | ||
android:fontFamily="sans-serif-light" | ||
android:text="@string/login_progress_signing_in" | ||
android:textAppearance="?android:attr/textAppearanceMedium" /> | ||
</LinearLayout> | ||
|
||
<!-- Login form --> | ||
|
||
<ScrollView | ||
android:id="@+id/login_form" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" > | ||
|
||
<LinearLayout | ||
style="@style/LoginFormContainer" | ||
android:orientation="vertical" > | ||
|
||
<EditText | ||
android:id="@+id/Username" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:ems="10" | ||
android:hint="@string/Username" | ||
android:inputType="text" | ||
android:maxLines="1" | ||
android:singleLine="true" | ||
android:text="@string/Username" > | ||
|
||
<requestFocus /> | ||
</EditText> | ||
|
||
<EditText | ||
android:id="@+id/password" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:hint="@string/prompt_password" | ||
android:imeActionId="@+id/login" | ||
android:imeActionLabel="@string/action_sign_in_short" | ||
android:imeOptions="actionUnspecified" | ||
android:inputType="textPassword" | ||
android:maxLines="1" | ||
android:singleLine="true" /> | ||
|
||
<Button | ||
android:id="@+id/btnAuthenticate" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_gravity="right" | ||
android:layout_marginTop="16dp" | ||
android:paddingLeft="32dp" | ||
android:paddingRight="32dp" | ||
android:text="@string/action_sign_in_short" /> | ||
</LinearLayout> | ||
</ScrollView> | ||
|
||
</merge> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!-- | ||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:layout_width="match_parent" | ||
android:layout_height="match_parent" | ||
--> | ||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:layout_width="fill_parent" | ||
android:layout_height="fill_parent" | ||
android:orientation="vertical" | ||
tools:context=".MainActivity" > | ||
|
||
<EditText | ||
android:id="@+id/editText1" | ||
android:layout_width="match_parent" | ||
android:layout_height="wrap_content" | ||
android:inputType="none" | ||
android:enabled="false" | ||
android:ems="10" | ||
android:text="Startup registration app..." > | ||
|
||
</EditText> | ||
|
||
<Button | ||
android:id="@+id/Login" | ||
android:layout_width="263dp" | ||
android:layout_height="wrap_content" | ||
android:layout_marginLeft="41dp" | ||
android:layout_marginTop="35dp" | ||
android:onClick="startLoginActivity" | ||
android:text="@string/login" /> | ||
|
||
<Button | ||
android:id="@+id/Register" | ||
android:layout_width="263dp" | ||
android:layout_marginLeft="41dp" | ||
android:layout_height="wrap_content" | ||
android:text="Register" /> | ||
|
||
</LinearLayout> | ||
<!-- | ||
android:layout_alignParentLeft="true" | ||
android:layout_alignParentTop="true" | ||
--> | ||
<!-- </RelativeLayout> --> |
Oops, something went wrong.