Added a switch to switch off bug reporting (for dev - too much :)).

master
Tomasz Półgrabia 2016-09-18 16:31:45 +02:00
parent c4668be5e2
commit 65cb3ab696
3 changed files with 20 additions and 2 deletions

View File

@ -6,6 +6,7 @@ package pl.tpolgrabia.urbanexplorer;
public class AppConstants {
public static final String GOOGLE_API_KEY = "AIzaSyDAnmEK6cgovRrefUuYojL1pxPEbIBLZUw";
public static final long MIN_TIME = 60000;
public static final AppStage RELEASE = AppStage.DEVELOPMENT;
public static final float MIN_DISTANCE = 100;
public static final float PAMNORAMIO_DEF_RADIUSX = 0.05f;
public static final float PAMNORAMIO_DEF_RADIUSY = 0.05f;

View File

@ -0,0 +1,12 @@
package pl.tpolgrabia.urbanexplorer;
/**
* Created by tpolgrabia on 18.09.16.
*/
public enum AppStage {
DEVELOPMENT,
ALPHA,
BETA,
RELEASE_CANDIDATE,
FINAL
}

View File

@ -91,7 +91,9 @@ public class MainActivity extends ActionBarActivity {
super.onCreate(savedInstanceState);
lg.trace("onCreate");
setContentView(R.layout.activity_main);
AQUtility.setDebug(false);
AQUtility.setDebug(AppConstants.RELEASE != AppStage.FINAL
&& AppConstants.RELEASE != AppStage.RELEASE_CANDIDATE);
NetUtils.setGlobalProxyAuth(this);
@ -115,7 +117,10 @@ public class MainActivity extends ActionBarActivity {
gestureDetector = new GestureDetectorCompat(this, swipeHandler);
locationCallback = new StandardLocationListener();
initLocalication();
if (AppConstants.RELEASE == AppStage.FINAL
|| AppConstants.RELEASE == AppStage.RELEASE_CANDIDATE) {
Fabric.with(this, new Crashlytics());
}
Integer fragId = savedInstanceState != null ? savedInstanceState.getInt(FRAG_ID) : null;
lg.trace("Restored orig frag id: {}", fragId);