Skip to content
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Testing distribution is the process of distributing test builds to designated te
## Benefits of Using Testing Distribution

1. **Simplified Binary Distribution**.
- **Skip Traditional Stores:** Share .xcarchive .IPA, APK, AAB, Zip, files directly, avoiding the need to use App Store TestFlight or Google Play Internal Testing.
- **Skip Traditional Stores:** Share IPA, APK, AAB files directly, avoiding the need to use App Store TestFlight or Google Play Internal Testing.
2. **Streamlined Workflow:**
- **Automated Processes:** Platforms like Appcircle automate the distribution process, saving time and reducing manual effort.
- **Seamless Integration:** Integrates smoothly with existing DevOps pipelines, enabling efficient build and distribution workflows.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ def self.run(params)
message = params[:message]
createProfileIfNotExists = params[:createProfileIfNotExists]

valid_extensions = ['.apk', '.aab', '.ipa', '.zip']
valid_extensions = ['.apk', '.aab', '.ipa']

file_extension = File.extname(appPath).downcase
unless valid_extensions.include?(file_extension)
UI.user_error!("Invalid file extension: #{file_extension}. For Android, use .apk or .aab. For iOS, use .ipa or .zip(.xcarchive).")
UI.user_error!("Invalid file extension: #{file_extension}. For Android, use .apk or .aab. For iOS, use .ipa.")
end

if personalAPIToken.nil?
Expand Down Expand Up @@ -135,7 +135,7 @@ def self.available_options

FastlaneCore::ConfigItem.new(key: :appPath,
env_name: "AC_APP_PATH",
description: "Specify the path to your application file. For iOS, this can be a .ipa or .xcarchive file path. For Android, specify the .apk or .appbundle file path",
description: "Specify the path to your application file. For iOS, this can be a .ipa file path. For Android, specify the .apk or .aab file path",
optional: false,
type: String),

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module AppcircleTestingDistribution
VERSION = "0.2.2"
VERSION = "0.2.3"
end
end