Android Open Source - altitude-recorder Constants






From Project

Back to project page altitude-recorder.

License

The source code is released under:

GNU General Public License

If you think the Android project altitude-recorder listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package org.crocodile.altituderecorder;
/*from   w w w  .  j  av a2 s.  com*/
public interface Constants
{

    static final String LOGTAG                = "AltitudeRecorder";

    static final String BROADCAST_TAG         = "AltitudeRecordService";
    static final String BROADCAST_FNAME       = "Filename";

    static final int    SERVICE_STARTED_TOKEN = 1;
    static final int    SERVICE_STOPPED_TOKEN = 0;

    static final int    UPDATE_INTERVAL       = 1000;

    static final String BARO_PREFIX           = "#BARO";

    static final String TIMESTAMP_SEPARATOR   = ";";

    /**
     * Used for notifications in task bar.
     */
    static final int    NOTIFICATION_ID       = 0;

}




Java Source Code List

org.crocodile.altituderecorder.AltitudeRecordService.java
org.crocodile.altituderecorder.Constants.java
org.crocodile.altituderecorder.MainActivity.java