We've built a simple mobile application that demonstrates how LaunchDarkly's SDK works. Below, you'll find the basic build procedure, but for more comprehensive instructions, you can visit your Quickstart page or the Android reference guide.
- Make sure you have Android Studio installed.
- Edit
MainActivity.java
in thesrc/main/java/com/launchdarkly/hello_android
directory and set the value of LAUNCHDARKLY_MOBILE_KEY to your LaunchDarkly mobile key. If there is an existing boolean feature flag in your LaunchDarkly project that you want to evaluate, set BOOLEAN_FLAG_KEY to the flag key.
.mobileKey("123456abcdef")
private static final String BOOLEAN_FLAG_KEY = "my-boolean-flag";
- Run your application through the Emulator or on a real device.
You should receive the message ”Feature flag ‘’ is <true/false> for this user”.