Back to project page SpeechWriter.
The source code is released under:
MIT License
If you think the Android project SpeechWriter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package edu.psu.rcy5017.speechwriter.constant; // w w w . ja v a2 s . c om import android.os.Environment; /** * A class containing miscellaneous constants. * @author Ryan Yosua * */ public final class MiscConstants { public static final String FILE_DIRECTORY = Environment.getExternalStorageDirectory().getAbsolutePath(); public static final String AUDIO_EXTENSION = ".3gp"; public static final int MIN_FONT_SIZE = 25; public static final int MAX_FONT_SIZE = 75; public static final String PREFERENCES_NAME = "PublicSpeakingPreferences"; private MiscConstants() { // Prevent the instantiation of this class. } }