Compare commits

...

5 commits

Author SHA1 Message Date
d6b645112e Merge pull request 'feature/prepare-next-dev' (#16) from feature/prepare-next-dev into develop
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #16
2023-05-29 14:23:17 +00:00
713d8f57be Bump version to next develop #noissue
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-29 16:14:59 +02:00
bc777d4826 Add documentation for release with bundler and fastlane #noissue
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-29 15:59:59 +02:00
ad9a3a15f5 Prepare next develop cycle #noissue
All checks were successful
continuous-integration/drone/push Build is passing
2023-05-29 15:47:12 +02:00
dbb4929939 Merge pull request 'Prepare release of 1.6.1+19' (#15) from develop into master
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #15
2023-05-29 13:43:26 +00:00
4 changed files with 28 additions and 2 deletions

View file

@ -1,5 +1,8 @@
# CHANGELOG
## 1.6.2+20 - UNRELEASED
* ...
## 1.6.1+19
* Updated internal dependencies

View file

@ -104,13 +104,34 @@ following to build for Android `fastlane android build`.
##### Android
Use `fastlane android beta` to build and upload a new beta version to the Play Store.
It's recommended you set up `fastlane` via `bundler` (you need this to be installed on your machine).
Go into the `android/` sub-directory of the project
```shell
bundle config set --local path 'vendor/bundle'
bundle install
# update fastlane when needed
bundle update fastlane
# build only
bundle exec fastlane android build
# deploy (push BETA to app store)
bundle exec fastlane android beta
# deploy (push to app store)
bundle exec fastlane android deploy
```
##### iOS
For iOS you need to execute `fastlane ios build` before uploading to testflight with
`fastlane ios beta`.
Probably do the same Ruby/fastlane setup as mentioned under the _Android_ section.
### Release manually (not recommended)
See the following links on how to setup:

2
android/.gitignore vendored
View file

@ -5,3 +5,5 @@ gradle-wrapper.jar
/gradlew.bat
/local.properties
GeneratedPluginRegistrant.java
.bundle
vendor/

View file

@ -11,7 +11,7 @@ description: A mobile client for FileBin.
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
version: 1.6.1+19
version: 1.6.2+20
environment:
sdk: '>=2.19.4 <3.0.0'