Files
rr3-apk/decompiled-community/resources/gatewayprotocol/v1/header_bidding_ad_markup.proto
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- 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
2026-02-18 15:48:36 -08:00

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;
}