Android Engine Installation
JitPack
Add JitPack to your repositories:
repositories {
maven { url "https://jitpack.io" }
}
Add the dependency:
implementation("com.github.Sepzie:SezoAudioEngine:VERSION")
Replace VERSION with a tag like v0.1.2.
JitPack page: https://jitpack.io/#Sepzie/SezoAudioEngine
Local Module
If you want to build from source:
- Add the module in
settings.gradle:gradle include(":engine") project(":engine").projectDir = file("path/to/SezoAudioEngine/packages/android-engine/android/engine") - Add the dependency:
gradle implementation project(":engine")
Permissions
If you use recording, add:
<uses-permission android:name="android.permission.RECORD_AUDIO" />