Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arunkumar9t2/lynket-browser
🌐 A better browser for Android using the Custom Tab protocol. Previously called Chromer.
https://github.com/arunkumar9t2/lynket-browser
android-browser browser dagger2 google-chrome kotlin mvvm reader rxjava
Last synced: 24 days ago
JSON representation
🌐 A better browser for Android using the Custom Tab protocol. Previously called Chromer.
- Host: GitHub
- URL: https://github.com/arunkumar9t2/lynket-browser
- Owner: arunkumar9t2
- License: other
- Created: 2016-07-14T20:45:02.000Z (over 8 years ago)
- Default Branch: main
- Last Pushed: 2024-01-04T11:07:02.000Z (10 months ago)
- Last Synced: 2024-09-30T17:02:15.590Z (about 1 month ago)
- Topics: android-browser, browser, dagger2, google-chrome, kotlin, mvvm, reader, rxjava
- Language: Java
- Homepage:
- Size: 55.6 MB
- Stars: 487
- Watchers: 37
- Forks: 81
- Open Issues: 70
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lynket
**Android browser app based on Custom Tabs protocol.**Lynket utilizes Chrome Custom Tab API to create a customized browsing experience while adding innovative features like background loading with floating bubbles, article mode and multitasking using Android's recent menu.
Lynket is available for free on the Google Play Store.
If you have got some time, read the introduction post on [my blog](https://arunkumar.dev/Lynket-browser-2nd-anniversary-update/) or watch intro [Video](https://www.youtube.com/watch?v=Hcd2R2Lh5ks&t=2s)
![enter image description here](https://raw.githubusercontent.com/arunkumar9t2/chromer/master/art/chromer_screenshots.png)
## Features
| Features| Demo|
|--|--|
| **Web heads** - Floating bubbles to load multiple links and launch them. | ![enter image description here](https://raw.githubusercontent.com/arunkumar9t2/chromer/master/art/Web%20heads%20intro.gif) |
| **Web heads** - Intelligently manages background loading of Custom Tabs using Android's overview screen. Uses Lollipop Document API.| ![enter image description here](https://raw.githubusercontent.com/arunkumar9t2/chromer/master/art/Background%20Loading.gif) |
| **Provider** - Lynket works with any custom tab compatible browser. This means features like adblock, Google Account sync, data saver are inherited. | ![enter image description here](https://raw.githubusercontent.com/arunkumar9t2/chromer/master/art/Provider%20Selection.gif) |
| **Article mode** - Filters all unnecessary content and renders web page on a RecyclerView efficiently. Uses Crux library. | ![enter image description here](https://raw.githubusercontent.com/arunkumar9t2/chromer/master/art/Article%20Mode.gif) |
| **Minimize and Tabs** - Lynket can minimize the tab and also show all active tabs for you to quickly switch to. | ![enter image description here](https://raw.githubusercontent.com/arunkumar9t2/chromer/master/art/Multitasking.gif)|## Architecture and Code Structure
Lynket is written on a MVVM Architecture and uses Dagger 2 for dependency injection. The source code is packaged based on feature.```
app/src/java/
\
\
shared\
utils\
```
### Architecture
Below outlines sample structure of most screens.
![enter image description here](https://raw.githubusercontent.com/arunkumar9t2/chromer/master/art/Chromer%20Architecture.png)### Code Style
- [mNo Hungarion notation.](http://jakewharton.com/just-say-no-to-hungarian-notation/)
- No `Impl` suffixes for interface implementations. Instead name based on what it does. Ex: `AppStore` and implementations `AppDiskStore` and `AppSystemStore`.
- All new modules are preferred to be written in `Kotlin`
- Formatting - Android Studio Default.## Contributions
You are more than welcome to contribute to Lynket's development. New features are branched off of `develop` . PRs are welcome against the `develop` branch.
How you can help:- Grab an issue from [issues](https://github.com/arunkumar9t2/chromer/issues) section that interests you.
- Unit testing using Roboelectric and Dagger 2 is already setup but coverage is rather low. Adding tests to existing features would greatly help! Refer [src/test/](https://github.com/arunkumar9t2/chromer/tree/master/app/src/test/java/arun/com/chromer).
- Break the ice. Feel free to create an issue to discuss your ideas.## License
Lynket is licensed under the [GNU v3 Public License.](LICENSE)