-
Notifications
You must be signed in to change notification settings - Fork 32
Android test suit update #343
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
base: dev
Are you sure you want to change the base?
Conversation
gzh-terry
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Update the reasons for each commit.
72722c2 to
cb33069
Compare
| // Unregister Server #1 | ||
| Button buttonUnregister_1 = findViewById(R.id.button_spp_server_unregister_1); | ||
| buttonUnregister_1.setOnClickListener(new View.OnClickListener() { | ||
| @RequiresPermission(Manifest.permission.BLUETOOTH_ADVERTISE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why it requires BLUETOOTH_CONNECT on register, but requires BLUETOOTH_ADVERTISE on unregister?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inherits from btSock_1.unregister();
| } | ||
|
|
||
| private final ScanCallback scanCallback = new ScanCallback() { | ||
| @RequiresPermission(Manifest.permission.BLUETOOTH_CONNECT) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this be a BLUETOOTH_SCAN?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inherits from result.getDevice().getName();
| private EditText etFilter; | ||
| private BredrInquiryAdapter bredrInquiryAdapter; | ||
|
|
||
| @RequiresPermission(Manifest.permission.BLUETOOTH_SCAN) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does "Inquiry" belongs to BLUETOOTH_SCAN?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inherits from initView();
bug: v/81613 Update dependency versions to support compose Signed-off-by: YuhengLi <[email protected]>
bug: v/81613 Based on the file structure, the correct namespace should be com.openvela.bluetooth. Signed-off-by: YuhengLi <[email protected]>
bug: v/81613 Rootcause: necessaryBluetoothPermissioins was misspelled as necessaryBluetoothPermissions. Signed-off-by: Yuheng Li <[email protected]>
bug: v/81613 Add Kotlin support to improve development speed. Signed-off-by: Yuheng Li <[email protected]>
bug: v/81613 Add Compose support to speed up future feature development and reduce the error rate. Signed-off-by: Yuheng Li <[email protected]>
bug: v/81613 some dependency versions not match required Signed-off-by: Yuheng Li <[email protected]>
bug: v/81613 some permissions not checked before use Signed-off-by: Yuheng Li <[email protected]>
Android test suit update