Merge "Restrict access to dangerous methods to <= P" into qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
f3a812858c
@@ -25,6 +25,7 @@ import android.app.backup.BackupManager;
|
||||
import android.app.usage.NetworkStatsManager;
|
||||
import android.content.Context;
|
||||
import android.media.MediaPlayer;
|
||||
import android.os.Build;
|
||||
import android.os.RemoteException;
|
||||
import android.os.ServiceManager;
|
||||
import android.util.DataUnit;
|
||||
@@ -169,7 +170,7 @@ public class TrafficStats {
|
||||
|
||||
private static INetworkStatsService sStatsService;
|
||||
|
||||
@UnsupportedAppUsage
|
||||
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 130143562)
|
||||
private synchronized static INetworkStatsService getStatsService() {
|
||||
if (sStatsService == null) {
|
||||
sStatsService = INetworkStatsService.Stub.asInterface(
|
||||
@@ -979,7 +980,7 @@ public class TrafficStats {
|
||||
* Interfaces are never removed from this list, so counters should always be
|
||||
* monotonic.
|
||||
*/
|
||||
@UnsupportedAppUsage
|
||||
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P, trackingBug = 130143562)
|
||||
private static String[] getMobileIfaces() {
|
||||
try {
|
||||
return getStatsService().getMobileIfaces();
|
||||
|
||||
Reference in New Issue
Block a user