fix: el tap del microfono seguia aislado al main actor (2.0.3 build 68)

El fix anterior arreglo los permisos —el crash se movio de start a beginSession,
y de TCC a AVAudioNodeTap::CheckEmitBuffer— pero el tap seguia petando.

Mi error: quitar el acceso a self del closure no elimina la inferencia de
aislamiento. La inferencia viene de DONDE se escribe el closure, no de lo que
captura. Escrito dentro de un metodo @MainActor, seguia siendo main-actor
isolated, y el tap se dispara desde el hilo de audio en tiempo real.

Ahora el handler se construye en makeTapHandler, que es nonisolated, y se pasa a
installTap. La estructura se auto-verifica: quitarle nonisolated a makeTapHandler
no compila, porque installTap es nonisolated y no puede llamar a un metodo
aislado. El bug pasa de crash en produccion a error de compilacion.

Tests: testTapHandlerRunsOffTheMainThread invoca el handler desde una cola de
fondo, que es exactamente la condicion que trapeaba. No hace falta microfono; el
intento anterior con AVAudioEngine se saltaba siempre porque el simulador no
tiene entrada de audio utilizable.

Barrido del mismo patron en el resto de servicios @MainActor: CalendarService y
NotificationService usan las variantes async/await, que estan anotadas y no
tienen closures. SpeechDictationService era el unico sitio.

Lanes feedback y crashlog para leer los reportes de TestFlight desde la API:
spaceship apunta a v1/betaFeedbacks, que Apple ya retiro; el endpoint vivo es
v1/apps/<id>/betaFeedbackCrashSubmissions y el log viene inline en logText.

Co-Authored-By: Claude <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_012Ks8uUcMA9mjypVK7F2Pkt
This commit is contained in:
alexandrev-tibco
2026-08-20 09:21:52 +02:00
parent 6ba1ef1430
commit 39d3534c57
4 changed files with 122 additions and 6 deletions
+44
View File
@@ -95,6 +95,50 @@ platform :ios do
UI.success(created ? "App Store version #{version} ready" : "App Store version #{version} already editable")
end
desc "Show the latest TestFlight beta feedback (tester reports and crashes)"
lane :feedback do |options|
app = connect_api_app
# spaceship's get_beta_feedback hits v1/betaFeedbacks, a private endpoint
# Apple has since removed. These are the current public ones.
client = Spaceship::ConnectAPI.test_flight_request_client
limit = (options[:limit] || 10).to_i
["v1/apps/#{app.id}/betaFeedbackCrashSubmissions", "v1/apps/#{app.id}/betaFeedbackScreenshotSubmissions"].each do |path|
UI.header(path)
begin
resp = client.get(path, {
"include" => "build,tester",
"limit" => limit,
"sort" => "-createdDate"
})
rows = resp.body["data"] || []
UI.important("none") if rows.empty?
rows.each do |row|
a = row["attributes"] || {}
UI.message("── #{a['createdDate']} — #{a['deviceModel']} — #{a['osVersion']} — id #{row['id']}")
UI.message(" #{a['comment']}") if a["comment"]
UI.message(" crashLog: #{a['crashLog'] || row.dig('relationships', 'crashLog', 'links', 'related')}")
end
rescue => e
UI.error("#{path}: #{e.message[0, 200]}")
end
end
end
desc "Download the crash log of a TestFlight feedback submission (id from `feedback`)"
lane :crashlog do |options|
UI.user_error!("pass id:<submission id>") unless options[:id]
connect_api_app
client = Spaceship::ConnectAPI.test_flight_request_client
resp = client.get("v1/betaFeedbackCrashSubmissions/#{options[:id]}/crashLog", {})
# The log comes back inline as logText, not as a download URL.
text = resp.body.dig("data", "attributes", "logText")
UI.user_error!("No logText in response: #{resp.body.to_s[0, 300]}") unless text
out = File.expand_path("../crashlog-#{options[:id]}.crash", __dir__)
File.write(out, text)
UI.success("Saved to #{out}")
end
desc "Show the App Store state of each version (review status, release type)"
lane :status do
app = connect_api_app
+16
View File
@@ -23,6 +23,22 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
Push a new beta build to TestFlight
### ios feedback
```sh
[bundle exec] fastlane ios feedback
```
Show the latest TestFlight beta feedback (tester reports and crashes)
### ios crashlog
```sh
[bundle exec] fastlane ios crashlog
```
Download the crash log of a TestFlight feedback submission (id from `feedback`)
### ios status
```sh