-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
113 lines (109 loc) · 4.51 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.tieorange.vuniversity"
android:versionCode="2"
android:versionName="1.1" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppThemeGreen" >
<activity
android:name="com.example.vuniversity.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="com.example.vuniversity.GroupsActivity"
android:label="@string/groups" >
</activity>
<activity
android:name="com.example.vuniversity.AddGroupActivity"
android:label="@string/addNewGroup"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="com.example.vuniversity.StudentsActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/students" >
</activity>
<activity
android:name="com.example.vuniversity.AddStudentActivity"
android:label="@string/addNewStudent"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="com.example.vuniversity.EditStudentActivity"
android:label="@string/editStudent"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="com.example.vuniversity.EditGroupActivity"
android:label="@string/edtiGroup"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="com.example.vuniversity.SubjectsActivity"
android:label="@string/subjects" >
</activity>
<activity
android:name="com.example.vuniversity.AddSubjectActivity"
android:label="@string/addNewSubject"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="com.example.vuniversity.EditSubjectActivity"
android:label="@string/edtiSubject"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="com.example.vuniversity.TeachersActivity"
android:label="@string/teachers" >
</activity>
<activity
android:name="com.example.vuniversity.EditTeacherActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/editTeachers" >
</activity>
<activity
android:name="com.example.vuniversity.AddTeacherActivity"
android:label="@string/addTeachers" >
</activity>
<activity
android:name="com.example.vuniversity.AddSubjectForTeacher"
android:label="@string/addSubjectForTeacher"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="com.example.vuniversity.PutMarkForStudent"
android:label="@string/putMarkForStudent"
android:theme="@android:style/Theme.Dialog" >
</activity>
<activity
android:name="com.example.vuniversity.ShowDetailsStudent"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/showDetailsStudent" >
</activity>
<activity
android:name="com.example.vuniversity.ShowDetailsTeacher"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/showDetailsTeacher" >
</activity>
<activity
android:name="com.example.vuniversity.MarksActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/marksActivity" >
</activity>
<activity
android:name="com.example.vuniversity.AverageMarksActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/averageMarksActivity" >
</activity>
</application>
</manifest>