{"_rev":"4-492c3b334eb5c94119ff76b3f09968da","time":{"created":"2025-06-18T12:06:38.419Z","modified":"2025-06-18T12:06:39.076Z","1.2.0":"2025-06-18T11:18:10.259Z","1.2.1":"2025-06-18T12:06:38.804Z"},"_id":"@alexartisan/react-native-get-values","name":"@alexartisan/react-native-get-values","dist-tags":{"latest":"1.2.1"},"versions":{"1.2.1":{"name":"@alexartisan/react-native-get-values","version":"1.2.1","description":"Read values from your Info.plist (iOS) or values/strings.xml (Android) on your React Native project","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/gopherios/react-native-get-values.git"},"keywords":["react","native","react-native"],"author":{"name":"Steven J. Selcuk"},"publishConfig":{"registry":"https://registry.npmjs.org/"},"license":"ISC","bugs":{"url":"https://github.com/gopherios/react-native-get-values/issues"},"homepage":"https://github.com/gopherios/react-native-get-values#readme","peerDependencies":{"react-native":"*"},"gitHead":"fadabe98713ed7d4183a3ef9bfec666c61cdd9f2","_id":"@alexartisan/react-native-get-values@1.2.1","_nodeVersion":"16.14.0","_npmVersion":"8.3.1","dist":{"integrity":"sha512-bQWHROtCfwqlr8h5SZTl+HpZHRhRwpqirPzkTBYS6aKpG0Q7q3i1XNv5z7rPJjtbxFwZyZFBICAVtWqhONtvWw==","shasum":"1a57b07bb9e6f9be147f722d0346a21dc769c5a8","tarball":"https://registry.npmjs.org/@alexartisan/react-native-get-values/-/react-native-get-values-1.2.1.tgz","fileCount":15,"unpackedSize":16645,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQC5CVtTDJsMgwuNrP/PsUJF7FWciOAh6Cg107djzHD6jAIhAOsR/LeVzReB6ty1KSTD0CW05KDOUe7m3tc9dhXubukE"}]},"_npmUser":{"name":"alexartisan","email":"strangleting@gmail.com","actor":{"name":"alexartisan","email":"strangleting@gmail.com","type":"user"}},"directories":{},"maintainers":[{"name":"alexartisan","email":"strangleting@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/react-native-get-values_1.2.1_1750248398559_0.7411729940920235"},"_hasShrinkwrap":false}},"maintainers":[{"name":"alexartisan","email":"strangleting@gmail.com"}],"description":"Read values from your Info.plist (iOS) or values/strings.xml (Android) on your React Native project","homepage":"https://github.com/gopherios/react-native-get-values#readme","keywords":["react","native","react-native"],"repository":{"type":"git","url":"git+https://github.com/gopherios/react-native-get-values.git"},"author":{"name":"Steven J. Selcuk"},"bugs":{"url":"https://github.com/gopherios/react-native-get-values/issues"},"license":"ISC","readme":"\n# react-native-get-values\n\n## About\n\nRead values from your Info.plist (iOS) or values/strings.xml (Android) on your React Native project\n\n## Getting started\n\n`yarn add @alexartisan/react-native-get-values`\n\nor\n\n`npm install @alexartisan/react-native-get-values --save`\n\n## Usage\n\n### For iOS\n\nAs a classic way, open your xcode project and add rows to Info.plist or\n\nOpen  `your-RN-project/ios/RNCodeTest/Info.plist` file \nand add your keys&values like this\n\n```xml\n...\n\t<key>YOUR_KEY</key>\n\t<string>asnltgfhe7s9ab</string>\n\t<key>YOUR_ANOTHER_KEY</key>\n\t<string>se7sbans84mvbsya</string>\n...\n</dict>\n</plist>\n\n```\n\n### For android\n\nOpen `your-RN-project/android/app/src/main/res/values/strings.xml` file\nand add your keys&values like this\n\n```xml\n<resources>\n    <string name=\"app_name\">your-RN-project</string>\n    <string name=\"YOUR_KEY\">asnltgfhe7s9ab</string>\n    <string name=\"YOUR_ANOTHER_KEY\">se7sbans84mvbsya</string>\n</resources>\n\n```\n\n```javascript\nimport getValue from '@alexartisan/react-native-get-values';\n\n// ...\n\nconst getTheKey = async () => {\n      const YourKeyValue = await getValue('YOUR_KEY');\n      return key\n}\n\n// ...\n\n```\n","readmeFilename":"README.md"}