-
Notifications
You must be signed in to change notification settings - Fork 245
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
91 lines (81 loc) · 3.66 KB
/
AndroidManifest.xml
File metadata and controls
91 lines (81 loc) · 3.66 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
<application
android:name=".ExampleApplication"
android:allowBackup="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_notice"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Macrobenchmarktarget">
<profileable
android:shell="true"
tools:targetApi="29" />
<!-- [END macrobenchmark_setup_profileable] -->
<!--
Activities need to be exported so the Macrobenchmarks can discover them
under the new package visibility changes for Android 11.
-->
<activity
android:name=".activity.MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".activity.clicklatency.ComposeActivity"
android:exported="true">
<intent-filter>
<action android:name="com.example.macrobenchmark.target.COMPOSE_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".activity.FullyDrawnStartupActivity"
android:exported="true">
<intent-filter>
<action android:name="com.example.macrobenchmark.target.FULLY_DRAWN_STARTUP_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".activity.clicklatency.ListViewActivity"
android:exported="true">
<intent-filter>
<action android:name="com.example.macrobenchmark.target.LIST_VIEW_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".activity.login.LoginActivity"
android:exported="true">
<intent-filter>
<action android:name="com.example.macrobenchmark.target.LOGIN_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity> <!-- non-exported activities -->
<activity android:name=".activity.clicklatency.NonExportedRecyclerActivity" />
<activity android:name=".activity.clicklatency.NestedRecyclerActivity" />
<activity
android:name=".activity.clicklatency.RecyclerViewActivity"
android:exported="true">
<intent-filter>
<action android:name="com.example.macrobenchmark.target.RECYCLER_VIEW_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".activity.clicklatency.ScrollViewActivity"
android:exported="true">
<intent-filter>
<action android:name="com.example.macrobenchmark.target.SCROLL_VIEW_ACTIVITY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>