Mobile application for Audiobookshelf https://audiobookshelf.org
Find a file
advplyr aaef0a7e8d
Some checks failed
Build APK / main (push) Has been cancelled
Publish Test App / build (push) Has been cancelled
Verify all i18n files are alphabetized / update_translations (push) Has been cancelled
Publish Test App / deploy (push) Has been cancelled
Update github issue templates with 0.11.0
2025-11-25 17:28:10 -06:00
.github Update github issue templates with 0.11.0 2025-11-25 17:28:10 -06:00
.vscode Update:Editor config/vscode settings/prettierrc 2024-06-16 09:49:05 -05:00
android Version bump v0.11.0-beta 2025-11-23 17:00:45 -06:00
assets Add: UI Black/OLED theme 2025-06-20 01:05:46 +03:00
components Increase padding on reader toolbar for ios 2025-11-23 16:54:36 -06:00
fastlane/metadata/android initial fastlane structures from IzzyOnDroid 2025-08-03 01:11:32 +02:00
ios iOS version bump 0.11.0 2025-11-23 17:20:32 -06:00
layouts Add version to ServerConnectionConfig on iOS 2025-07-05 14:28:02 -05:00
middleware init 2021-09-01 20:07:11 -05:00
mixins Improvements and fixes on the cellular permissions 2024-05-26 22:08:53 +01:00
objects Add:Lazy bookshelf 2021-12-04 19:56:29 -06:00
pages Fix disconnect in side drawer causing audio playing with player closed #1385 2025-11-23 15:16:44 -06:00
plugins Add Turkish language option #1734 2025-11-24 14:51:59 -06:00
screenshots Update readme screenshot 2023-03-10 16:13:04 -06:00
static Update Year in review icons, update some icons to be larger, fix read more/less, audio player use keyboard arrow down 2025-04-05 17:14:43 -05:00
store Update readers to handle token refresh 2025-07-15 17:22:45 -05:00
strings Merge pull request #1688 from weilBaum9/master 2025-11-19 17:01:39 -06:00
.editorconfig feat: usable logs on iOS 2025-09-07 16:31:59 -05:00
.gitignore Set ver, clean up dependencies 2021-09-02 12:19:26 -05:00
.prettierrc Update:Editor config/vscode settings/prettierrc 2024-06-16 09:49:05 -05:00
capacitor.config.json Fix android system bars overlapping UI #1564 #1574 2025-05-21 17:26:31 -05:00
ionic.config.json Added realm 2022-04-11 16:29:19 +02:00
LICENSE add License #114 2022-03-20 05:54:56 -05:00
nuxt.config.js Update auth to handle refresh tokens 2025-07-01 11:33:51 -05:00
package-lock.json Version bump v0.11.0-beta 2025-11-23 17:00:45 -06:00
package.json Version bump v0.11.0-beta 2025-11-23 17:00:45 -06:00
readme.md feat: usable logs on iOS 2025-09-07 16:31:59 -05:00
tailwind.config.js Fix unable to delete servers that are unreachable, include delete icon btn on server item #1703 2025-11-21 17:24:16 -06:00

Audiobookshelf Mobile App

Audiobookshelf is a self-hosted audiobook and podcast server.

Android (beta)

Get the Android app on the Google Play Store

iOS (early beta)

Beta is currently full. Apple has a hard limit of 10k beta testers. Updates will be posted in Discord.

Using Test Flight: https://testflight.apple.com/join/wiic7QIW (beta is full)


Go to the main project repo github.com/advplyr/audiobookshelf or the project site audiobookshelf.org

Join us on discord

Requires an Audiobookshelf server to connect with

Screenshot

Contributing

This application is built using NuxtJS and Capacitor in order to run on both iOS and Android on the same code base.

Localization

Thank you to Weblate for hosting our localization infrastructure pro-bono. If you want to see Audiobookshelf in your language, please help us localize. Additional information on helping with the translations here. Translation status

Windows Environment Setup for Android

Required Software:

Install the required software with winget

Note: This requires a PowerShell prompt with winget installed. You should be able to copy and paste the code block to install. If you use an elevated PowerShell prompt, UAC will not pop up during the installs.

winget install -e --id Git.Git; `
winget install -e --id Microsoft.VisualStudioCode; `
winget install -e --id  Google.AndroidStudio; `
winget install -e --id OpenJS.NodeJS --version 20.11.0;


Your Windows environment should now be set up and ready to proceed!

Mac Environment Setup for Android

Required Software:

Install the required software with homebrew

brew install android-studio node cocoapods

Start working on the Android app

Clone or fork the project from terminal or powershell and cd into the project directory.

Install the required node packages:

npm install
Expand for screenshot


Generate static web app:

npm run generate
Expand for screenshot


Copy web app into native android/ios folders:

npx cap sync
Expand for screenshot


Open Android Studio:

npx cap open android
Expand for screenshot


Start coding!

After making changes to the JS layer you need to rebuild the nuxt pages and sync them to the native shells:

npm run sync

Mac Environment Setup for iOS

Required Software:

Start working on the iOS app

Clone or fork the project in the terminal and cd into the project directory.

Install the required node packages:

npm install
Expand for screenshot


Generate static web app:

npm run generate
Expand for screenshot


Copy web app into native android/ios folders:

npx cap sync
Expand for screenshot


Open Xcode:

npx cap open ios
Expand for screenshot


Start coding!

After making changes to the JS layer you need to rebuild the nuxt pages and sync them to the native shells:

npm run sync