-
Notifications
You must be signed in to change notification settings - Fork 6
/
AndroidManifest.xml
83 lines (79 loc) · 3.13 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.fourfoureight.lolhelper"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.fourfoureight.lolhelper.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.fourfoureight.lolhelper.InGame"
android:label="@string/title_activity_in_game" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.ChampionSelect"
android:label="@string/title_activity_champion_select" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.PostGame"
android:label="@string/title_activity_post_game" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.GeneralInfo"
android:label="@string/title_activity_general_info" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.Options"
android:label="@string/title_activity_options" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.BuildGuides"
android:label="@string/title_activity_build_guides" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.MatchInfo"
android:label="@string/title_activity_match_info" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.TeamBuilder"
android:label="@string/title_activity_team_builder" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.Counters"
android:label="@string/title_activity_counters" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.Build"
android:label="@string/title_activity_build" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.PlayerStats"
android:label="@string/title_activity_player_stats" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.Champions"
android:label="@string/title_activity_champions" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.Items"
android:label="@string/title_activity_items" >
</activity>
<activity
android:name="com.fourfoureight.lolhelper.BuildScreen"
android:label="@string/title_activity_build_screen" >
</activity>
</application>
</manifest>