tsacdop-podcast-app-android/README.md

148 lines
5.9 KiB
Markdown
Raw Normal View History

2020-07-09 09:46:34 +02:00
[![Tsacdop Banner][]][google play]
[![Build Status - Cirrus][]][build status]
[![GitHub Release][]][github release - recent]
[![Github Downloads][]][github release - recent]
[![Localizely][]][localizely - website]
2020-07-26 12:20:42 +02:00
[![style: effective dart][]][effective dart pub]
2020-04-21 10:41:38 +02:00
## About
2020-06-05 20:33:47 +02:00
Enjoy podcasts with Tsacdop.
2020-02-12 14:09:03 +01:00
Tsacdop is a podcast player developed with Flutter, a clean, simply beautiful and friendly app, which is also free and open source.
2020-02-09 13:42:33 +01:00
Credit to Flutter team and all involved plugins, especially [webfeed](https://github.com/witochandra/webfeed) and [Just_Audio](https://pub.dev/packages/just_audio).
2020-02-09 13:42:33 +01:00
The podcast search engine is powered by [ListenNotes](https://listennotes.com).
2020-03-14 04:27:44 +01:00
2020-04-03 08:25:04 +02:00
## Features
2020-06-05 20:33:47 +02:00
* Podcast group management
2020-07-06 12:32:44 +02:00
* Playlist support
* Sleep timer / speed setting
2020-07-06 12:32:44 +02:00
* OMPL file export and import
* Auto syncing in background
* Listening and subscription history record
* Dark mode / accent color
* Download for offline play
* Auto download new episodes / auto delete outdated downloads
* Settings backup
2020-04-03 08:36:14 +02:00
2020-04-03 08:25:04 +02:00
More to come...
2020-04-03 08:36:14 +02:00
## Preview
2020-06-05 20:33:47 +02:00
| Home Page | Group | Podcast | Episode| Dark Mode |
2020-07-09 20:04:14 +02:00
| ----- | ----- | ----- | ------ | ----- |
2020-07-09 09:46:34 +02:00
|![][Homepage ScreenShot]|![][Group Screenshot] | ![][Podcast Screenshot] | ![][Episode Screenshot]| ![][Darkmode Screenshot] |
2020-04-03 08:36:14 +02:00
2020-07-07 17:29:21 +02:00
## Localization
Support languages
* ![English]
* ![Chinese Simplified]
* ![French]
2020-07-30 19:16:14 +02:00
Translator: ppp
2020-07-07 17:29:21 +02:00
2020-07-07 17:41:48 +02:00
Please [Email](mailto:<tsacdop.app@gmail.com>) me you'd like to contribute to support more languages!
2020-07-07 17:29:21 +02:00
Credit to [Localizely](https://localizely.com/) for kind support to open source projects.
2020-07-07 17:29:21 +02:00
2020-02-12 14:18:20 +01:00
## License
Tsacdop is licensed under the [GPL v3.0](https://github.com/stonega/tsacdop/blob/master/LICENSE) license.
2020-02-12 14:09:03 +01:00
2020-04-21 10:41:38 +02:00
## Build
Tsacdop uses ListenNotes API 1.0 pro to search for podcasts, which is not free, so I can not expose the API key in the repo.
If you want to build the app, you need to create a new file named `.env.dart` in lib folder. Add the following code to `.env.dart`.
2020-04-21 10:41:38 +02:00
2020-07-06 12:32:44 +02:00
``` dart
2020-07-04 16:42:56 +02:00
final environment = {"apiKey":"APIKEY"};
2020-04-21 10:41:38 +02:00
```
You can get your own API key on [ListenNotes](https://www.listennotes.com/api/), basic plan is free for everyone. Replace `"APIKEY"` with it.
If no api key is added, the search function in the app won't work. But you can still add podcasts by using an RSS link or importing an OMPL file.
2020-04-21 10:41:38 +02:00
2020-07-07 17:29:21 +02:00
## Archetecture
2020-07-06 12:32:44 +02:00
2020-07-07 17:29:21 +02:00
### Plugins
2020-07-06 12:32:44 +02:00
2020-07-07 17:29:21 +02:00
* Local storage
2020-07-09 09:46:34 +02:00
+ sqflite
+ shared_preferences
2020-07-07 17:29:21 +02:00
* Audio
2020-07-09 09:46:34 +02:00
+ just_audio
+ audio_service
2020-07-07 17:29:21 +02:00
* State management
2020-07-09 09:46:34 +02:00
+ provider
2020-07-07 17:29:21 +02:00
* Download
2020-07-09 09:46:34 +02:00
+ flutter_downloader
2020-07-06 12:32:44 +02:00
2020-07-07 17:29:21 +02:00
### Directory Structure
2020-07-06 12:32:44 +02:00
2020-07-09 09:46:34 +02:00
```
UI
2020-07-07 17:29:21 +02:00
src
├──home
2020-07-09 09:46:34 +02:00
├──home.dart [Homepage]
├──searc_podcast.dart [Search Page]
2020-07-07 17:29:21 +02:00
├──playlist.dart [Playlist Page]
├──podcasts
├──podcast_manage.dart [Group Page]
├──podcast_detail.dart [Podcast Page]
├──episodes
├──episode_detail.dart [Episode Page]
├──settings
├──setting.dart [Setting Page]
2020-07-30 19:16:14 +02:00
STATE
2020-07-07 17:29:21 +02:00
src
├──state
2020-07-09 09:46:34 +02:00
├──audio_state.dart [Audio State]
2020-07-07 17:29:21 +02:00
├──download_state.dart [Episode Download]
├──podcast_group.dart [Podcast Groups]
2020-07-09 09:46:34 +02:00
├──refresh_podcast.dart [Episode Refresh]
2020-07-07 17:29:21 +02:00
├──setting_state.dart [Setting]
2020-07-09 09:46:34 +02:00
```
2020-07-06 12:32:44 +02:00
2020-06-16 06:40:51 +02:00
## Known Issue
* Playlist is unstable
2020-06-16 06:40:51 +02:00
2020-02-09 13:13:56 +01:00
## Getting Started
This project is a starting point for a Flutter application.
Here are a few resources to get you started if this is your first Flutter project:
2020-02-09 13:13:56 +01:00
2020-07-06 12:32:44 +02:00
* [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
* [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
2020-02-09 13:13:56 +01:00
For help getting started with Flutter, view our
2020-07-04 16:42:56 +02:00
[online documentation](https://flutter.dev/docs), which offers tutorials, samples, guidance on mobile development, and a full API reference.
2020-07-09 09:46:34 +02:00
[tsacdop banner]: https://raw.githubusercontent.com/stonega/tsacdop/master/preview/banner.png
[build status - cirrus]: https://circleci.com/gh/stonega/tsacdop/tree/master.svg?style=shield
[build status]: https://circleci.com/gh/stonega/tsacdop/tree/master
[github release]: https://img.shields.io/github/v/release/stonega/tsacdop
[github release - recent]: https://github.com/stonega/tsacdop/releases
[github downloads]: https://img.shields.io/github/downloads/stonega/tsacdop/total?color=%230000d&label=downloads
[localizely]: https://img.shields.io/badge/dynamic/json?color=%2326c6da&label=localizely&query=%24.languages.length&url=https%3A%2F%2Fapi.localizely.com%2Fv1%2Fprojects%2Fbde4e9bd-4cb2-449b-9de2-18f231ddb47d%2Fstatus
[English]: https://img.shields.io/badge/dynamic/json?color=%2323CCC6&label=English&query=%24.languages%5B0%5D.reviewedProgress&url=https%3A%2F%2Fapi.localizely.com%2Fv1%2Fprojects%2Fbde4e9bd-4cb2-449b-9de2-18f231ddb47d%2Fstatus&suffix=%
[Chinese Simplified]: https://img.shields.io/badge/dynamic/json?color=%2323CCC6&label=Chinese%20Simplified&query=%24.languages%5B1%5D.reviewedProgress&url=https%3A%2F%2Fapi.localizely.com%2Fv1%2Fprojects%2Fbde4e9bd-4cb2-449b-9de2-18f231ddb47d%2Fstatus&suffix=%
2020-07-31 11:25:31 +02:00
[French]: https://img.shields.io/badge/dynamic/json?color=%2323CCC6&label=French&query=%24.languages%5B3%5D.reviewedProgress&url=https%3A%2F%2Fapi.localizely.com%2Fv1%2Fprojects%2Fbde4e9bd-4cb2-449b-9de2-18f231ddb47d%2Fstatus&suffix=%
2020-07-09 09:46:34 +02:00
[localizely - website]: https://localizely.com/
[google play - icon]: https://img.shields.io/badge/google-playStore-%2323CCC6
[google play]: https://play.google.com/store/apps/details?id=com.stonegate.tsacdop
[Homepage ScreenShot]: https://raw.githubusercontent.com/stonega/tsacdop/master/preview/1585893838840.png
[Group Screenshot]: https://raw.githubusercontent.com/stonega/tsacdop/master/preview/1585894051734.png
[Podcast Screenshot]: https://raw.githubusercontent.com/stonega/tsacdop/master/preview/1585893877702.png
[Episode Screenshot]: https://raw.githubusercontent.com/stonega/tsacdop/master/preview/1585896237809.png
[Darkmode Screenshot]: https://raw.githubusercontent.com/stonega/tsacdop/master/preview/1585893920721.png
2020-07-26 12:20:42 +02:00
[style: effective dart]: https://img.shields.io/badge/style-effective_dart-40c4ff.svg
[effective dart pub]: https://pub.dev/packages/effective_dart