crashlytics.proto 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. // Copyright 2020 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google_crashlytics;
  16. enum Platforms {
  17. UNKNOWN_PLATFORM = 0;
  18. IOS = 1;
  19. TVOS = 2;
  20. MAC_OS_X = 5;
  21. }
  22. // Next tag: 18
  23. message Report {
  24. // SDK version that generated this session
  25. string sdk_version = 1;
  26. // GMP App ID
  27. string gmp_app_id = 3;
  28. // General device type which generated the Event
  29. Platforms platform = 4;
  30. // Unique Crashlytics-specific device generated guid for application install.
  31. // Equivalent to Session.app.installation_uuid
  32. string installation_uuid = 5;
  33. // Unique device generated ID from the FirebaseInstallations SDK
  34. string firebase_installation_id = 16;
  35. // The last Session ID associated with the crash report.
  36. string app_quality_session_id = 17;
  37. // App build version.
  38. string build_version = 6;
  39. // Developer-supplied application version.
  40. string display_version = 7;
  41. FilesPayload apple_payload = 10;
  42. }
  43. // Session data represented as a set of log and metadata files.
  44. message FilesPayload {
  45. message File {
  46. string filename = 1;
  47. bytes contents = 2;
  48. }
  49. repeated File files = 1;
  50. }