diff --git a/CHANGELOG.md b/CHANGELOG.md index afc80758..51f6ef3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,9 @@ a beta or production release, they must be documented here). ## [Unreleased] +## Updated +- Android & iOS Fastfiles to automatically distribute uploaded builds to external testers. + ## [0.1.0] - 2021-07-16 ## Added diff --git a/android/fastlane/Fastfile b/android/fastlane/Fastfile index 254dbbc6..54e4df3e 100644 --- a/android/fastlane/Fastfile +++ b/android/fastlane/Fastfile @@ -30,6 +30,7 @@ platform :android do skip_upload_images: true, skip_upload_screenshots: true, skip_upload_apk: true, + skip_upload_metadata: true, version_name: version_info["version_name"], version_code: android_get_version_code(), aab: "../build/app/outputs/bundle/release/app-release.aab", diff --git a/android/fastlane/metadata/android/pt-BR/changelogs/5.txt b/android/fastlane/metadata/android/pt-BR/changelogs/5.txt new file mode 100644 index 00000000..5b97d1f4 --- /dev/null +++ b/android/fastlane/metadata/android/pt-BR/changelogs/5.txt @@ -0,0 +1 @@ +Primeira versão do Memo! \ No newline at end of file diff --git a/android/fastlane/metadata/android/pt-BR/changelogs/default.txt b/android/fastlane/metadata/android/pt-BR/changelogs/default.txt new file mode 100644 index 00000000..a7a16e5d --- /dev/null +++ b/android/fastlane/metadata/android/pt-BR/changelogs/default.txt @@ -0,0 +1 @@ +Correções de bugs e melhorias \ No newline at end of file diff --git a/ios/fastlane/Fastfile b/ios/fastlane/Fastfile index 66e187ea..3a6658fa 100644 --- a/ios/fastlane/Fastfile +++ b/ios/fastlane/Fastfile @@ -110,8 +110,10 @@ platform :ios do upload_to_testflight( api_key: api_key, - skip_waiting_for_build_processing: true, distribute_external: true, + groups: [ + 'External Testers' + ], changelog: changelog, ipa: '../build/ios/ipa/Memo.ipa' )