Back to project page surveygcp.
The source code is released under:
GNU General Public License
If you think the Android project surveygcp 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 org.droidplanner.gcp.file; /* w w w . java2 s . c o m*/ import android.os.Environment; public class DirectoryPath { static public String getDroidPlannerPath() { String root = Environment.getExternalStorageDirectory().getPath(); return (root + "/DroidPlanner/"); } static public String getGCPPath() { return getDroidPlannerPath() + "/GCP/"; } static public String getMapsPath() { return getDroidPlannerPath() + "/Maps/"; } }