Add fastlane
2
fastlane/Appfile
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
json_key_file "./../Google_Play_Android_Developer.json" # Path to the json secret file - Follow https://docs.fastlane.tools/actions/supply/#setup to get one
|
||||||
|
package_name "com.kunzisoft.keepass" # e.g. com.krausefx.app
|
||||||
36
fastlane/Fastfile
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
# 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
|
||||||
|
#
|
||||||
|
|
||||||
|
# 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 :tests do
|
||||||
|
gradle(task: "test")
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "Build a new Beta version"
|
||||||
|
lane :build_beta_google_free do
|
||||||
|
gradle(
|
||||||
|
task: "assemble",
|
||||||
|
flavor: "free_google",
|
||||||
|
build_type: "Release"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
desc "Deploy a new Beta version to the Google Play"
|
||||||
|
lane :deploy_beta_google_free do
|
||||||
|
upload_to_play_store(
|
||||||
|
track: "beta"
|
||||||
|
)
|
||||||
|
end
|
||||||
|
end
|
||||||
15
fastlane/metadata/android/en-US/full_description.txt
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
If you want a light material design Keepass client to manage keys and passwords in secure database, you're in the right place !
|
||||||
|
|
||||||
|
Features :
|
||||||
|
* Create database files / entries and groups
|
||||||
|
* Support for .kdb and .kdbx files (version 1 to 4)
|
||||||
|
* Open database, copy username / password, open URI / URL
|
||||||
|
* Fingerprint for fast unlocking
|
||||||
|
* Material design with themes
|
||||||
|
* AutoFill and Integration (Development in progress)
|
||||||
|
* Precise management of settings
|
||||||
|
|
||||||
|
Keepass DX is opensource and ad-free.
|
||||||
|
You can donate for a better service and a quick development of your features.
|
||||||
|
|
||||||
|
Any issue : https://github.com/Kunzisoft/KeePassDX/issues
|
||||||
|
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
|
Before Width: | Height: | Size: 53 KiB After Width: | Height: | Size: 53 KiB |
|
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 34 KiB |
|
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 51 KiB After Width: | Height: | Size: 51 KiB |
|
Before Width: | Height: | Size: 58 KiB After Width: | Height: | Size: 58 KiB |
1
fastlane/metadata/android/en-US/short_description.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
KeePass deluxe to manage your passwords in a secure way
|
||||||
1
fastlane/metadata/android/en-US/title.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
KeePass DX
|
||||||
15
fastlane/metadata/android/fr-FR/full_description.txt
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
Si vous voulez un client Keepass material design pour gérer vos clés et mots de passe dans une base de données sécurisée, vous êtes au bon endroit !
|
||||||
|
|
||||||
|
Fonctionnalités :
|
||||||
|
* Création de fichiers de base de données / entrées et groupes
|
||||||
|
* Support des fichiers .kdb et .kdbx (version 1 à 4)
|
||||||
|
* Ouverture de la base de données, copie du nom d'utilisateur / mot de passe, ouverture des URI / URL
|
||||||
|
* Empreinte digitale pour déblocage rapide
|
||||||
|
* Material design avec thèmes
|
||||||
|
* AutoFill et Intégration (Développement en cours)
|
||||||
|
* Gestion précise des paramètres
|
||||||
|
|
||||||
|
Keepass DX est opensource et sans publicité.
|
||||||
|
Vous pouvez faire un don pour un meilleur service et un développement rapide de vos fonctionnalités.
|
||||||
|
|
||||||
|
Vous avez un bug : https://github.com/Kunzisoft/KeePassDX/issues
|
||||||
1
fastlane/metadata/android/fr-FR/short_description.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
KeePass deluxe pour gérer vos mots de passe de façon sécurisée
|
||||||