|
1 | 1 | <manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2 |
| - xmlns:tools="http://schemas.android.com/tools" |
3 |
| - package="com.mikepenz.fastadapter.app"> |
| 2 | + xmlns:tools="http://schemas.android.com/tools" |
| 3 | + package="com.mikepenz.fastadapter.app"> |
4 | 4 |
|
5 |
| - <uses-permission android:name="android.permission.INTERNET" /> |
| 5 | + <uses-permission android:name="android.permission.INTERNET"/> |
6 | 6 |
|
7 | 7 | <application
|
8 |
| - android:name="com.mikepenz.fastadapter.app.CustomApplication" |
9 |
| - android:allowBackup="true" |
10 |
| - android:icon="@mipmap/ic_launcher" |
11 |
| - android:label="@string/app_name" |
12 |
| - android:networkSecurityConfig="@xml/network_security_config" |
13 |
| - android:roundIcon="@mipmap/ic_launcher_round" |
14 |
| - android:theme="@style/SampleApp.DayNight" |
15 |
| - tools:ignore="GoogleAppIndexingWarning"> |
| 8 | + android:name="com.mikepenz.fastadapter.app.CustomApplication" |
| 9 | + android:allowBackup="true" |
| 10 | + android:icon="@mipmap/ic_launcher" |
| 11 | + android:label="@string/app_name" |
| 12 | + android:networkSecurityConfig="@xml/network_security_config" |
| 13 | + android:roundIcon="@mipmap/ic_launcher_round" |
| 14 | + android:theme="@style/SampleApp.DayNight" |
| 15 | + tools:ignore="GoogleAppIndexingWarning"> |
16 | 16 |
|
17 | 17 | <uses-library
|
18 |
| - android:name="org.apache.http.legacy" |
19 |
| - android:required="false" /> |
| 18 | + android:name="org.apache.http.legacy" |
| 19 | + android:required="false"/> |
20 | 20 |
|
21 | 21 | <!-- android:supportsRtl="true" -->
|
22 |
| - <activity android:name="com.mikepenz.fastadapter.app.SampleActivity"> |
| 22 | + <activity android:name="com.mikepenz.fastadapter.app.SampleActivity" |
| 23 | + android:exported="true"> |
23 | 24 | <intent-filter>
|
24 |
| - <action android:name="android.intent.action.MAIN" /> |
25 |
| - <category android:name="android.intent.category.LAUNCHER" /> |
| 25 | + <action android:name="android.intent.action.MAIN"/> |
| 26 | + <category android:name="android.intent.category.LAUNCHER"/> |
26 | 27 | </intent-filter>
|
27 | 28 | </activity>
|
28 | 29 | <activity
|
29 |
| - android:name="com.mikepenz.fastadapter.app.PagedActivity" |
30 |
| - android:label="@string/sample_paged_list" /> |
| 30 | + android:name="com.mikepenz.fastadapter.app.PagedActivity" |
| 31 | + android:label="@string/sample_paged_list" |
| 32 | + android:exported="false"/> |
31 | 33 | <activity
|
32 |
| - android:name="com.mikepenz.fastadapter.app.SimpleItemListActivity" |
33 |
| - android:label="@string/sample_simple_item_list" /> |
| 34 | + android:name="com.mikepenz.fastadapter.app.SimpleItemListActivity" |
| 35 | + android:label="@string/sample_simple_item_list" |
| 36 | + android:exported="false"/> |
34 | 37 | <activity
|
35 |
| - android:name="com.mikepenz.fastadapter.app.SwipeListActivity" |
36 |
| - android:label="@string/sample_swipe_list" /> |
| 38 | + android:name="com.mikepenz.fastadapter.app.SwipeListActivity" |
| 39 | + android:label="@string/sample_swipe_list" |
| 40 | + android:exported="false"/> |
37 | 41 | <activity
|
38 |
| - android:name="com.mikepenz.fastadapter.app.SwipeDrawerListActivity" |
39 |
| - android:label="@string/sample_swipe_drawer_list" /> |
| 42 | + android:name="com.mikepenz.fastadapter.app.SwipeDrawerListActivity" |
| 43 | + android:label="@string/sample_swipe_drawer_list" |
| 44 | + android:exported="false"/> |
40 | 45 | <activity
|
41 |
| - android:name="com.mikepenz.fastadapter.app.ImageListActivity" |
42 |
| - android:label="@string/sample_image_list" /> |
| 46 | + android:name="com.mikepenz.fastadapter.app.ImageListActivity" |
| 47 | + android:label="@string/sample_image_list" |
| 48 | + android:exported="false"/> |
43 | 49 | <activity
|
44 |
| - android:name="com.mikepenz.fastadapter.app.MultiselectSampleActivity" |
45 |
| - android:label="@string/sample_multi_select" /> |
| 50 | + android:name="com.mikepenz.fastadapter.app.MultiselectSampleActivity" |
| 51 | + android:label="@string/sample_multi_select" |
| 52 | + android:exported="false"/> |
46 | 53 | <activity
|
47 |
| - android:name="com.mikepenz.fastadapter.app.ExpandableSampleActivity" |
48 |
| - android:label="@string/sample_collapsible" /> |
| 54 | + android:name="com.mikepenz.fastadapter.app.ExpandableSampleActivity" |
| 55 | + android:label="@string/sample_collapsible" |
| 56 | + android:exported="false"/> |
49 | 57 | <activity
|
50 |
| - android:name="com.mikepenz.fastadapter.app.ExpandableMultiselectDeleteSampleActivity" |
51 |
| - android:label="@string/sample_collapsible_multi_select_delete" /> |
| 58 | + android:name="com.mikepenz.fastadapter.app.ExpandableMultiselectDeleteSampleActivity" |
| 59 | + android:label="@string/sample_collapsible_multi_select_delete" |
| 60 | + android:exported="false"/> |
52 | 61 | <activity
|
53 |
| - android:name="com.mikepenz.fastadapter.app.StickyHeaderSampleActivity" |
54 |
| - android:label="@string/sample_sticky_header" /> |
| 62 | + android:name="com.mikepenz.fastadapter.app.StickyHeaderSampleActivity" |
| 63 | + android:label="@string/sample_sticky_header" |
| 64 | + android:exported="false"/> |
55 | 65 | <activity
|
56 |
| - android:name="com.mikepenz.fastadapter.app.AdvancedSampleActivity" |
57 |
| - android:label="@string/sample_advanced" /> |
| 66 | + android:name="com.mikepenz.fastadapter.app.AdvancedSampleActivity" |
| 67 | + android:label="@string/sample_advanced" |
| 68 | + android:exported="false"/> |
58 | 69 | <activity
|
59 |
| - android:name="com.mikepenz.fastadapter.app.IconGridActivity" |
60 |
| - android:label="@string/sample_icon_grid" /> |
| 70 | + android:name="com.mikepenz.fastadapter.app.IconGridActivity" |
| 71 | + android:label="@string/sample_icon_grid" |
| 72 | + android:exported="false"/> |
61 | 73 | <activity
|
62 |
| - android:name="com.mikepenz.fastadapter.app.ModelItemActivity" |
63 |
| - android:label="@string/sample_model_item" /> |
| 74 | + android:name="com.mikepenz.fastadapter.app.ModelItemActivity" |
| 75 | + android:label="@string/sample_model_item" |
| 76 | + android:exported="false"/> |
64 | 77 | <activity
|
65 |
| - android:name="com.mikepenz.fastadapter.app.MultiTypeModelItemActivity" |
66 |
| - android:label="@string/sample_multi_model_item" /> |
| 78 | + android:name="com.mikepenz.fastadapter.app.MultiTypeModelItemActivity" |
| 79 | + android:label="@string/sample_multi_model_item" |
| 80 | + android:exported="false"/> |
67 | 81 | <activity
|
68 |
| - android:name="com.mikepenz.fastadapter.app.CheckBoxSampleActivity" |
69 |
| - android:label="@string/sample_checkbox_item" /> |
| 82 | + android:name="com.mikepenz.fastadapter.app.CheckBoxSampleActivity" |
| 83 | + android:label="@string/sample_checkbox_item" |
| 84 | + android:exported="false"/> |
70 | 85 | <activity
|
71 |
| - android:name="com.mikepenz.fastadapter.app.RadioButtonSampleActivity" |
72 |
| - android:label="@string/sample_radiobutton_item" /> |
| 86 | + android:name="com.mikepenz.fastadapter.app.RadioButtonSampleActivity" |
| 87 | + android:label="@string/sample_radiobutton_item" |
| 88 | + android:exported="false"/> |
73 | 89 | <activity
|
74 |
| - android:name="com.mikepenz.fastadapter.app.EndlessScrollListActivity" |
75 |
| - android:label="@string/sample_endless_scroll_item" /> |
| 90 | + android:name="com.mikepenz.fastadapter.app.EndlessScrollListActivity" |
| 91 | + android:label="@string/sample_endless_scroll_item" |
| 92 | + android:exported="false"/> |
76 | 93 | <activity
|
77 |
| - android:name="com.mikepenz.fastadapter.app.SortActivity" |
78 |
| - android:label="@string/sample_sort" /> |
| 94 | + android:name="com.mikepenz.fastadapter.app.SortActivity" |
| 95 | + android:label="@string/sample_sort" |
| 96 | + android:exported="false"/> |
79 | 97 | <activity
|
80 |
| - android:name="com.mikepenz.fastadapter.app.MopubAdsActivity" |
81 |
| - android:label="@string/sample_mopub" /> |
| 98 | + android:name="com.mikepenz.fastadapter.app.RealmActivity" |
| 99 | + android:label="@string/sample_realm_list" |
| 100 | + android:exported="false"/> |
82 | 101 | <activity
|
83 |
| - android:name="com.mikepenz.fastadapter.app.RealmActivity" |
84 |
| - android:label="@string/sample_realm_list" /> |
| 102 | + android:name="com.mikepenz.fastadapter.app.DiffUtilActivity" |
| 103 | + android:label="@string/sample_diff_util" |
| 104 | + android:exported="false"/> |
85 | 105 | <activity
|
86 |
| - android:name="com.mikepenz.fastadapter.app.StickyHeaderMopubAdsActivity" |
87 |
| - android:label="@string/sample_sticky_header_mopub" /> |
88 |
| - <activity |
89 |
| - android:name="com.mikepenz.fastadapter.app.DiffUtilActivity" |
90 |
| - android:label="@string/sample_diff_util" /> |
91 |
| - <activity |
92 |
| - android:name="com.mikepenz.fastadapter.app.DragAndDropActivity" |
93 |
| - android:label="Drag & Drop Sample" /> |
| 106 | + android:name="com.mikepenz.fastadapter.app.DragAndDropActivity" |
| 107 | + android:label="Drag & Drop Sample" |
| 108 | + android:exported="false"/> |
94 | 109 | </application>
|
95 | 110 | </manifest>
|
0 commit comments