mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-27 20:15:29 +00:00
Only store UID for current user
This commit is contained in:
parent
171ddab32b
commit
a6f0aff659
@ -7,7 +7,7 @@ import com.topjohnwu.magisk.model.entity.MagiskPolicy.Companion.INTERACTIVE
|
|||||||
|
|
||||||
|
|
||||||
data class MagiskPolicy(
|
data class MagiskPolicy(
|
||||||
val uid: Int,
|
var uid: Int,
|
||||||
val packageName: String,
|
val packageName: String,
|
||||||
val appName: String,
|
val appName: String,
|
||||||
var policy: Int = INTERACTIVE,
|
var policy: Int = INTERACTIVE,
|
||||||
|
@ -9,6 +9,7 @@ import android.hardware.fingerprint.FingerprintManager
|
|||||||
import android.os.CountDownTimer
|
import android.os.CountDownTimer
|
||||||
import com.topjohnwu.magisk.BuildConfig
|
import com.topjohnwu.magisk.BuildConfig
|
||||||
import com.topjohnwu.magisk.Config
|
import com.topjohnwu.magisk.Config
|
||||||
|
import com.topjohnwu.magisk.Const
|
||||||
import com.topjohnwu.magisk.R
|
import com.topjohnwu.magisk.R
|
||||||
import com.topjohnwu.magisk.base.viewmodel.BaseViewModel
|
import com.topjohnwu.magisk.base.viewmodel.BaseViewModel
|
||||||
import com.topjohnwu.magisk.data.database.PolicyDao
|
import com.topjohnwu.magisk.data.database.PolicyDao
|
||||||
@ -165,6 +166,7 @@ class SuRequestViewModel(
|
|||||||
|
|
||||||
policy.policy = action
|
policy.policy = action
|
||||||
policy.until = until
|
policy.until = until
|
||||||
|
policy.uid = policy.uid % 100000 + Const.USER_ID * 100000
|
||||||
|
|
||||||
if (until >= 0)
|
if (until >= 0)
|
||||||
policyDB.update(policy).blockingAwait()
|
policyDB.update(policy).blockingAwait()
|
||||||
|
Loading…
Reference in New Issue
Block a user