|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + xmlns:tools="http://schemas.android.com/tools" |
| 4 | + package="com.example.happybirthday"> |
| 5 | + |
| 6 | + <application |
| 7 | + android:allowBackup="true" |
| 8 | + android:dataExtractionRules="@xml/data_extraction_rules" |
| 9 | + android:fullBackupContent="@xml/backup_rules" |
| 10 | + android:icon="@mipmap/ic_launcher" |
| 11 | + android:label="@string/app_name" |
| 12 | + android:roundIcon="@mipmap/ic_launcher_round" |
| 13 | + android:supportsRtl="true" |
| 14 | + android:theme="@style/Theme.HappyBirthday" |
| 15 | + tools:targetApi="31"> |
| 16 | + |
| 17 | + <!-- $ hasImplicitExport --> <activity |
| 18 | + android:name=".Activity"> |
| 19 | + <intent-filter> |
| 20 | + <action android:name="android.intent.action.VIEW" /> |
| 21 | + </intent-filter> |
| 22 | + </activity> |
| 23 | + |
| 24 | + <!-- $ hasImplicitExport --> <receiver |
| 25 | + android:name=".CheckInstall"> |
| 26 | + <intent-filter> |
| 27 | + <action android:name="android.intent.action.PACKAGE_INSTALL"/> |
| 28 | + |
| 29 | + </intent-filter> |
| 30 | + </receiver> |
| 31 | + |
| 32 | + <!-- $ hasImplicitExport --> <service |
| 33 | + android:name=".backgroundService"> |
| 34 | + <intent-filter> |
| 35 | + <action android:name="android.intent.action.START_BACKGROUND"/> |
| 36 | + |
| 37 | + </intent-filter> |
| 38 | + </service> |
| 39 | + |
| 40 | + <!-- $ hasImplicitExport --> <provider |
| 41 | + android:name=".MyCloudProvider"> |
| 42 | + <intent-filter> |
| 43 | + <action android:name="android.intent.action.DOCUMENTS_PROVIDER"/> |
| 44 | + |
| 45 | + </intent-filter> |
| 46 | + </provider> |
| 47 | + |
| 48 | + <!-- Safe: 'android:exported' explicitly set --> <activity |
| 49 | + android:name=".Activity" |
| 50 | + android:exported="true"> |
| 51 | + <intent-filter> |
| 52 | + <action android:name="android.intent.action.VIEW" /> |
| 53 | + </intent-filter> |
| 54 | + </activity> |
| 55 | + |
| 56 | + <!-- Safe: no intent filter --> <activity |
| 57 | + android:name=".Activity"> |
| 58 | + </activity> |
| 59 | + |
| 60 | + <!-- Safe: has 'permission' attribute --> <activity |
| 61 | + android:name=".Activity" |
| 62 | + android:permission=".Test"> |
| 63 | + <intent-filter> |
| 64 | + <action android:name="android.intent.action.VIEW" /> |
| 65 | + </intent-filter> |
| 66 | + </activity> |
| 67 | + |
| 68 | + <!-- Safe: 'provider' with read and write permissions set --> <provider |
| 69 | + android:name=".MyCloudProvider" |
| 70 | + android:readPermission=".TestRead" |
| 71 | + android:writePermission=".TestWrite"> |
| 72 | + <intent-filter> |
| 73 | + <action android:name="android.intent.action.DOCUMENTS_PROVIDER"/> |
| 74 | + |
| 75 | + </intent-filter> |
| 76 | + </provider> |
| 77 | + |
| 78 | + <!-- $ hasImplicitExport --> <provider |
| 79 | + android:name=".MyCloudProvider" |
| 80 | + android:readPermission=".TestRead"> |
| 81 | + <intent-filter> |
| 82 | + <action android:name="android.intent.action.DOCUMENTS_PROVIDER"/> |
| 83 | + |
| 84 | + </intent-filter> |
| 85 | + </provider> |
| 86 | + |
| 87 | + <!-- $ hasImplicitExport --> <provider |
| 88 | + android:name=".MyCloudProvider" |
| 89 | + android:writePermission=".TestWrite"> |
| 90 | + <intent-filter> |
| 91 | + <action android:name="android.intent.action.DOCUMENTS_PROVIDER"/> |
| 92 | + |
| 93 | + </intent-filter> |
| 94 | + </provider> |
| 95 | + |
| 96 | + <!-- Safe: has category 'android.intent.category.LAUNCHER' --> <activity |
| 97 | + android:name=".Activity"> |
| 98 | + <intent-filter> |
| 99 | + <action android:name="android.intent.action.MAIN" /> |
| 100 | + |
| 101 | + <category android:name="android.intent.category.LAUNCHER" /> |
| 102 | + </intent-filter> |
| 103 | + </activity> |
| 104 | + |
| 105 | + <!-- Safe: has action 'android.intent.category.MAIN' --> <activity |
| 106 | + android:name=".Activity"> |
| 107 | + <intent-filter> |
| 108 | + <action android:name="android.intent.action.MAIN" /> |
| 109 | + </intent-filter> |
| 110 | + </activity> |
| 111 | + |
| 112 | + </application> |
| 113 | + |
| 114 | +</manifest> |
0 commit comments