mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
feat: add fastlane for F-Droid (#889)
Co-authored-by: Ushie <ushiekane@gmail.com>
This commit is contained in:
parent
d030b0af70
commit
9592dde534
11 changed files with 114 additions and 0 deletions
3
android/Gemfile
Normal file
3
android/Gemfile
Normal file
|
@ -0,0 +1,3 @@
|
|||
source "https://rubygems.org"
|
||||
|
||||
gem "fastlane"
|
2
android/fastlane/Appfile
Normal file
2
android/fastlane/Appfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
json_key_file("") # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
|
||||
package_name("app.revanced.manager.flutter") # e.g. com.krausefx.app
|
38
android/fastlane/Fastfile
Normal file
38
android/fastlane/Fastfile
Normal file
|
@ -0,0 +1,38 @@
|
|||
# This file contains the fastlane.tools configuration
|
||||
# You can find the documentation at https://docs.fastlane.tools
|
||||
#
|
||||
# For a list of all available actions, check out
|
||||
#
|
||||
# https://docs.fastlane.tools/actions
|
||||
#
|
||||
# For a list of all available plugins, check out
|
||||
#
|
||||
# https://docs.fastlane.tools/plugins/available-plugins
|
||||
#
|
||||
|
||||
# Uncomment the line if you want fastlane to automatically update itself
|
||||
# update_fastlane
|
||||
|
||||
default_platform(:android)
|
||||
|
||||
platform :android do
|
||||
desc "Runs all the tests"
|
||||
lane :test do
|
||||
gradle(task: "test")
|
||||
end
|
||||
|
||||
desc "Submit a new Beta Build to Crashlytics Beta"
|
||||
lane :beta do
|
||||
gradle(task: "clean assembleRelease")
|
||||
crashlytics
|
||||
|
||||
# sh "your_script.sh"
|
||||
# You can also use other beta testing services here
|
||||
end
|
||||
|
||||
desc "Deploy a new version to the Google Play"
|
||||
lane :deploy do
|
||||
gradle(task: "clean assembleRelease")
|
||||
upload_to_play_store
|
||||
end
|
||||
end
|
48
android/fastlane/README.md
Normal file
48
android/fastlane/README.md
Normal file
|
@ -0,0 +1,48 @@
|
|||
fastlane documentation
|
||||
----
|
||||
|
||||
# Installation
|
||||
|
||||
Make sure you have the latest version of the Xcode command line tools installed:
|
||||
|
||||
```sh
|
||||
xcode-select --install
|
||||
```
|
||||
|
||||
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
||||
|
||||
# Available Actions
|
||||
|
||||
## Android
|
||||
|
||||
### android test
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane android test
|
||||
```
|
||||
|
||||
Runs all the tests
|
||||
|
||||
### android beta
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane android beta
|
||||
```
|
||||
|
||||
Submit a new Beta Build to Crashlytics Beta
|
||||
|
||||
### android deploy
|
||||
|
||||
```sh
|
||||
[bundle exec] fastlane android deploy
|
||||
```
|
||||
|
||||
Deploy a new version to the Google Play
|
||||
|
||||
----
|
||||
|
||||
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
|
||||
|
||||
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
|
||||
|
||||
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
|
1
android/fastlane/metadata/android/full_description.txt
Normal file
1
android/fastlane/metadata/android/full_description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
The ReVanced Manager is an Android application that allows you to modify any Dalvik Android application to add, remove and/or modify existing functionality. It dissassembles the APK locally on your device, makes the required changes using ReVanced Patcher and then assembles it back into an APK again.
|
BIN
android/fastlane/metadata/android/images/icon.png
Normal file
BIN
android/fastlane/metadata/android/images/icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
BIN
android/fastlane/metadata/android/images/phoneScreenshots/1.jpg
Normal file
BIN
android/fastlane/metadata/android/images/phoneScreenshots/1.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 374 KiB |
BIN
android/fastlane/metadata/android/images/phoneScreenshots/2.jpg
Normal file
BIN
android/fastlane/metadata/android/images/phoneScreenshots/2.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 694 KiB |
1
android/fastlane/metadata/android/short_description.txt
Normal file
1
android/fastlane/metadata/android/short_description.txt
Normal file
|
@ -0,0 +1 @@
|
|||
Patch your favourite apps, right on your device.
|
1
android/fastlane/metadata/android/title.txt
Normal file
1
android/fastlane/metadata/android/title.txt
Normal file
|
@ -0,0 +1 @@
|
|||
ReVanced Manager
|
20
android/fastlane/report.xml
Normal file
20
android/fastlane/report.xml
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue