How to disable internet access for particular application in android -
i want know how disable internet particular application, please suggest me how achieve because many application given type of feature
it depends if asking control in app writing or in 3rd party app on device
for 3rd party apps: android 4.3 had permission manager allowed adjusting permissions individually installed apps. feature pulled (google said released mistake) android 4.4 , no longer available. similar feature might available on vendor-specific/un-official roms.
for apps write yourself: need add proper permissions (android:name="android.permission.internet
) access network. without app not able make network traffic.
Comments
Post a Comment