mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
Internal Flow Fix
PiperOrigin-RevId: 438157831
This commit is contained in:
committed by
Copybara-Service
parent
15d3fa0df5
commit
d65e41cc4a
@@ -49,4 +49,4 @@ Currently we provide precompiled libraries. See the following page for instructi
|
||||
* [iOS](https://github.com/google/nearby/blob/master/docs/ios_build.md)
|
||||
|
||||
|
||||
**Last Updated:** Febrary 2022
|
||||
**Last Updated:** March 2022
|
||||
|
||||
@@ -21,7 +21,6 @@ proto_library(
|
||||
srcs = [
|
||||
"nfc_frames.proto",
|
||||
],
|
||||
deps = ["//storage/datapol/annotations/proto:datapol_annotations"], # copybara:strip(datapol)
|
||||
)
|
||||
|
||||
java_lite_proto_library(
|
||||
|
||||
@@ -16,9 +16,6 @@ syntax = "proto2";
|
||||
|
||||
package location.nearby.mediums;
|
||||
|
||||
import "storage/datapol/annotations/proto/semantic_annotations.proto"; // copybara:strip(datapol)
|
||||
|
||||
option (datapol.file_vetting_status) = "latest"; // copybara:strip(datapol)
|
||||
option optimize_for = LITE_RUNTIME;
|
||||
option java_outer_classname = "NfcFramesProto";
|
||||
option java_package = "com.google.location.nearby.mediums.proto";
|
||||
@@ -30,8 +27,7 @@ message AdvertisementData {
|
||||
optional bytes tag = 1;
|
||||
|
||||
// A public key associated with the advertisement.
|
||||
optional bytes public_key = 2 /* copybara:strip_begin */
|
||||
[(datapol.semantic_type) = ST_SECURITY_KEY] /* copybara:strip_end */;
|
||||
optional bytes public_key = 2 ;
|
||||
}
|
||||
|
||||
// The data to be sent to advertisers from scanning device during discovery.
|
||||
@@ -43,6 +39,5 @@ message AdvertisementRequest {
|
||||
optional string endpoint_id = 2;
|
||||
|
||||
// Public key from the scanning device.
|
||||
optional bytes public_key = 3 /* copybara:strip_begin */
|
||||
[(datapol.semantic_type) = ST_SECURITY_KEY] /* copybara:strip_end */;
|
||||
optional bytes public_key = 3 ;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user