Created
January 26, 2022 13:42
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.fetch().addOnSuccessListener(new OnSuccessListener<ConfigValues>() { | |
@Override | |
public void onSuccess(ConfigValues configValues) { | |
config.apply(configValues); | |
// Apply parameter values. | |
} | |
}).addOnFailureListener(new OnFailureListener() { | |
@Override | |
public void onFailure(Exception e) { | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment