- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
19 lines
573 B
Protocol Buffer
19 lines
573 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gatewayprotocol.v1;
|
|
|
|
option swift_prefix = "Gateway";
|
|
|
|
// Ad Markup used in a header bidding integration
|
|
message HeaderBiddingAdMarkup {
|
|
// A blob of data which contains an ad to show.
|
|
// This blob should be provided to Ad Player to parse and cache the ad.
|
|
// Currently it is a Auction V6 response.
|
|
bytes ad_data = 1;
|
|
// A version of the ad data. Can be used to determine which parser to use.
|
|
int32 ad_data_version = 2;
|
|
|
|
// Configuration Token which can be used to fetch Ad Player Configuration.
|
|
bytes configuration_token = 3;
|
|
}
|