File tree 1 file changed +3
-3
lines changed
src/main/kotlin/app/revanced/patches/shared/misc/gms
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ abstract class BaseGmsCoreSupportPatch(
249
249
/* *
250
250
* A list of all permissions.
251
251
*/
252
- val PERMISSIONS = listOf (
252
+ val PERMISSIONS = setOf (
253
253
// C2DM / GCM
254
254
" com.google.android.c2dm.permission.RECEIVE" ,
255
255
" com.google.android.c2dm.permission.SEND" ,
@@ -266,7 +266,7 @@ abstract class BaseGmsCoreSupportPatch(
266
266
/* *
267
267
* All intent actions.
268
268
*/
269
- val ACTIONS = listOf (
269
+ val ACTIONS = setOf (
270
270
// location
271
271
" com.google.android.gms.location.places.ui.PICK_PLACE" ,
272
272
" com.google.android.gms.location.places.GeoDataApi" ,
@@ -345,7 +345,7 @@ abstract class BaseGmsCoreSupportPatch(
345
345
/* *
346
346
* All content provider authorities.
347
347
*/
348
- val AUTHORITIES = listOf (
348
+ val AUTHORITIES = setOf (
349
349
// gsf
350
350
" com.google.android.gsf.gservices" ,
351
351
" com.google.settings" ,
You can’t perform that action at this time.
0 commit comments