I\'ve made a timestamped versionName in build.gradle like 20150707.1125. I want to show the version of the package in react-native app in about window. How I could get vers
I used as reference the answer by @Marcos Demetrio
But I was using expo, so I did this:
import {expo} from '../../app.json'
And in the Component:
{expo.version}
No package install needed.