Home
last modified time | relevance | path

Searched refs:getProtectedFieldValue (Results 1 – 2 of 2) sorted by relevance

/expo/packages/expo-dev-launcher/android/src/debug/java/expo/modules/devlauncher/react/
H A DDevLauncherDevSupportManagerSwapper.kt11 import expo.modules.devlauncher.helpers.getProtectedFieldValue
39 …applicationContext = devManagerClass.getProtectedFieldValue(currentDevSupportManager, "mApplicatio… in swapDevSupportManagerImpl()
40 …reactInstanceManagerHelper = devManagerClass.getProtectedFieldValue(currentDevSupportManager, DevL… in swapDevSupportManagerImpl()
41 …packagerPathForJSBundleName = devManagerClass.getProtectedFieldValue(currentDevSupportManager, "mJ… in swapDevSupportManagerImpl()
43 …redBoxHandler = devManagerClass.getProtectedFieldValue(currentDevSupportManager, "mRedBoxHandler"), in swapDevSupportManagerImpl()
44 …devBundleDownloadListener = devManagerClass.getProtectedFieldValue(currentDevSupportManager, "mBun… in swapDevSupportManagerImpl()
46 …customPackagerCommandHandlers = devManagerClass.getProtectedFieldValue(currentDevSupportManager, "… in swapDevSupportManagerImpl()
63 val devServerHelper: DevServerHelper = devManagerClass.getProtectedFieldValue( in swapDevSupportManagerImpl()
69 … val packagerConnectionLock: Boolean = DevServerHelper::class.java.getProtectedFieldValue( in swapDevSupportManagerImpl()
80 … val packagerClient: JSPackagerClient? = DevServerHelper::class.java.getProtectedFieldValue( in swapDevSupportManagerImpl()
[all …]
/expo/packages/expo-dev-launcher/android/src/main/java/expo/modules/devlauncher/helpers/
H A DDevLauncherReflectionExtensions.kt39 fun <T, U> Class<out T>.getProtectedFieldValue(obj: T, filedName: String): U { in getProtectedFieldValue() method