luciq_agent_release_tracking plugin
Getting Started
This project is a fastlane plugin. To get started with fastlane-plugin-luciq_agent_release_tracking
, add it to your project by running:
fastlane add_plugin luciq_agent_release_tracking
About luciq_agent_release_tracking
Luciq agent for tracking release builds and uploads to App Store and Play Store with comprehensive metadata reporting. This plugin provides custom actions that wrap the standard Fastlane actions and automatically report build and upload events to Luciq systems for better observability and integration into internal pipelines.
Available Actions
-
luciq_build_ios_app
- Build iOS apps with Luciq agent reporting -
luciq_build_android_app
- Build Android apps with Luciq agent reporting -
luciq_upload_to_app_store
- Upload iOS builds to App Store with Luciq agent reporting -
luciq_upload_to_play_store
- Upload Android builds to Play Store with Luciq agent reporting
Features
- Automatic reporting of build and upload events to Luciq
- Branch-based tracking for comprehensive release observability
- Integration with existing Fastlane workflows
- Support for both iOS and Android platforms
- Secure API communication with Luciq services
Example
Check out the example Fastfile
to see how to use this plugin. Try it by cloning the repo, running fastlane install_plugins
and bundle exec fastlane test
.
Usage Examples
iOS Build
lane :build_ios do
luciq_build_ios_app(
branch_name: "main",
luciq_api_key: ENV["LUCIQ_API_KEY"],
workspace: "MyApp.xcworkspace",
scheme: "MyApp",
export_method: "app-store",
configuration: "Release"
)
end
Android Build
lane :build_android do
luciq_build_android_app(
branch_name: "main",
luciq_api_key: ENV["LUCIQ_API_KEY"],
task: "assembleRelease",
project_dir: "android/",
properties: {
"android.injected.signing.store.file" => "keystore.jks",
"android.injected.signing.store.password" => ENV["KEYSTORE_PASSWORD"],
"android.injected.signing.key.alias" => "key0",
"android.injected.signing.key.password" => ENV["KEY_PASSWORD"]
}
)
end
iOS Upload
lane :upload_ios do
luciq_upload_to_app_store(
branch_name: "main",
luciq_api_key: ENV["LUCIQ_API_KEY"],
ipa: "path/to/your/app.ipa",
skip_screenshots: true,
skip_metadata: true
)
end
Android Upload
lane :upload_android do
luciq_upload_to_play_store(
branch_name: "main",
luciq_api_key: ENV["LUCIQ_API_KEY"],
package_name: "com.example.app",
aab: "path/to/your/app.aab",
track: "internal",
skip_upload_screenshots: true
)
end
Run tests for this plugin
To run both the tests, and code style validation, run
rake
To automatically fix many of the styling issues, use
rubocop -a
Issues and Feedback
For any other issues and feedback about this plugin, please submit it to this repository.
Troubleshooting
If you have trouble using plugins, check out the Plugins Troubleshooting guide.
Using fastlane Plugins
For more information about how the fastlane
plugin system works, check out the Plugins documentation.
About fastlane
fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.