diff --git a/CONTRIBIUTING.md b/CONTRIBUTING.md similarity index 87% rename from CONTRIBIUTING.md rename to CONTRIBUTING.md index 4beb9358e..537834adf 100644 --- a/CONTRIBIUTING.md +++ b/CONTRIBUTING.md @@ -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 diff --git a/packages/react-native-audio-api/android/build.gradle b/packages/react-native-audio-api/android/build.gradle index 49b6f519b..e2b8442a8 100644 --- a/packages/react-native-audio-api/android/build.gradle +++ b/packages/react-native-audio-api/android/build.gradle @@ -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}" diff --git a/packages/react-native-audio-api/android/proguard-rules.pro b/packages/react-native-audio-api/android/proguard-rules.pro new file mode 100644 index 000000000..595e7bd13 --- /dev/null +++ b/packages/react-native-audio-api/android/proguard-rules.pro @@ -0,0 +1 @@ +-keep class com.swmansion.audioapi.** { *; }