···11+json_key_file("") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
22+package_name("industries.geesawra.monarch") # e.g. com.krausefx.app
+26
fastlane/Fastfile
···11+# This file contains the fastlane.tools configuration
22+# You can find the documentation at https://docs.fastlane.tools
33+#
44+# For a list of all available actions, check out
55+#
66+# https://docs.fastlane.tools/actions
77+#
88+# For a list of all available plugins, check out
99+#
1010+# https://docs.fastlane.tools/plugins/available-plugins
1111+#
1212+1313+# Uncomment the line if you want fastlane to automatically update itself
1414+# update_fastlane
1515+1616+default_platform(:android)
1717+1818+platform :android do
1919+ lane :release_bin do
2020+ desc "Build a release binary"
2121+ gradle(
2222+ task: "assemble",
2323+ build_type: "release"
2424+ )
2525+ end
2626+end
+32
fastlane/README.md
···11+fastlane documentation
22+----
33+44+# Installation
55+66+Make sure you have the latest version of the Xcode command line tools installed:
77+88+```sh
99+xcode-select --install
1010+```
1111+1212+For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
1313+1414+# Available Actions
1515+1616+## Android
1717+1818+### android release_bin
1919+2020+```sh
2121+[bundle exec] fastlane android release_bin
2222+```
2323+2424+2525+2626+----
2727+2828+This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
2929+3030+More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
3131+3232+The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).