У меня есть этот код ...
fun activeAirplane(state:Boolean){
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP_MR1){
if(state){
System.putInt(mainA.contentResolver, Settings.Global.AIRPLANE_MODE_ON, 0)
} else {
System.putInt(mainA.contentResolver, Settings.Global.AIRPLANE_MODE_ON, 1)
}
} else {
if (state){
System.putInt(mainA.contentResolver, System.AIRPLANE_MODE_ON, 0)
} else {
System.putInt(mainA.contentResolver, System.AIRPLANE_MODE_ON, 1)
}
}
}
но когда я вызываю этот метод, в моем мобильном телефоне не меняется, почему?