├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── LICENSE
└── README.md
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as
6 | contributors and maintainers pledge to making participation in our project and
7 | our community a harassment-free experience for everyone, regardless of age, body
8 | size, disability, ethnicity, gender identity and expression, level of experience,
9 | nationality, personal appearance, race, religion, or sexual identity and
10 | orientation.
11 |
12 | ## Our Standards
13 |
14 | Examples of behavior that contributes to creating a positive environment
15 | include:
16 |
17 | * Using welcoming and inclusive language
18 | * Being respectful of differing viewpoints and experiences
19 | * Gracefully accepting constructive criticism
20 | * Focusing on what is best for the community
21 | * Showing empathy towards other community members
22 |
23 | Examples of unacceptable behavior by participants include:
24 |
25 | * The use of sexualized language or imagery and unwelcome sexual attention or
26 | advances
27 | * Trolling, insulting/derogatory comments, and personal or political attacks
28 | * Public or private harassment
29 | * Publishing others' private information, such as a physical or electronic
30 | address, without explicit permission
31 | * Other conduct which could reasonably be considered inappropriate in a
32 | professional setting
33 |
34 | ## Our Responsibilities
35 |
36 | Project maintainers are responsible for clarifying the standards of acceptable
37 | behavior and are expected to take appropriate and fair corrective action in
38 | response to any instances of unacceptable behavior.
39 |
40 | Project maintainers have the right and responsibility to remove, edit, or
41 | reject comments, commits, code, wiki edits, issues, and other contributions
42 | that are not aligned to this Code of Conduct, or to ban temporarily or
43 | permanently any contributor for other behaviors that they deem inappropriate,
44 | threatening, offensive, or harmful.
45 |
46 | ## Scope
47 |
48 | This Code of Conduct applies both within project spaces and in public spaces
49 | when an individual is representing the project or its community. Examples of
50 | representing a project or community include using an official project e-mail
51 | address, posting via an official social media account, or acting as an appointed
52 | representative at an online or offline event. Representation of a project may be
53 | further defined and clarified by project maintainers.
54 |
55 | ## Enforcement
56 |
57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
58 | reported by contacting the project team at [INSERT EMAIL ADDRESS]. All
59 | complaints will be reviewed and investigated and will result in a response that
60 | is deemed necessary and appropriate to the circumstances. The project team is
61 | obligated to maintain confidentiality with regard to the reporter of an incident.
62 | Further details of specific enforcement policies may be posted separately.
63 |
64 | Project maintainers who do not follow or enforce the Code of Conduct in good
65 | faith may face temporary or permanent repercussions as determined by other
66 | members of the project's leadership.
67 |
68 | ## Attribution
69 |
70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71 | available at [http://contributor-covenant.org/version/1/4][version]
72 |
73 | [homepage]: http://contributor-covenant.org
74 | [version]: http://contributor-covenant.org/version/1/4/
75 |
--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | # Contribution Guidelines
2 |
3 | ## Table of Contents
4 | - [Adding to this list](#adding-to-this-list)
5 | - [Creating your own awesome list](#creating-your-own-awesome-list)
6 | - [Adding something to an Awesome list](#adding-something-to-an-awesome-list)
7 | - [Updating your Pull Request](#updating-your-pull-request)
8 |
9 | ## Adding to this list
10 |
11 | Please ensure your pull request adheres to the following guidelines:
12 |
13 | - Search previous suggestions before making a new one, as yours may be a duplicate.
14 | - Make sure the list is useful before submitting. That implies it has enough content and every item has a good succinct description.
15 | - Make an individual pull request for each suggestion.
16 | - Use [title-casing](http://titlecapitalization.com) (AP style).
17 | - Use the following format: `[List Name](link)`
18 | - Link additions should be added to the bottom of the relevant category.
19 | - New categories or improvements to the existing categorization are welcome.
20 | - Check your spelling and grammar.
21 | - Make sure your text editor is set to remove trailing whitespace.
22 | - The pull request and commit should have a useful title.
23 | - The body of your commit message should contain a link to the repository.
24 |
25 | Thank you for your suggestions!
26 |
27 | ## Creating your own awesome list
28 |
29 | To create your own list, check out the [instructions](https://github.com/sindresorhus/awesome/blob/master/create-list.md).
30 |
31 | ## Adding something to an awesome list
32 |
33 | If you have something awesome to contribute to an awesome list, this is how you do it.
34 |
35 | You'll need a [GitHub account](https://github.com/join)!
36 |
37 | 1. Access the awesome list's GitHub page. For example: https://github.com/mbasso/awesome-wasm
38 | 2. Click on the `README.md`.
39 | 3. Now click on the edit icon.
40 | 4. You can start editing the text of the file in the in-browser editor. Make sure you follow guidelines above. You can use [GitHub Flavored Markdown](https://help.github.com/articles/github-flavored-markdown/).
41 | 5. Say why you're proposing the changes, and then click on "Propose file change".
42 | 6. Submit the [pull request](https://help.github.com/articles/using-pull-requests/)!
43 |
44 | ## Updating your Pull Request
45 |
46 | Sometimes, a maintainer of an awesome list will ask you to edit your Pull Request before it is included. This is normally due to spelling errors or because your PR didn't match the awesome-* list guidelines.
47 |
48 | [Here](https://github.com/RichardLitt/docs/blob/master/amending-a-commit-guide.md) is a write up on how to change a Pull Request, and the different ways you can do that.
49 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Awesome Kotlin Libraries for Android [](https://github.com/sindresorhus/awesome)
2 |
3 | A curated list of awesome Kotlin libraries and projects for Android. :octocat:
4 |
5 | Please read the [contribution guidelines](CONTRIBUTING.md) if you want to contribute.
6 |
7 | ## Contents
8 |
9 | - [UI](#ui)
10 | - [ToolBox](#toolbox)
11 | - [Utility](#utility)
12 | - [Dependency Injection](#dependency-injection)
13 | - [Concurrency](#concurrency)
14 | - [Games](#games)
15 | - [Frameworks](#frameworks)
16 | - [Projects](#projects)
17 |
18 |
19 |
20 | ## UI [Back ⇈](#contents)
21 | * [KotterKnife](https://github.com/JakeWharton/kotterknife) - View injection library for Android.
22 | * [KBinding](https://github.com/BennyWang/KBinding) - Android View Model binding framework write in kotlin, base on anko, simple but powerful.
23 | * [Anvil Kotlin](https://github.com/andre-artus/AnvilKotlin) - Minimal UI library for Android inspired by React.
24 | * [LastAdapter](https://github.com/nitrico/LastAdapter) - Don't write a RecyclerView adapter again. Not even a ViewHolder!.
25 | * [Anvil](https://github.com/zserge/anvil) - Minimal UI library for Android inspired by React.
26 | * [MaterialDrawerKt](https://github.com/zsmb13/MaterialDrawerKt) - A DSL for creating Material Design navigation drawers without any XML.
27 |
28 |
29 |
30 | ## Toolbox [Back ⇈](#contents)
31 | * [Anko](https://github.com/Kotlin/anko) - Pleasant Android application development.
32 |
33 |
34 |
35 | ## Utility [Back ⇈](#contents)
36 | * [KotlinPreferences](https://github.com/MarcinMoskala/KotlinPreferences) - Kotlin Android Library, that makes preference usage in Kotlin simple and fun.
37 | * [PreferenceHolder](https://github.com/MarcinMoskala/PreferenceHolder) - Kotlin Android Library, that makes preference usage in Kotlin simple and fun using object with fields binded to SharedPreferences.
38 | * [Kotlin Jetpack](https://github.com/nsk-mironov/kotlin-jetpack) - A collection of useful extension methods for Android.
39 | * [pawegio/KAndroid](https://github.com/pawegio/KAndroid) - Kotlin library for Android providing useful extensions to eliminate boilerplate code.
40 | * [Kotpref](https://github.com/chibatching/Kotpref) - Android SharedPreference delegation for Kotlin.
41 | * [Bubble](https://github.com/TouK/bubble) - Library for obtaining screen orientation when orientation is blocked in AndroidManifest.
42 | * [Kaffeine](https://github.com/ragunathjawahar/kaffeine) - Kaffeine is a Kotlin-flavored Android library for accelerating development.
43 | * [Kotlin Koi](https://github.com/mcxiaoke/kotlin-koi) - Koi, a lightweight kotlin library for Android Development.
44 | * [PaperParcel](https://github.com/grandstaish/paperparcel) - Boilerplate reduction library written specifically for working with Kotlin data classes on Android.
45 | * [Android Drawable DSL](https://github.com/infotech-group/android-drawable-dsl) - DSL for constructing the drawables in Kotlin instead of in XML.
46 | * [Fiberglass](https://github.com/mathcamp/fiberglass) - Easy lightweight SharedPreferences library for Android in Kotlin using delegated properties.
47 | * [Krouter](https://github.com/denisidoro/krouter) - A lightweight Android activity router.
48 | * [Toy Bricks](https://github.com/SnowdreamFramework/ToyBricks) - Android Library that provide simpler way to achieve modularity.
49 | * [Static Log](https://github.com/jupf/staticlog) - StaticLog - super lightweight static logging for Kotlin, Java and Android.
50 | * [Stepper Touch](https://github.com/DanielMartinus/Stepper-Touch) - Fun playful Android stepper widget for counting, written in Kotlin.
51 |
52 |
53 |
54 | ## Dependency Injection [Back ⇈](#contents)
55 | * [KotterKnife](https://github.com/JakeWharton/kotterknife) - View injection library for Android.
56 | * [ActivityStarter](https://github.com/MarcinMoskala/ActivityStarter) - Activity starter generator and arguments injection library for Android.
57 |
58 |
59 |
60 | ## Concurency [Back ⇈](#contents)
61 | * [KillerTask](https://github.com/inaka/KillerTask) - Android AsyncTask wrapper library, written in Kotlin.
62 | * [AsyncAwait](https://github.com/metalabdesign/AsyncAwait) - async/await for Android built upon coroutines introduced in Kotlin 1.1.
63 |
64 |
65 |
66 | ## Games [Back ⇈](#contents)
67 | * [Glimpse Framework Android](https://github.com/GlimpseFramework/glimpse-framework-android) - OpenGL made simple.
68 |
69 |
70 |
71 | ### Frameworks [Back ⇈](#contents)
72 | * [Kotgo](https://github.com/nekocode/kotgo) - An android development framwork on kotlin using MVP architecture.
73 | * [Kotlin Core](https://github.com/lightningkite/kotlin-core) - A full framework for making Android apps. Based on Anko and Kotson.
74 |
75 |
76 |
77 | ## Projects [Back ⇈](#contents)
78 | * [Bandhook Kotlin](https://github.com/antoniolg/Bandhook-Kotlin) - A showcase music app for Android entirely written using Kotlin language.
79 | * [Kotlin for Android Developers](https://github.com/antoniolg/Kotlin-for-Android-Developers) - Companion App for the book "Kotlin Android Developers".
80 | * [Kotlin Dagger Example](https://github.com/damianpetla/kotlin-dagger-example) - Example of Android project showing integration with Kotlin and Dagger 2.
81 | * [Android Rivers](https://github.com/dodyg/AndroidRivers) - RSS Readers for Android.
82 | * [Banjen Android Banjo Tuner](https://github.com/MakinGiants/banjen-android-banjo-tuner) - App that plays sounds helping to tune a brazilian banjo.
83 | * [Kotlillon](https://github.com/inaka/kotlillon) - Android Kotlin Examples.
84 | * [Today in History](https://github.com/MakinGiants/todayhistory) - App that shows what happened today in history.
85 | * [Pocket](https://github.com/RxKotlin/Pocket) - This app help user to save links easily, and can export to Evernote as weekly.
86 | * [Android Demo In 4 Languages](https://github.com/SidneyXu/AndroidDemoIn4Languages) - Comparison between Java, Groovy, Scala, Kotlin in Android Development.
87 | * [Tachiyomi](https://github.com/inorichi/tachiyomi) - Free and open source manga reader for Android.
88 | * [Blum Kotlin](https://github.com/ziggy42/Blum-kotlin) - A simple android Twitter client written in Kotlin
89 | * [Twidere Android](https://github.com/TwidereProject/Twidere-Android) - Material Design ready and feature rich Twitter app for Android 4.0+
90 | * [Simple Calendar](https://github.com/SimpleMobileTools/Simple-Calendar) - A simple calendar with events, customizable widget and no ads.
91 | * [Simple Camera](https://github.com/SimpleMobileTools/Simple-Camera) - A camera with flash, zoom and no ads.
92 | * [Simple Draw](https://github.com/SimpleMobileTools/Simple-Draw) - A canvas you can draw on with different colors.
93 | * [Simple File Manager](https://github.com/SimpleMobileTools/Simple-File-Manager) - A simple file manager for browsing and editing files and directories.
94 | * [Simple Gallery](https://github.com/SimpleMobileTools/Simple-Gallery) - A gallery for viewing photos and videos without ads.
95 | * [Simple Notes](https://github.com/SimpleMobileTools/Simple-Notes) - A simple textfield for adding quick notes without ads.
96 |
97 |
98 | --------------------------------------------------------------------------------------------------------------------------------
99 |
100 | ***Awesome Kotlin Libraries for Android* source code is licensed under the [MIT License](https://github.com/AppCypher/Awesome-Kotlin-Libraries-for-Android/LICENSE).**
101 |
--------------------------------------------------------------------------------