This file contains hidden or 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
@kotlin.annotation.Target(AnnotationTarget.VALUE_PARAMETER) | |
@kotlin.annotation.Retention(AnnotationRetention.RUNTIME) | |
annotation class Input(val value: String) |
This file contains hidden or 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
public final class DeveloperPreferenceUtils { | |
private DeveloperPreferenceUtils() { | |
// hide constructor | |
} | |
public static final String PREF_KEY_REMOTE_CONFIG_URL = "pref_key_remote_config_url"; | |
public static final String PREF_KEY_ENABLE_WIP = "pref_key_enable_wip"; | |
public static final String PREF_KEY_ENABLE_EDIT_TOKEN = "pref_key_enable_edit_token"; | |
public static final String PREF_KEY_CLEAR_DATABASE = "pref_key_clear_database"; |
This file contains hidden or 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
/** | |
* Helper for accessing features related to Runtime Permissions introduced support library. | |
*/ | |
public final class PermissionUtils { | |
private static final String ACCESS_CAMERA_TAG = "AccessCamera"; | |
private PermissionUtils() { | |
// Hide Constructor | |
} |
This file contains hidden or 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
import android.view.View; | |
import android.widget.NumberPicker; | |
import com.myapp.android.us.R; | |
import java.text.DateFormatSymbols; | |
import java.util.Arrays; | |
import java.util.Calendar; | |
import java.util.Locale; |