Mobile application for Audiobookshelf https://audiobookshelf.org
Find a file
2025-04-27 16:58:50 -07: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 Version bump v0.9.81-beta 2025-04-25 16:56:34 -05:00
assets Add woff2 fonts 2025-03-30 17:55:21 -07:00
components Show change library dropdown in app bar when socket is not connected #1494 2025-04-23 15:46:19 -05:00
ios iOS version bump 0.9.81 & pod update 2025-04-26 10:03:57 -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:Android sleep timer setting to play a chime when almost finished #600 2025-04-24 16:42:55 -05:00
plugins Setup onLog event, add app version & platform to logs and share filename 2025-04-20 14:33:48 -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 (Chinese (Simplified Han script)) 2025-04-25 00:29:31 +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 Update cordova-plugin-screen-orientation, update postcss in nuxt config 2025-01-17 17:06:50 -06: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!