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_trackingLuciq 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.
- 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
- 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
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.
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"
  )
endlane :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"]
    }
  )
endlane :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
  )
endlane :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
  )
endTo run both the tests, and code style validation, run
rake
To automatically fix many of the styling issues, use
rubocop -a
For any other issues and feedback about this plugin, please submit it to this repository.
If you have trouble using plugins, check out the Plugins Troubleshooting guide.
For more information about how the fastlane plugin system works, check out the Plugins documentation.
fastlane is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out fastlane.tools.