Skip to content

Commit 11ab915

Browse files
upgrade azure package (#602)
upgrade azure package - compile 'com.azure:azure-identity:1.3.6' + compile 'com.azure:azure-identity:1.9.2' - compile 'com.azure:azure-storage-blob:12.14.0' + compile 'com.azure:azure-storage-blob:12.23.0' ## Description <!-- A few words to explain your changes --> ### Linked GitHub issue ID: # ## Pull Request Checklist <!-- Put an x in the boxes that apply. This is simply a reminder of what we are going to look for before merging your code. --> - [ ] Tests for the changes have been added (for bug fixes / features) - [ ] Code compiles correctly with all tests are passed. - [ ] I've read the [contributing guide](https://github.com/microsoft/HydraLab/blob/main/CONTRIBUTING.md#making-changes-to-the-code) and followed the recommended practices. - [ ] [Wikis](https://github.com/microsoft/HydraLab/wiki) or [README](https://github.com/microsoft/HydraLab/blob/main/README.md) have been reviewed and added / updated if needed (for bug fixes / features) ### Does this introduce a breaking change? *If this introduces a breaking change for Hydra Lab users, please describe the impact and migration path.* - [ ] Yes - [ ] No ## How you tested it *Please make sure the change is tested, you can test it by adding UTs, do local test and share the screenshots, etc.* Please check the type of change your PR introduces: - [ ] Bugfix - [ ] Feature - [ ] Technical design - [ ] Build related changes - [ ] Refactoring (no functional changes, no api changes) - [ ] Code style update (formatting, renaming) or Documentation content changes - [ ] Other (please describe): ### Feature UI screenshots or Technical design diagrams *If this is a relatively large or complex change, kick it off by drawing the tech design with PlantUML and explaining why you chose the solution you did and what alternatives you considered, etc...*
1 parent 469434a commit 11ab915

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

common/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ dependencies {
6767
compile group: 'org.jsoup', name: 'jsoup', version: '1.10.1'
6868
// https://docs.microsoft.com/en-us/graph/sdks/sdk-installation?context=graph%2Fapi%2F1.0&view=graph-rest-1.0
6969
compile 'com.microsoft.graph:microsoft-graph:5.4.0'
70-
compile 'com.azure:azure-identity:1.3.6'
70+
compile 'com.azure:azure-identity:1.9.2'
7171
//blob storage
72-
compile 'com.azure:azure-storage-blob:12.14.0'
72+
compile 'com.azure:azure-storage-blob:12.23.0'
7373
//Apk analysis
7474
compile group: 'net.dongliu', name: 'apk-parser', version: '2.6.10'
7575
//Ipa Parse

common/src/main/java/com/microsoft/hydralab/common/network/AndroidNetworkMonitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ public void stop() {
125125
}
126126

127127
private boolean grantPermissionClick() {
128-
String[] possibleTexts = { "Start now", "Allow", "OK", "允许" };
128+
String[] possibleTexts = { "Start now", "Allow", "OK", "允许", "确定" };
129129
String dump = dumpView(deviceInfo, logger);
130130
// classLogger.info("Dump on {}: {}", adbDeviceInfo.getSerialNum(), dump);
131131
if (StringUtils.isBlank(dump)) {

0 commit comments

Comments
 (0)