Browse Source

[RN] Increment short app version from 1.1 to 1.2

Now that Apple have approved build 1.1.185 for release in the App Store,
the short app version needs to be incremented; otherwise, no new builds
can be uploaded to TestFlight and, respectively, for release in the App
Store.
master
Lyubomir Marinov 8 years ago
parent
commit
cac68dbaba
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      android/app/build.gradle
  2. 1
    1
      ios/app/Info.plist

+ 1
- 1
android/app/build.gradle View File

91
         minSdkVersion 16
91
         minSdkVersion 16
92
         targetSdkVersion 22
92
         targetSdkVersion 22
93
         versionCode Integer.parseInt("${version}")
93
         versionCode Integer.parseInt("${version}")
94
-        versionName "1.1.${version}"
94
+        versionName "1.2.${version}"
95
         ndk {
95
         ndk {
96
             abiFilters 'armeabi-v7a', 'x86'
96
             abiFilters 'armeabi-v7a', 'x86'
97
         }
97
         }

+ 1
- 1
ios/app/Info.plist View File

17
 	<key>CFBundlePackageType</key>
17
 	<key>CFBundlePackageType</key>
18
 	<string>APPL</string>
18
 	<string>APPL</string>
19
 	<key>CFBundleShortVersionString</key>
19
 	<key>CFBundleShortVersionString</key>
20
-	<string>1.1</string>
20
+	<string>1.2</string>
21
 	<key>CFBundleSignature</key>
21
 	<key>CFBundleSignature</key>
22
 	<string>????</string>
22
 	<string>????</string>
23
 	<key>CFBundleVersion</key>
23
 	<key>CFBundleVersion</key>

Loading…
Cancel
Save