You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Build Android app with Instabug metadata reporting"
57
+
end
58
+
59
+
defself.authors
60
+
["Instabug Company"]
61
+
end
62
+
63
+
defself.return_value
64
+
"Returns the result from gradle action"
65
+
end
66
+
67
+
defself.details
68
+
"This action wraps the standard gradle action and adds Instabug-specific metadata reporting. It tracks build events per branch and provides better observability for engineering teams."
69
+
end
70
+
71
+
defself.available_options
72
+
# Start with the original gradle options
73
+
options=Actions::GradleAction.available_options
74
+
75
+
# Add Instabug-specific options
76
+
instabug_options=[
77
+
FastlaneCore::ConfigItem.new(
78
+
key: :branch_name,
79
+
env_name: "INSTABUG_BRANCH_NAME",
80
+
description: "The branch name for tracking builds",
81
+
optional: false,
82
+
type: String
83
+
),
84
+
FastlaneCore::ConfigItem.new(
85
+
key: :instabug_api_key,
86
+
env_name: "INSTABUG_API_KEY",
87
+
description: "Instabug API key for reporting build events",
0 commit comments