Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,13 @@ public/
# Local Netlify folder
.netlify

ignore_*.*
ignore_*.*


ios/Runner.ipa
ios/Runner.app.dSYM.zip
ios/fastlane/report.xml
ios/fastlane/README.md

android/fastlane/report.xml
android/fastlane/README.md
4 changes: 4 additions & 0 deletions android/Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"

gem "fastlane"
gem "dotenv"
2 changes: 2 additions & 0 deletions android/fastlane/Appfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
json_key_file(ENV["PLAY_STORE_JSON_KEY_FILE"])
package_name("pl.enteam.aed_map")
48 changes: 48 additions & 0 deletions android/fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
require "dotenv"
Dotenv.load(File.expand_path("../../.env", __dir__))

default_platform(:android)

platform :android do
desc "Push a new beta build to Google Play internal testing track"
lane :beta do
Dir.chdir("../..") do
sh("flutter", "pub", "get")
sh("flutter", "build", "appbundle", "--release")
end

aab_path = File.expand_path("../../build/app/outputs/bundle/release/app-release.aab", __dir__)

upload_to_play_store(
track: "internal",
aab: aab_path,
skip_upload_apk: true,
skip_upload_metadata: true,
skip_upload_changelogs: false,
metadata_path: "./fastlane/metadata/android",
skip_upload_images: true,
skip_upload_screenshots: true
)
end

desc "Submit a new release build to Google Play production track"
lane :release do
Dir.chdir("../..") do
sh("flutter", "pub", "get")
sh("flutter", "build", "appbundle", "--release")
end

aab_path = File.expand_path("../../build/app/outputs/bundle/release/app-release.aab", __dir__)

upload_to_play_store(
track: "production",
aab: aab_path,
skip_upload_apk: true,
skip_upload_metadata: false,
skip_upload_changelogs: false,
skip_upload_images: true,
skip_upload_screenshots: true,
release_status: "completed"
)
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Die Liste der ausstehenden Änderungen wurde hinzugefügt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Die Liste der ausstehenden Änderungen wurde hinzugefügt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The list of pending changes has been added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
The list of pending changes has been added
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Se ha añadido la lista de cambios pendientes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Se ha añadido la lista de cambios pendientes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
La liste des changements en attente a été ajoutée
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
La liste des changements en attente a été ajoutée
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dodano listę oczekujących zmian
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Dodano listę oczekujących zmian
2 changes: 1 addition & 1 deletion assets/aed_poland.geojson

Large diffs are not rendered by default.

Loading
Loading