You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
479 B
26 lines
479 B
syntax = "proto3";
|
|
|
|
package com.android.fastdeploy;
|
|
|
|
option java_package = "com.android.fastdeploy";
|
|
option java_outer_classname = "ApkEntryProto";
|
|
option java_multiple_files = true;
|
|
|
|
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;
|
|
}
|