Skip to content

Instantly share code, notes, and snippets.

@poemsk
Created May 2, 2020 10:52
Show Gist options
  • Save poemsk/df50e4556addabf019aff1b101e69da1 to your computer and use it in GitHub Desktop.
Save poemsk/df50e4556addabf019aff1b101e69da1 to your computer and use it in GitHub Desktop.
Building Android Library From Scratch
// don't do this
public ExampleClient(Context context, Configuration config) {
}
// do this
public ExampleClient(Context context, @NonNull Configuration config) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment