Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new init function that does not take a key #11

Closed
mikemee opened this issue Jan 11, 2017 · 0 comments · Fixed by #26
Closed

Add new init function that does not take a key #11

mikemee opened this issue Jan 11, 2017 · 0 comments · Fixed by #26

Comments

@mikemee
Copy link
Collaborator

mikemee commented Jan 11, 2017

Per discussion in #10, it would be nice to have an init function for Amazon that does not require a key, e.g. something like:

public static void init(boolean enableLogging) {
   init(null, enableLogging)
}

public static void init(String key, boolean enableLogging) {
   if(key!=null){        
      billingService.init(key);
   }
   billingService.enableDebugLogging(enableLogging);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant