We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ea4fdf commit 6b9d799Copy full SHA for 6b9d799
1 file changed
app/src/main/java/me/zhanghai/android/files/provider/root/RootFileService.kt
@@ -55,7 +55,9 @@ object RootFileService : RemoteFileService(
55
RootJava.cleanupCache(application)
56
val latch = CountDownLatch(1)
57
lateinit var remoteInterface: IRemoteFileService
58
- val ipcReceiver = object : RootIPCReceiver<IRemoteFileService>(application, 0) {
+ val ipcReceiver = object : RootIPCReceiver<IRemoteFileService>(
59
+ application, 0, IRemoteFileService::class.java
60
+ ) {
61
private val releaseLock = Any()
62
63
private var isReleasing = false
0 commit comments