mirror of
https://github.com/M66B/NetGuard.git
synced 2025-01-03 05:44:14 +00:00
Fixed multicast virtual package name
This commit is contained in:
parent
20b9b770bb
commit
0e95b6355c
2 changed files with 2 additions and 2 deletions
|
@ -1407,7 +1407,7 @@ public class ActivitySettings extends AppCompatActivity implements SharedPrefere
|
|||
return 0;
|
||||
else if ("android.media".equals(pkg))
|
||||
return 1013;
|
||||
else if ("android.dns".equals(pkg))
|
||||
else if ("android.multicast".equals(pkg))
|
||||
return 1020;
|
||||
else if ("android.gps".equals(pkg))
|
||||
return 1021;
|
||||
|
|
|
@ -295,7 +295,7 @@ public class Rule {
|
|||
|
||||
// MulticastDNSResponder
|
||||
PackageInfo mdr = new PackageInfo();
|
||||
mdr.packageName = "android.dns";
|
||||
mdr.packageName = "android.multicast";
|
||||
mdr.versionCode = Build.VERSION.SDK_INT;
|
||||
mdr.versionName = Build.VERSION.RELEASE;
|
||||
mdr.applicationInfo = new ApplicationInfo();
|
||||
|
|
Loading…
Reference in a new issue