Skip to content
This repository was archived by the owner on May 29, 2022. It is now read-only.

Commit aeade14

Browse files
committed
Added what izzy wants. I guess
1 parent 27965df commit aeade14

File tree

28 files changed

+91
-0
lines changed

28 files changed

+91
-0
lines changed

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source "https://rubygems.org"
2+
3+
gem "fastlane"

fastlane/Appfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
json_key_file("") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
2+
package_name("net.codeksion.coderatormobil.coderatorfoss") # e.g. com.krausefx.app

fastlane/Fastfile

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# This file contains the fastlane.tools configuration
2+
# You can find the documentation at https://docs.fastlane.tools
3+
#
4+
# For a list of all available actions, check out
5+
#
6+
# https://docs.fastlane.tools/actions
7+
#
8+
# For a list of all available plugins, check out
9+
#
10+
# https://docs.fastlane.tools/plugins/available-plugins
11+
#
12+
13+
# Uncomment the line if you want fastlane to automatically update itself
14+
# update_fastlane
15+
16+
default_platform(:android)
17+
18+
platform :android do
19+
desc "Runs all the tests"
20+
lane :test do
21+
gradle(task: "test")
22+
end
23+
24+
desc "Submit a new Beta Build to Crashlytics Beta"
25+
lane :beta do
26+
gradle(task: "clean assembleRelease")
27+
crashlytics
28+
29+
# sh "your_script.sh"
30+
# You can also use other beta testing services here
31+
end
32+
33+
desc "Deploy a new version to the Google Play"
34+
lane :deploy do
35+
gradle(task: "clean assembleRelease")
36+
upload_to_play_store
37+
end
38+
end

fastlane/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
fastlane documentation
2+
================
3+
# Installation
4+
5+
Make sure you have the latest version of the Xcode command line tools installed:
6+
7+
```
8+
xcode-select --install
9+
```
10+
11+
Install _fastlane_ using
12+
```
13+
[sudo] gem install fastlane -NV
14+
```
15+
or alternatively using `brew install fastlane`
16+
17+
# Available Actions
18+
## Android
19+
### android test
20+
```
21+
fastlane android test
22+
```
23+
Runs all the tests
24+
### android beta
25+
```
26+
fastlane android beta
27+
```
28+
Submit a new Beta Build to Crashlytics Beta
29+
### android deploy
30+
```
31+
fastlane android deploy
32+
```
33+
Deploy a new version to the Google Play
34+
35+
----
36+
37+
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
38+
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
39+
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
Free, open source, ad-free Coderator Mobil for everyone. For F-droid.
2+
3+
Basically, Coderator Mobil is for listing, viewing or playing content. It can be called as the web address called ‘Arsivler’ converted into a mobile program. 👉 👈 It’s all in Turkish."
254 KB
Loading
27.3 KB
Loading
27.2 KB
Loading
9.72 KB
Loading
20.2 KB
Loading

0 commit comments

Comments
 (0)