Mobile application for Audiobookshelf https://audiobookshelf.org
Find a file
advplyr 62f6a11522
Some checks are pending
Build APK / main (push) Waiting to run
Publish Test App / build (push) Waiting to run
Publish Test App / deploy (push) Blocked by required conditions
Verify all i18n files are alphabetized / update_translations (push) Waiting to run
Merge pull request #1589 from weblate/weblate-audiobookshelf-abs-mobile-app
Translations update from Hosted Weblate
2025-06-19 16:24:42 -05:00
.github Add pull request template 2025-04-27 16:58:50 -07:00
.vscode Update:Editor config/vscode settings/prettierrc 2024-06-16 09:49:05 -05:00
android Remove unnecessary styles.xml 2025-05-21 17:38:05 -05:00
assets Update progress bar box shadow for visibility #1576 2025-05-17 17:06:28 -05:00
components Add book/podcast library filter for RSS Feed Open 2025-06-03 17:16:54 -05:00
ios Fix android system bars overlapping UI #1564 #1574 2025-05-21 17:26:31 -05:00
layouts Setup onLog event, add app version & platform to logs and share filename 2025-04-20 14:33:48 -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 Add abridged indicator #1477 2025-05-23 17:04:26 -05:00
plugins Fix android system bars overlapping UI #1564 #1574 2025-05-21 17:26:31 -05: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 Replace: seek forward 10 seconds 2025-03-31 00:16:58 -07:00
strings Translated using Weblate (Italian) 2025-06-19 23:01:48 +02:00
.editorconfig Update:Editor config/vscode settings/prettierrc 2024-06-16 09:49:05 -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 cordova-plugin-screen-orientation, update postcss in nuxt config 2025-01-17 17:06:50 -06:00
package-lock.json Version bump v0.9.81-beta 2025-04-25 16:56:34 -05:00
package.json Version bump v0.9.81-beta 2025-04-25 16:56:34 -05:00
readme.md Add localization chart to readme 2024-11-08 08:03:09 -06:00
tailwind.config.js Update nuxtjs/tailwindcss and update tailwind config 2024-01-01 10:19:55 -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!

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!