Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
syntax = "proto3";
package gatewayprotocol.v1;
import "gatewayprotocol/v1/error.proto";
option swift_prefix = "Gateway";
message AdDataRefreshResponse {
// non empty if fill otherwise empty
bytes ad_data = 1;
// version of the ad markup. Use to determine which parser to use.
int32 ad_data_version = 2;
// non empty if fill otherwise empty
bytes tracking_token = 3;
// Ad Data Refresh Token to be used to refresh ad markup
bytes ad_data_refresh_token = 4;
// If set, there was an error processing the request.
optional Error error = 5;
}