Skip to content

Commit fa91780

Browse files
author
Atish Agrawal
committed
Initial Commit
0 parents  commit fa91780

File tree

6,283 files changed

+234658
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,283 files changed

+234658
-0
lines changed

AndroidVirtualLearning/.classpath

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<classpath>
3+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
4+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
5+
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
6+
<classpathentry kind="src" path="src"/>
7+
<classpathentry kind="src" path="gen"/>
8+
<classpathentry kind="output" path="bin/classes"/>
9+
</classpath>

AndroidVirtualLearning/.project

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>AndroidVirtualLearning</name>
4+
<comment></comment>
5+
<projects>
6+
</projects>
7+
<buildSpec>
8+
<buildCommand>
9+
<name>com.android.ide.eclipse.adt.ResourceManagerBuilder</name>
10+
<arguments>
11+
</arguments>
12+
</buildCommand>
13+
<buildCommand>
14+
<name>com.android.ide.eclipse.adt.PreCompilerBuilder</name>
15+
<arguments>
16+
</arguments>
17+
</buildCommand>
18+
<buildCommand>
19+
<name>org.eclipse.jdt.core.javabuilder</name>
20+
<arguments>
21+
</arguments>
22+
</buildCommand>
23+
<buildCommand>
24+
<name>com.android.ide.eclipse.adt.ApkBuilder</name>
25+
<arguments>
26+
</arguments>
27+
</buildCommand>
28+
</buildSpec>
29+
<natures>
30+
<nature>com.android.ide.eclipse.adt.AndroidNature</nature>
31+
<nature>org.eclipse.jdt.core.javanature</nature>
32+
</natures>
33+
</projectDescription>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
3+
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
4+
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
5+
org.eclipse.jdt.core.compiler.compliance=1.6
6+
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
7+
org.eclipse.jdt.core.compiler.debug.localVariable=generate
8+
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
9+
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
10+
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
11+
org.eclipse.jdt.core.compiler.source=1.6
+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.androidvirtuallearning"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
8+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
9+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>
10+
11+
<uses-sdk
12+
android:minSdkVersion="8"
13+
android:targetSdkVersion="18" />
14+
15+
16+
<application
17+
android:allowBackup="true"
18+
android:icon="@drawable/ic_launcher"
19+
android:hardwareAccelerated = "true"
20+
android:label="@string/app_name"
21+
android:theme="@style/AppTheme" >
22+
<activity
23+
android:name="com.example.androidvirtuallearning.MainActivity"
24+
android:label="@string/app_name" >
25+
<intent-filter>
26+
<action android:name="android.intent.action.MAIN" />
27+
28+
<category android:name="android.intent.category.LAUNCHER" />
29+
</intent-filter>
30+
</activity>
31+
<activity
32+
android:name="com.example.androidvirtuallearning.StudentHomeActivity"
33+
android:label="@string/title_activity_student_home" >
34+
</activity>
35+
<activity
36+
android:name="com.example.androidvirtuallearning.SignUpActivity"
37+
android:label="@string/title_activity_sign_up" >
38+
</activity>
39+
<activity
40+
android:name="com.example.androidvirtuallearning.AddSubjectActivity"
41+
android:label="@string/title_activity_add_subject" >
42+
</activity>
43+
<activity
44+
android:name="com.example.androidvirtuallearning.SubjectActivity"
45+
android:label="@string/title_activity_subject" >
46+
</activity>
47+
<activity
48+
android:name="com.example.androidvirtuallearning.SubjectInfoActivity"
49+
android:label="@string/title_activity_subject_info" >
50+
</activity>
51+
<activity
52+
android:name="com.example.androidvirtuallearning.EditUserActivity"
53+
android:label="@string/title_activity_edit_user" >
54+
</activity>
55+
<activity
56+
android:name="com.example.androidvirtuallearning.DLCListingsActivity"
57+
android:label="@string/title_activity_dlclistings" >
58+
</activity>
59+
<activity
60+
android:name="com.example.androidvirtuallearning.DLCViewingActivity"
61+
android:label="@string/title_activity_dlcviewing" >
62+
</activity>
63+
</application>
64+
65+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.androidvirtuallearning"
4+
android:versionCode="1"
5+
android:versionName="1.0" >
6+
7+
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
8+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
9+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission>
10+
11+
<uses-sdk
12+
android:minSdkVersion="8"
13+
android:targetSdkVersion="18" />
14+
15+
16+
<application
17+
android:allowBackup="true"
18+
android:icon="@drawable/ic_launcher"
19+
android:hardwareAccelerated = "true"
20+
android:label="@string/app_name"
21+
android:theme="@style/AppTheme" >
22+
<activity
23+
android:name="com.example.androidvirtuallearning.MainActivity"
24+
android:label="@string/app_name" >
25+
<intent-filter>
26+
<action android:name="android.intent.action.MAIN" />
27+
28+
<category android:name="android.intent.category.LAUNCHER" />
29+
</intent-filter>
30+
</activity>
31+
<activity
32+
android:name="com.example.androidvirtuallearning.StudentHomeActivity"
33+
android:label="@string/title_activity_student_home" >
34+
</activity>
35+
<activity
36+
android:name="com.example.androidvirtuallearning.SignUpActivity"
37+
android:label="@string/title_activity_sign_up" >
38+
</activity>
39+
<activity
40+
android:name="com.example.androidvirtuallearning.AddSubjectActivity"
41+
android:label="@string/title_activity_add_subject" >
42+
</activity>
43+
<activity
44+
android:name="com.example.androidvirtuallearning.SubjectActivity"
45+
android:label="@string/title_activity_subject" >
46+
</activity>
47+
<activity
48+
android:name="com.example.androidvirtuallearning.SubjectInfoActivity"
49+
android:label="@string/title_activity_subject_info" >
50+
</activity>
51+
<activity
52+
android:name="com.example.androidvirtuallearning.EditUserActivity"
53+
android:label="@string/title_activity_edit_user" >
54+
</activity>
55+
<activity
56+
android:name="com.example.androidvirtuallearning.DLCListingsActivity"
57+
android:label="@string/title_activity_dlclistings" >
58+
</activity>
59+
<activity
60+
android:name="com.example.androidvirtuallearning.DLCViewingActivity"
61+
android:label="@string/title_activity_dlcviewing" >
62+
</activity>
63+
</application>
64+
65+
</manifest>
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/** Automatically generated file. DO NOT MODIFY */
2+
package com.example.androidvirtuallearning;
3+
4+
public final class BuildConfig {
5+
public final static boolean DEBUG = true;
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
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.androidvirtuallearning;
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=0x7f050000;
21+
public static final int activity_vertical_margin=0x7f050001;
22+
}
23+
public static final class drawable {
24+
public static final int ai_vs_cyb=0x7f020000;
25+
public static final int good_girl_gina=0x7f020001;
26+
public static final int ic_launcher=0x7f020002;
27+
public static final int soft_dev_cycle=0x7f020003;
28+
}
29+
public static final class id {
30+
public static final int action_settings=0x7f090028;
31+
public static final int btnAdd=0x7f090002;
32+
public static final int btnAddSubject=0x7f09001d;
33+
public static final int btnAllSubjects=0x7f090027;
34+
public static final int btnBrowseImage=0x7f09000c;
35+
public static final int btnEditUser=0x7f09001e;
36+
public static final int btnSave=0x7f090014;
37+
public static final int btnSignOut=0x7f09001f;
38+
public static final int btnSubjectInfo=0x7f090022;
39+
public static final int imgUser=0x7f09001a;
40+
public static final int lblClassSchedule=0x7f090023;
41+
public static final int lblEnrolledSubjects=0x7f09001b;
42+
public static final int lblFirstname=0x7f090007;
43+
public static final int lblLastname=0x7f090006;
44+
public static final int lblMI=0x7f090008;
45+
public static final int lblPasskey=0x7f090001;
46+
public static final int lblPassword=0x7f09000a;
47+
public static final int lblRePassword=0x7f09000b;
48+
public static final int lblStudentID=0x7f090005;
49+
public static final int lblSubjectCode=0x7f090026;
50+
public static final int lblSubjectName=0x7f090020;
51+
public static final int lblTeacher=0x7f090025;
52+
public static final int lblTime=0x7f090024;
53+
public static final int lblUsername=0x7f090009;
54+
public static final int lblWelcome=0x7f090019;
55+
public static final int listDownloadables=0x7f090021;
56+
public static final int listOfDLC=0x7f090003;
57+
public static final int listSubjects=0x7f09001c;
58+
public static final int loginButton=0x7f090018;
59+
public static final int signUpButton=0x7f090017;
60+
public static final int txtFirstname=0x7f09000f;
61+
public static final int txtLastname=0x7f09000e;
62+
public static final int txtMI=0x7f090010;
63+
public static final int txtPasskey=0x7f090000;
64+
public static final int txtPassword=0x7f090012;
65+
public static final int txtRePassword=0x7f090013;
66+
public static final int txtServerURL=0x7f090016;
67+
public static final int txtStudentID=0x7f09000d;
68+
public static final int txtUserName=0x7f090015;
69+
public static final int txtUsername=0x7f090011;
70+
public static final int wbDLCView=0x7f090004;
71+
}
72+
public static final class layout {
73+
public static final int activity_add_subject=0x7f030000;
74+
public static final int activity_dlclistings=0x7f030001;
75+
public static final int activity_dlcviewing=0x7f030002;
76+
public static final int activity_edit_user=0x7f030003;
77+
public static final int activity_main=0x7f030004;
78+
public static final int activity_sign_up=0x7f030005;
79+
public static final int activity_student_home=0x7f030006;
80+
public static final int activity_subject=0x7f030007;
81+
public static final int activity_subject_info=0x7f030008;
82+
}
83+
public static final class menu {
84+
public static final int add_subject=0x7f080000;
85+
public static final int dlclistings=0x7f080001;
86+
public static final int dlcviewing=0x7f080002;
87+
public static final int edit_user=0x7f080003;
88+
public static final int main=0x7f080004;
89+
public static final int sign_up=0x7f080005;
90+
public static final int student_home=0x7f080006;
91+
public static final int subject=0x7f080007;
92+
public static final int subject_info=0x7f080008;
93+
}
94+
public static final class raw {
95+
public static final int a_short_lecture_on_education=0x7f040000;
96+
public static final int accountability_and_ustainability=0x7f040001;
97+
public static final int samplepdf=0x7f040002;
98+
public static final int textlecture=0x7f040003;
99+
}
100+
public static final class string {
101+
public static final int action_settings=0x7f060001;
102+
public static final int app_name=0x7f060000;
103+
public static final int btnAddSubject=0x7f06000a;
104+
public static final int btnAllSubjects=0x7f06001c;
105+
public static final int btnBrowseImage=0x7f06001e;
106+
public static final int btnEditUser=0x7f06000b;
107+
public static final int btnSave=0x7f060015;
108+
public static final int btnSignOut=0x7f06000c;
109+
public static final int btnSubjectInfo=0x7f06001a;
110+
public static final int hello_world=0x7f060021;
111+
public static final int lblEnrolledSubjects=0x7f060009;
112+
public static final int lblFirstname=0x7f060010;
113+
public static final int lblLastname=0x7f06000f;
114+
public static final int lblMI=0x7f060011;
115+
public static final int lblPasskey=0x7f060017;
116+
public static final int lblPassword=0x7f060013;
117+
public static final int lblRePassword=0x7f060014;
118+
public static final int lblStudentID=0x7f06000e;
119+
public static final int lblSubjectName=0x7f060019;
120+
public static final int lblUsername=0x7f060012;
121+
public static final int lblWelcome=0x7f060008;
122+
public static final int loginButton=0x7f060002;
123+
public static final int signUpButton=0x7f060003;
124+
public static final int title_activity_add_subject=0x7f060016;
125+
public static final int title_activity_dlclistings=0x7f06001f;
126+
public static final int title_activity_dlcviewing=0x7f060020;
127+
public static final int title_activity_edit_user=0x7f06001d;
128+
public static final int title_activity_sign_up=0x7f06000d;
129+
public static final int title_activity_student_home=0x7f060007;
130+
public static final int title_activity_subject=0x7f060018;
131+
public static final int title_activity_subject_info=0x7f06001b;
132+
public static final int txtHintPassword=0x7f060005;
133+
public static final int txtHintServerURL=0x7f060006;
134+
public static final int txtHintUsername=0x7f060004;
135+
}
136+
public static final class style {
137+
/**
138+
Base application theme, dependent on API level. This theme is replaced
139+
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
140+
141+
142+
Theme customizations available in newer API levels can go in
143+
res/values-vXX/styles.xml, while customizations related to
144+
backward-compatibility can go here.
145+
146+
147+
Base application theme for API 11+. This theme completely replaces
148+
AppBaseTheme from res/values/styles.xml on API 11+ devices.
149+
150+
API 11 theme customizations can go here.
151+
152+
Base application theme for API 14+. This theme completely replaces
153+
AppBaseTheme from BOTH res/values/styles.xml and
154+
res/values-v11/styles.xml on API 14+ devices.
155+
156+
API 14 theme customizations can go here.
157+
*/
158+
public static final int AppBaseTheme=0x7f070000;
159+
/** Application theme.
160+
All customizations that are NOT specific to a particular API-level can go here.
161+
*/
162+
public static final int AppTheme=0x7f070001;
163+
}
164+
}
35.8 KB

AndroidVirtualLearning/lint.xml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<lint>
3+
<issue id="NewApi" severity="ignore" />
4+
</lint>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
#}

0 commit comments

Comments
 (0)