Skip to content

Releases: MarcinMoskala/ActivityStarter

Simplify Parceler converter

04 Jun 11:08
Compare
Choose a tag to compare
Pre-release
0.60-beta.2

Correct name typo: Parcelar -> Parceler

Add default Parcel converter

30 Apr 16:24
Compare
Choose a tag to compare
Pre-release
Merge pull request #12 from MarcinMoskala/Introduce_arg_wrappers

Clean up in build scripts

Add arg converters

30 Apr 15:48
Compare
Choose a tag to compare
Add arg converters Pre-release
Pre-release
Merge pull request #11 from MarcinMoskala/Introduce_arg_wrappers

Fix

0.5

05 Apr 09:52
Compare
Choose a tag to compare
0.5

Now on @MakeActivityStarter there is a field includeStartForResult used to make Activities generate startForResult and startWithFlagsForResult mothods. Example:

@MakeActivityStarter(includeStartForResult = true)
public class MainActivity extends Activity {}

we can start using:

MainActivityStarter.startForResult(activity, code)

All standard types are supported

01 Apr 21:21
Compare
Choose a tag to compare

All supported types:

  • Subtype of Parcelable
  • Subtype of Serializable
  • ArrayList intL
  • ArrayList strLi
  • ArrayList
  • String
  • int
  • long
  • float
  • boolean bo
  • double
  • char
  • byte
  • short
  • CharSequence
  • String[]
  • int[]
  • long[]
  • float[]
  • boolean[]
  • double[]
  • char[]
  • byte[]
  • short[]
  • CharSequence[]

Fix in Activity arguments restore after save

23 Mar 15:20
Compare
Choose a tag to compare

Add custom keys

24 Feb 15:25
Compare
Choose a tag to compare

Now custom keys are allowed. Example:

public class MainActivity extends Activity {
    @Arg(key = "SOME_KEY") String name;
}

Also default keys were changed to include file package. Tests were improved.

v0.3-beta.1

23 Feb 19:29
Compare
Choose a tag to compare

Add custom keys on notification

v0.2

15 Feb 08:34
Compare
Choose a tag to compare

Release provided Activity support for saving state, annotation to omit that and better support for fields accesses by setter and getter.

v0.2-beta.2

12 Feb 19:51
Compare
Choose a tag to compare

Add support for saving state