This project is a fastlane plugin. To get started with fastlane-plugin-instabug-stores-upload
, add it to your project by running:
fastlane add_plugin instabug-stores-upload
Wrapper plugin for uploading builds to App Store and Play Store with Instabug-specific metadata reporting. This plugin provides custom actions that wrap the standard Fastlane actions and automatically report build and upload events to Instabug systems for better observability and integration into internal pipelines.
instabug_build_ios_app
- Build iOS apps with Instabug reportinginstabug_build_android_app
- Build Android apps with Instabug reportinginstabug_upload_to_app_store
- Upload iOS builds to App Store with Instabug reportinginstabug_upload_to_play_store
- Upload Android builds to Play Store with Instabug reporting
- Automatic reporting of build and upload events to Instabug
- Branch-based tracking for Instabug Agents observability
- Integration with existing Fastlane workflows
- Support for both iOS and Android platforms
- Secure API communication with Instabug 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
instabug_build_ios_app(
branch_name: "main",
instabug_api_key: ENV["INSTABUG_API_KEY"],
workspace: "MyApp.xcworkspace",
scheme: "MyApp",
export_method: "app-store",
configuration: "Release"
)
end
lane :build_android do
instabug_build_android_app(
branch_name: "main",
instabug_api_key: ENV["INSTABUG_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
lane :upload_ios do
instabug_upload_to_app_store(
branch_name: "main",
instabug_api_key: ENV["INSTABUG_API_KEY"],
ipa: "path/to/your/app.ipa",
skip_screenshots: true,
skip_metadata: true
)
end
lane :upload_android do
instabug_upload_to_play_store(
branch_name: "main",
instabug_api_key: ENV["INSTABUG_API_KEY"],
package_name: "com.example.app",
aab: "path/to/your/app.aab",
track: "internal",
skip_upload_screenshots: true
)
end
To 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.