我正尝试使用以下代码通过android从react-native应用程序禁用屏幕保护程序,但它无法正常工作。请提出一些解决方案。
@SuppressLint("InvalidWakeLockTag")
@ReactMethod
public void deActivate() {
final PowerManager pm = (PowerManager) reactContext.getSystemService(Context.POWER_SERVICE);
this.wakelock = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK,"DimScreen");
this.wakelock.acquire();
}