1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ package =" com.example.imagica" >
4
+
5
+ <uses-permission android : name =" android.permission.INTERNET" />
6
+
7
+ <application
8
+ android : allowBackup =" true"
9
+ android : icon =" @mipmap/ic_launcher"
10
+ android : label =" @string/app_name"
11
+ android : roundIcon =" @mipmap/ic_launcher_round"
12
+ android : supportsRtl =" true"
13
+ android : theme =" @style/AppTheme" >
14
+ <activity android : name =" .MainActivity" >
15
+ <intent-filter >
16
+ <action android : name =" android.intent.action.MAIN" />
17
+
18
+ <category android : name =" android.intent.category.LAUNCHER" />
19
+ </intent-filter >
20
+ </activity >
21
+ <activity android : name =" .InstructActivity" >
22
+ <intent-filter >
23
+ <action android : name =" .InstructActivity" />
24
+
25
+ <category android : name =" android.intent.category.DEFAULT" />
26
+ </intent-filter >
27
+ </activity >
28
+ <activity android : name =" .PlayActivity" >
29
+ <intent-filter >
30
+ <action android : name =" .PlayActivity" />
31
+
32
+ <category android : name =" android.intent.category.DEFAULT" />
33
+ </intent-filter >
34
+ </activity >
35
+ <activity android : name =" .Level1" >
36
+ <intent-filter >
37
+ <action android : name =" .Level1" />
38
+
39
+ <category android : name =" android.intent.category.DEFAULT" />
40
+ </intent-filter >
41
+ </activity >
42
+ <activity android : name =" .Level2" >
43
+ <intent-filter >
44
+ <action android : name =" .Level2" />
45
+
46
+ <category android : name =" android.intent.category.DEFAULT" />
47
+ </intent-filter >
48
+ </activity >
49
+ <activity android : name =" .Level3" >
50
+ <intent-filter >
51
+ <action android : name =" .Level3" />
52
+
53
+ <category android : name =" android.intent.category.DEFAULT" />
54
+ </intent-filter >
55
+ </activity >
56
+ <activity android : name =" .Level4" >
57
+ <intent-filter >
58
+ <action android : name =" .Level4" />
59
+
60
+ <category android : name =" android.intent.category.DEFAULT" />
61
+ </intent-filter >
62
+ </activity >
63
+ <activity android : name =" .Level5" >
64
+ <intent-filter >
65
+ <action android : name =" .Level5" />
66
+
67
+ <category android : name =" android.intent.category.DEFAULT" />
68
+ </intent-filter >
69
+ </activity >
70
+ <activity android : name =" .Level6" >
71
+ <intent-filter >
72
+ <action android : name =" .Level6" />
73
+
74
+ <category android : name =" android.intent.category.DEFAULT" />
75
+ </intent-filter >
76
+ </activity >
77
+ </application >
78
+
79
+ </manifest >
0 commit comments