Skip to content

Commit 1ca2e7e

Browse files
committed
v 1.0.2
1 parent 6275cca commit 1ca2e7e

6 files changed

Lines changed: 17 additions & 8 deletions

File tree

android/app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
applicationId "app.modus.beep"
1111
minSdkVersion 21
1212
targetSdkVersion 27
13-
versionCode 5
14-
versionName "1.0.1"
13+
versionCode 7
14+
versionName "1.0.2"
1515
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1616
}
1717
signingConfigs {

android/fastlane/Fastfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,7 @@ platform :android do
5151
end
5252

5353
lane :hockeybeta do
54-
increment_version_code gradle_build: 'app/build.gradle'
55-
gradle(task: "clean assembleRelease")
54+
release
5655
hockey(
5756
api_token: ENV["HOCKEY_API_TOKEN"]
5857
)

ios/App/App.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@
384384
buildSettings = {
385385
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
386386
CODE_SIGN_STYLE = Automatic;
387-
CURRENT_PROJECT_VERSION = 21;
387+
CURRENT_PROJECT_VERSION = 23;
388388
DEVELOPMENT_TEAM = 287TS9B2H2;
389389
FRAMEWORK_SEARCH_PATHS = (
390390
"$(inherited)",
@@ -408,7 +408,7 @@
408408
buildSettings = {
409409
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
410410
CODE_SIGN_STYLE = Automatic;
411-
CURRENT_PROJECT_VERSION = 21;
411+
CURRENT_PROJECT_VERSION = 23;
412412
DEVELOPMENT_TEAM = 287TS9B2H2;
413413
FRAMEWORK_SEARCH_PATHS = (
414414
"$(inherited)",

ios/App/App/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<key>CFBundlePackageType</key>
2020
<string>APPL</string>
2121
<key>CFBundleShortVersionString</key>
22-
<string>1.0</string>
22+
<string>1.0.2</string>
2323
<key>CFBundleURLTypes</key>
2424
<array>
2525
<dict>
@@ -32,7 +32,7 @@
3232
</dict>
3333
</array>
3434
<key>CFBundleVersion</key>
35-
<string>21</string>
35+
<string>23</string>
3636
<key>LSRequiresIPhoneOS</key>
3737
<true/>
3838
<key>NSAppTransportSecurity</key>

ios/App/fastlane/Fastfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,9 @@ platform :ios do
3434
api_token: ENV["HOCKEY_API_TOKEN"]
3535
)
3636
end
37+
38+
lane :deployall do
39+
hockeybeta
40+
upload_to_testflight
41+
end
3742
end

ios/App/fastlane/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ Push a new beta build to TestFlight
2626
fastlane ios hockeybeta
2727
```
2828

29+
### ios deployall
30+
```
31+
fastlane ios deployall
32+
```
33+
2934

3035
----
3136

0 commit comments

Comments
 (0)