Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Ade Fruandta committed Aug 26, 2022
0 parents commit 7a5dae1
Show file tree
Hide file tree
Showing 108 changed files with 3,248 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
*.iml
.gradle
/local.properties
/.idea
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Changelog

## 1.0
### Release Highlights
This initial version, we try to make easier and simpler to get and put intent extras / arguments.
To make it come true, we create some convention to generated some boilerplate function, so we don't need do and write the same things again and again

### Features
* Annotation `@Extras`. To help processor to generate `Binding` and `Routing` class, and some extension function to populate extras to intent / bundle.
* Annotation `@Required`. To define non null extra.
* Annotation `@Mutable`. To define extra can modified (var).
* Annotation `@Route`. To help processor to generate some extension function to help us to know which extras need to pass to route particular Activity / Fragment.
* Property `extras`. To define for particular `@Route` need several `extras`
* Having `bindExtras` extension function in `Activity` and `Fragment`.
* Having basic Extra class such as:
* BinderExtra
* BooleanExtra
* BundleExtra
* ByteArrayExtra
* ByteExtra
* CharArrayExtra
* CharExtra
* CharSequenceArrayExtra
* CharSequenceExtra
* DoubleArrayExtra
* DoubleExtra
* FloatArrayExtra
* FloatExtra
* IntArrayExtra
* IntExtra
* LongArrayExtra
* LongExtra
* ParcelableArrayExtra
* ParcelableExtra
* SerializableExtra
* ShortArrayExtra
* ShortExtra
* SizeExtra
* SizeFExtra
* StringArrayExtra
* StringArrayListExtra
* StringExtra
* Having ParcelerExtra to integrate with [johncarl81/parceler](https://github.com/johncarl81/parceler)
21 changes: 21 additions & 0 deletions LICENCE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2022 Ade Fruandta

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 7a5dae1

Please sign in to comment.