- Imported from https://github.com/supermegamestre/Project-Real-Resurrection-3 - APKTool decompilation (Smali bytecode) for modding and rebuilding APK - Supports both 32-bit (armeabi-v7a) and 64-bit (arm64-v8a) architectures - Includes full Smali source, resources, and native libraries - Ready to rebuild APK after modifications with apktool b command - Added comprehensive README-apktool.md with modding guide This branch complements the JADX branches: - Use JADX (main/discord-community) to UNDERSTAND code (readable Java) - Use APKTool (this branch) to MODIFY and REBUILD APK (editable Smali) Total: 44,417 files, 538.51 MB Smali source code
35 lines
1.2 KiB
Protocol Buffer
35 lines
1.2 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package gatewayprotocol.v1;
|
|
|
|
import "gatewayprotocol/v1/campaign_state.proto";
|
|
import "gatewayprotocol/v1/client_info.proto";
|
|
import "gatewayprotocol/v1/dynamic_device_info.proto";
|
|
import "gatewayprotocol/v1/pii.proto";
|
|
import "gatewayprotocol/v1/session_counters.proto";
|
|
import "gatewayprotocol/v1/static_device_info.proto";
|
|
import "gatewayprotocol/v1/timestamps.proto";
|
|
import "gatewayprotocol/v1/universal_request.proto";
|
|
import "gatewayprotocol/v1/initialization_data.proto";
|
|
|
|
option swift_prefix = "Gateway";
|
|
|
|
message HeaderBiddingToken {
|
|
bytes token_id = 1;
|
|
int32 token_number = 2;
|
|
bytes session_token = 3;
|
|
ClientInfo client_info = 4;
|
|
Timestamps timestamps = 5;
|
|
SessionCounters session_counters = 6;
|
|
StaticDeviceInfo static_device_info = 7;
|
|
DynamicDeviceInfo dynamic_device_info = 8;
|
|
optional Pii pii = 9;
|
|
CampaignState campaign_state = 10;
|
|
optional bytes tcf = 11;
|
|
optional bool scar_signals_collected = 12;
|
|
// Should be set if request is made without session token
|
|
optional LimitedSessionToken limited_session_token = 13;
|
|
// Should be set if request is made without session token and the SDK is initializing
|
|
optional InitializationData initialization_data = 14;
|
|
}
|