We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b8be35 commit 7845de0Copy full SHA for 7845de0
1 file changed
react-native.config.js
@@ -1,4 +1,5 @@
1
const { versioner } = require('./lib/index')
2
+const path = require('path')
3
4
module.exports = {
5
commands: [{
@@ -11,10 +12,16 @@ module.exports = {
11
12
return
13
}
14
15
+ const appGradlePath = path.join(
16
+ config.project.android.sourceDir,
17
+ config.project.android.appName,
18
+ 'build.gradle'
19
+ )
20
+
21
versioner({
22
root: config.root,
23
pbxprojPath: config.project.ios.pbxprojPath,
- buildGradlePath: config.project.android.buildGradlePath,
24
+ buildGradlePath: appGradlePath,
25
type: args.type,
26
skipCodeFor: args.skipCodeFor
27
? args.skipCodeFor.split(' ')
0 commit comments