When trying to install according to the docs, I ran into an error with this line in android/app/build.gradle:
compile project(':react-native-version-check')
Changing it to this line solved the problem:
runtimeOnly project(':react-native-version-check')
Hope it helps.