Skip to content

Commit

Permalink
[Fix] Work around reflection error after ProGuard.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanghai committed Jul 4, 2020
1 parent 2ea4fdf commit 6b9d799
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@ object RootFileService : RemoteFileService(
RootJava.cleanupCache(application)
val latch = CountDownLatch(1)
lateinit var remoteInterface: IRemoteFileService
val ipcReceiver = object : RootIPCReceiver<IRemoteFileService>(application, 0) {
val ipcReceiver = object : RootIPCReceiver<IRemoteFileService>(
application, 0, IRemoteFileService::class.java
) {
private val releaseLock = Any()

private var isReleasing = false
Expand Down

0 comments on commit 6b9d799

Please sign in to comment.