Skip to content

[Feature] - Repro Steps and Current View #86

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Jul 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
78e8bb6
✨ Adds Android repro steps
alyezz Jul 30, 2019
43f83f5
📝 adds android report screen change api
alyezz Jul 31, 2019
433c61e
📝 Adds setReproStepsMode mapping and enum
alyezz Aug 4, 2019
f984253
Merge branch 'master' into feature/current-view
alyezz Aug 4, 2019
bf0b2ac
📝 update android sdk version
alyezz Aug 4, 2019
0c70a9b
Merge branch 'feature/current-view' of https://github.com/Instabug/In…
alyezz Aug 4, 2019
6a0ac8c
📝 updates changelog
alyezz Aug 5, 2019
4fbe66d
🔥 remove unneeded methods
alyezz Aug 5, 2019
e836f64
📝rename import
alyezz Aug 5, 2019
bd477b7
Update CHANGELOG.md
alyezz Aug 6, 2019
3290791
📝 handling exceptions
alyezz Aug 6, 2019
3c91167
Merge branch 'master' of https://github.com/Instabug/Instabug-Flutter…
alyezz Sep 19, 2019
d04be07
Adds iOS APIs
alyezz Sep 24, 2019
10fd706
Add new iOS api
alyezz Jun 11, 2020
2723cd1
Merge master
alyezz Jun 11, 2020
30fe725
Add new android platform API
alyezz Jun 22, 2020
6d754d0
Handling fast screen transitions
alyezz Jun 22, 2020
1432c11
Add iOS and Android snapshots
alyezz Jun 22, 2020
7626631
revert custom builds
alyezz Jun 23, 2020
d968ae7
rename variables
alyezz Jun 23, 2020
617ff26
Add try catch for race condition
alyezz Jun 23, 2020
c0035cf
Add log for debugging
alyezz Jun 23, 2020
861f00b
Merge branch 'master' into feature/current-view
alyezz Jul 13, 2020
996393b
Bump native SDKs
alyezz Jul 13, 2020
585a1ad
Merge branch 'master' into feature/current-view
alyezz Jul 13, 2020
5406081
lint
alyezz Jul 13, 2020
9e34140
Merge branch 'feature/current-view' of https://github.com/Instabug/In…
alyezz Jul 13, 2020
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
## master
## Master

* Adds setShakingThresholdForiPhone, setShakingThresholdForiPad and setShakingThresholdForAndroid APIs
* Added Proguard rules to protect Flutter bridge class and method names from getting obfuscated when the minifyEnabled flag is set to true.


## v9.1.0 (2020-03-19)

* Bump Native SDKs to v9.1
Expand Down
3 changes: 1 addition & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,7 @@ android {
disable 'InvalidPackage'
}
}

dependencies {
implementation 'com.instabug.library:instabug:9.1.0.0'
implementation 'com.instabug.library:instabug:9.1.6.0'
testImplementation 'junit:junit:4.12'
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import com.instabug.library.InstabugColorTheme;
import com.instabug.library.InstabugCustomTextPlaceHolder;
import com.instabug.library.extendedbugreport.ExtendedBugReport;
import com.instabug.library.visualusersteps.State;

import java.util.HashMap;
import java.util.Locale;
Expand Down Expand Up @@ -57,6 +58,7 @@ final class ArgsRegistry {
registerInstabugReportTypesArgs(ARGS);
registerInstabugExtendedBugReportModeArgs(ARGS);
registerInstabugActionTypesArgs(ARGS);
registerReproStepsModeArgs(ARGS);
}

/**
Expand Down Expand Up @@ -204,4 +206,10 @@ static void registerInstabugActionTypesArgs(Map<String, Object> args) {
args.put("ActionType.addCommentToFeature",ActionType.ADD_COMMENT_TO_FEATURE);
}

static void registerReproStepsModeArgs(Map<String, Object> args) {
args.put("ReproStepsMode.enabled", State.ENABLED);
args.put("ReproStepsMode.disabled", State.DISABLED);
args.put("ReproStepsMode.enabledWithNoScreenshots",State.ENABLED_WITH_NO_SCREENSHOTS);
}

}
Loading