tsacdop-podcast-app-android/README.md

143 lines
5.6 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-04-21 10:41:38 +02:00
## About
2020-06-05 20:33:47 +02:00
2020-07-09 09:46:34 +02:00
Enjoy podcast with Tsacdop.
2020-02-12 14:09:03 +01:00
2020-07-09 09:46:34 +02:00
Tsacdop is a podcast player developed with flutter, a clean, simply beautiful and friendly app, and is free and open source.
2020-02-09 13:42:33 +01:00
2020-07-04 16:42:56 +02: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
2020-02-11 14:01:57 +01:00
The podcasts 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
2020-07-06 12:32:44 +02:00
* Podcasts group management
* Playlist support
* Sleep timer / Speed setting
* OMPL file export and import
* Auto syncing in background
* Listen and subscribe history record
* Dark mode / Accent color
* Download for offline play
2020-07-06 12:32:44 +02:00
* 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
2020-07-09 20:04:14 +02:00
| HomePage | Group | Podcast | Episode| DarkMode |
| ----- | ----- | ----- | ------ | ----- |
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]
* ![Franch]
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
2020-07-09 09:46:34 +02:00
Credit to [Localizely](https://localizely.com/) for kind support to open source project.
2020-07-07 17:29:21 +02:00
2020-02-12 14:18:20 +01:00
## License
2020-03-31 18:36:20 +02:00
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 is using ListenNotes api 1.0 pro to search podcast, 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 below code in .env.dart.
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
```
2020-06-05 20:33:47 +02:00
You can get own api key on [ListenNotes](https://www.listennotes.com/api/), basic plan is free to all, and replace "APIKEY" with it.
2020-04-21 10:41:38 +02:00
If no api key added, the search function in the app won't work. But you can still add podcasts by serach rss link or import ompl file.
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]
STATES
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
2020-07-06 12:32:44 +02:00
* Playlist 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.
A few resources to get you started if this is your first Flutter project:
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=%
[Franch]: https://img.shields.io/badge/dynamic/json?color=%2323CCC6&label=Franch&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