Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,14 @@ For this operation, the call timeout will be 30 seconds, and the other timeouts
The default timeout should be sufficient for most use cases.
However, depending on your network speed and distance, you may occasionally experience timeouts, in which case you can increase the timeout.

## Android
### Proguard configuration

Keep AssemblyAI SDK classes from being obfuscated. This is required for proper SDK functionality when using code shrinking (isMinifyEnabled = true)
```text
-keep class com.assemblyai.api.** { *; }
```

## Contributing
While we value open-source contributions to this SDK, this library
is generated programmatically. Additions made directly to this library
Expand Down