mirror of
https://github.com/sudosylabs/vnidrop.git
synced 2026-08-05 10:29:58 +02:00
Delete the TelemetryRecorder, CrashReporter, PendingCrashStore and platform crash hooks along with their models, JSON encoders and the diagnostics opt-in preference. The DiagnosticsTransport interface is narrowed to sendBugReport, and DiagnosticsCoordinator now only wires the bug-report service and install id. Bug reporting, the breadcrumb buffer, log redaction and the diagnostics endpoint config are kept. Regenerate localization after dropping the diagnostics_* keys.
26 lines
963 B
Properties
26 lines
963 B
Properties
#Kotlin
|
|
kotlin.code.style=official
|
|
kotlin.daemon.jvmargs=-Xmx3072M
|
|
#Gradle
|
|
org.gradle.jvmargs=-Xmx4096M -Dfile.encoding=UTF-8
|
|
org.gradle.configuration-cache=true
|
|
org.gradle.caching=true
|
|
|
|
#Android
|
|
android.builtInKotlin=false
|
|
android.newDsl=false
|
|
android.nonTransitiveRClass=true
|
|
android.sourceset.disallowProvider=false
|
|
android.useAndroidX=true
|
|
|
|
# VniDrop: compile-time bug-report delivery surface.
|
|
# false → user-initiated bug reports fall back to a NoOp transport (never sent).
|
|
# Enable per build only when endpoint and ingest key are configured:
|
|
# ./gradlew … -Pvnidrop.diagnostics.included=true
|
|
vnidrop.diagnostics.included=false
|
|
# Cloudflare Worker base URL (no trailing slash). Both endpoint/key empty → NoOp transport.
|
|
# Example: https://vnidrop-diagnostics.<subdomain>.workers.dev
|
|
vnidrop.diagnostics.endpoint=
|
|
# Shared ingest key (must match Worker secret INGEST_KEY). Keep blank in VCS; use user-level/CI properties.
|
|
vnidrop.diagnostics.ingestKey=
|