Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion CONTRIBIUTING.md → CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ We may suggest changes or request additional improvements, so please enable
[Allow edits from maintainers](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork)
on your PR.

**Contribiuting by implementing your own feature should be preceeded by design doc. It can be any kind of document desciribing all important api and implementation details.**
**Contributing by implementing your own feature should be preceded by design doc. It can be any kind of document describing all important api and implementation details.**

## Reporting Issues and Feature Requests

Expand Down
1 change: 1 addition & 0 deletions packages/react-native-audio-api/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@ android {
defaultConfig {
minSdkVersion getExtOrIntegerDefault("minSdkVersion")
targetSdkVersion getExtOrIntegerDefault("targetSdkVersion")
consumerProguardFiles("proguard-rules.pro")

buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
buildConfigField "boolean", "RN_AUDIO_API_ENABLE_WORKLETS", "${isWorkletsAvailable}"
Expand Down
1 change: 1 addition & 0 deletions packages/react-native-audio-api/android/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-keep class com.swmansion.audioapi.** { *; }