1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
syntax = "proto3";
package com.android.fastdeploy;
option java_package = "com.android.fastdeploy";
option java_outer_classname = "ApkEntryProto";
option java_multiple_files = true;
option optimize_for = LITE_RUNTIME;
message APKDump {
string name = 1;
bytes cd = 2;
bytes signature = 3;
string absolute_path = 4;
}
message APKEntry {
bytes md5 = 1;
int64 dataOffset = 2;
int64 dataSize = 3;
}
message APKMetaData {
string absolute_path = 1;
repeated APKEntry entries = 2;
}
|