|
19 | 19 | android:versionCode="1" |
20 | 20 | android:versionName="0.3 ({srchash})" |
21 | 21 | > |
| 22 | + |
| 23 | + <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> |
| 24 | + <uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" /> |
22 | 25 |
|
23 | 26 | <uses-sdk |
24 | 27 | android:minSdkVersion="21" |
25 | | - android:targetSdkVersion="26" /> |
| 28 | + |
| 29 | + android:targetSdkVersion="34" /> |
26 | 30 | <application |
27 | 31 | android:allowBackup="true" |
28 | 32 | android:icon="@drawable/logo" |
|
34 | 38 | android:name="com.android.graphics.developerdriver.enable" |
35 | 39 | android:value="true" /> |
36 | 40 | <activity android:name="com.google.android.gapid.ReplayerActivity" |
37 | | - android:label="GAPID - ${name}"> |
| 41 | + android:label="GAPID - ${name}" |
| 42 | + android:exported="true"> |
38 | 43 | <meta-data android:name="android.app.lib_name" |
39 | 44 | android:value="gapir"/> |
40 | 45 | <intent-filter> |
|
44 | 49 | <activity android:name="com.google.android.gapid.VkSampleActivity" |
45 | 50 | android:label="GAPID - Vulkan Sample" |
46 | 51 | android:configChanges="orientation|screenSize" |
47 | | - android:screenOrientation="portrait"> |
| 52 | + android:screenOrientation="portrait" |
| 53 | + android:exported="true"> |
48 | 54 | <meta-data android:name="android.app.lib_name" |
49 | 55 | android:value="vulkan_sample" /> |
50 | 56 | <intent-filter> |
|
53 | 59 | </activity> |
54 | 60 | <service |
55 | 61 | android:name="com.google.android.gapid.DeviceInfoService" |
| 62 | + android:foregroundServiceType="dataSync" |
56 | 63 | android:exported="true"> |
57 | 64 | <intent-filter> |
58 | 65 | <action android:name="com.google.android.gapid.action.SEND_DEV_INFO"/> |
59 | 66 | </intent-filter> |
60 | 67 | </service> |
61 | 68 | <service |
62 | 69 | android:name="com.google.android.gapid.PackageInfoService" |
| 70 | + android:foregroundServiceType="dataSync" |
63 | 71 | android:exported="true"> |
64 | 72 | <intent-filter> |
65 | 73 | <action android:name="com.google.android.gapid.action.SEND_PKG_INFO"/> |
|
0 commit comments