Home
last modified time | relevance | path

Searched refs:getPluginProperties (Results 1 – 8 of 8) sorted by relevance

/expo/packages/expo-manifests/ios/Tests/
H A DManifestSpec.swift13 expect(manifest.getPluginProperties(packageName: "test")).to(beNil()) in spec()
17 expect(manifest.getPluginProperties(packageName: "test")).to(beNil()) in spec()
21 expect(manifest.getPluginProperties(packageName: "test")).to(beNil()) in spec()
27 expect(manifest.getPluginProperties(packageName: "test")).to(beNil()) in spec()
33 let props = manifest.getPluginProperties(packageName: "test") in spec()
40 expect(manifest.getPluginProperties(packageName: "test")).to(beNil()) in spec()
/expo/packages/expo-manifests/android/src/test/java/expo/modules/manifests/core/
H A DManifestTest.kt14 Truth.assertThat(manifest.getPluginProperties("test")).isNull() in getPluginProperties_emptyManifest_returnsNull()
21 Truth.assertThat(manifest.getPluginProperties("test")).isNull() in getPluginProperties_emptyPlugins_returnsNull()
28 Truth.assertThat(manifest.getPluginProperties("test")).isNull() in getPluginProperties_nonMatchedPlugins_returnsNull()
35 Truth.assertThat(manifest.getPluginProperties("test")).isNull() in getPluginProperties_matchedPluginWithoutProps_returnsNull()
42 Truth.assertThat(manifest.getPluginProperties("test")).isNull() in getPluginProperties_matchedPluginWithoutPropsAsNestedArray_returnsNull()
50 val result = manifest.getPluginProperties("test") in getPluginProperties_matchedPluginWithProps_returnsProps()
60 val result = manifest.getPluginProperties("test") in getPluginProperties_matchedPluginWithNestedProps_returnsNestedProps()
/expo/android/expoview/src/main/java/versioned/host/exp/exponent/
H A DExpoNetworkInterceptor.kt21 …val buildProps = (manifest?.getPluginProperties("expo-build-properties")?.get("android") as? Map<*… in start()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/
H A DExpoNetworkInterceptor.kt21 …val buildProps = (manifest?.getPluginProperties("expo-build-properties")?.get("android") as? Map<*… in start()
/expo/packages/expo-manifests/android/src/main/java/expo/modules/manifests/core/
H A DManifest.kt236 fun getPluginProperties(packageName: String): Map<String, Any>? { in updateJSON() method
/expo/packages/expo-manifests/ios/EXManifests/
H A DManifest.swift325 public func getPluginProperties(packageName: String) -> [String: Any]? { in getPluginProperties() function
/expo/ios/versioned/sdk49/EXManifests/EXManifests/
H A DManifest.swift325 public func getPluginProperties(packageName: String) -> [String: Any]? { in getPluginProperties() function
/expo/packages/expo-manifests/
H A DCHANGELOG.md61 - Added `Manifests.getPluginProperties()` helper to query dedicated package's properties inside the…