1/* 2 * Copyright (C) 2016 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17syntax = "proto2"; 18 19package com_android_proto_uwb; 20 21option java_package = "com.android.proto.uwb"; 22option java_outer_classname = "UwbConfigProto"; 23 24message ServiceConfig { 25 required string service_instance_id = 1; 26 required int32 uid = 2; 27 required string package_name = 3; 28 required int32 service_id = 4; 29 required int32 adf_status = 5; 30 optional int32 service_applet_id = 6; 31 optional bytes service_adf_oid = 7; 32 optional bytes secure_blob = 8; 33} 34message UwbConfig { 35 required int32 version = 1; 36 repeated ServiceConfig service_config = 2; 37} 38