mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-23 02:10:44 +01:00
Introduce Wire for proto codegen.
This commit is contained in:
committed by
Nicholas Tinsley
parent
72449fd73e
commit
a91a13cead
15
app/src/main/protowire/Emoji.proto
Normal file
15
app/src/main/protowire/Emoji.proto
Normal file
@@ -0,0 +1,15 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package signal;
|
||||
|
||||
option java_package = "org.thoughtcrime.securesms.emoji.protos";
|
||||
option java_multiple_files = true;
|
||||
|
||||
message JumbomojiPack {
|
||||
repeated JumbomojiItem items = 1;
|
||||
}
|
||||
|
||||
message JumbomojiItem {
|
||||
string name = 1;
|
||||
bytes image = 2;
|
||||
}
|
||||
Reference in New Issue
Block a user