Home
last modified time | relevance | path

Searched refs:customMetadata (Results 1 – 3 of 3) sorted by relevance

/expo/packages/expo-branch/ios/EXBranch/RNBranch/
H A DBranchContentMetadata+RNBranch.m42 …@"customMetadata": [RNBranchProperty propertyWithSetterSelector:@selector(setCustomMetadataWithDic…
98 - (void)setCustomMetadataWithDictionary:(NSDictionary *)customMetadata
100 self.customMetadata = customMetadata.mutableCopy;
H A DBranchContentMetadata+RNBranch.h22 - (void)setCustomMetadataWithDictionary:(NSDictionary *)customMetadata;
/expo/packages/expo-branch/android/src/main/java/io/branch/rnbranch/
H A DRNBranchModule.java854 ReadableMap customMetadata = map.getMap("customMetadata"); in createContentMetadata() local
855 ReadableMapKeySetIterator it = customMetadata.keySetIterator(); in createContentMetadata()
858 metadata.addCustomMetadata(key, customMetadata.getString(key)); in createContentMetadata()