AhSilence
An open-source Android Active Noise Cancellation (ANC) engine. Leveraging low-latency DSP to neutralize environmental hums and help you reclaim your quiet.
File Explorer
Download Latest Version (.zip)- app-banner.png
- app-icon.svg
- bug_report.yml
- config.yml
- feature_request.yml
- ci.yml
- dependabot.yml
- FUNDING.yml
- PULL_REQUEST_TEMPLATE.md
- AncEngine.cpp
- AncEngine.h
- FxLmsFilter.h
- Oscillator.h
- SecondaryPathModel.h
- native_bridge.cpp
- CMakeLists.txt
- AndroidManifest.xml
- build.gradle.kts
- AudioConstants.kt
- AudioEngineLocator.kt
- AppLogger.kt
- FastFourier.kt
- NativeAudioDSP.kt
- ActiveHumService.kt
- AcousticState.kt
- AudioEngine.kt
- ControlViewModel.kt
- CalibratorRing.kt
- GainSlider.kt
- DashboardScreen.kt
- Color.kt
- Theme.kt
- Type.kt
- MainActivity.kt
- ic_launcher_background.xml
- ic_launcher_foreground.xml
- ic_launcher.xml
- ic_launcher_round.xml
- ic_launcher.webp
- ic_launcher_round.webp
- ic_launcher.webp
- ic_launcher_round.webp
- ic_launcher.webp
- ic_launcher_round.webp
- ic_launcher.webp
- ic_launcher_round.webp
- ic_launcher.webp
- ic_launcher_round.webp
- colors.xml
- ic_launcher_background.xml
- strings.xml
- themes.xml
- backup_rules.xml
- data_extraction_rules.xml
- AndroidManifest.xml
- ic_launcher-playstore.png
- .gitignore
- build.gradle.kts
- proguard-rules.pro
- architecture.md
- deployment.md
- dsp-engine.md
- gradle-wrapper.jar
- gradle-wrapper.properties
- libs.versions.toml
- .editorconfig
- .gitattributes
- .gitignore
- build.gradle.kts
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- gradle.properties
- gradlew
- gradlew.bat
- LICENSE
- README.md
- ROADMAP.md
- SECURITY.md
- settings.gradle.kts
- SUPPORT.md
# Installation Guide
git clone https://github.com/AhmadHassan-BTed/AhSilence
Downloads the entire project code from GitHub to your computer.
cd AhSilence
Moves into the project folder you just downloaded.
2. CMake
Medium Recommendedcd ancengine/src/main/cpp
This project's files live in a subfolder, so move into it first.
mkdir build && cd build
Creates a folder to hold the build output and moves into it.
cmake ..
Analyzes the source code and generates build configuration files (must be run inside the build folder).
make
Compiles the code based on the generated build configuration to produce an executable.
3. Gradle (Java/Kotlin)
Medium- Git Needed to download the project code from GitHub.
- JDK (Java) Required to build and run Java/Kotlin projects.
- Gradle If the repo includes gradlew (Gradle Wrapper), you don't need to install Gradle separately.
./gradlew clean assembleDebug
Builds the project using Gradle.
./gradlew test
Builds the project using Gradle.
./gradlew lint
Builds the project using Gradle.
./gradlew installDebug
Builds the project using Gradle.
Pulled directly from this repo's README.
