Added a switch to switch off bug reporting (for dev - too much :)).
parent
c4668be5e2
commit
65cb3ab696
|
@ -6,6 +6,7 @@ package pl.tpolgrabia.urbanexplorer;
|
||||||
public class AppConstants {
|
public class AppConstants {
|
||||||
public static final String GOOGLE_API_KEY = "AIzaSyDAnmEK6cgovRrefUuYojL1pxPEbIBLZUw";
|
public static final String GOOGLE_API_KEY = "AIzaSyDAnmEK6cgovRrefUuYojL1pxPEbIBLZUw";
|
||||||
public static final long MIN_TIME = 60000;
|
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 MIN_DISTANCE = 100;
|
||||||
public static final float PAMNORAMIO_DEF_RADIUSX = 0.05f;
|
public static final float PAMNORAMIO_DEF_RADIUSX = 0.05f;
|
||||||
public static final float PAMNORAMIO_DEF_RADIUSY = 0.05f;
|
public static final float PAMNORAMIO_DEF_RADIUSY = 0.05f;
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
package pl.tpolgrabia.urbanexplorer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Created by tpolgrabia on 18.09.16.
|
||||||
|
*/
|
||||||
|
public enum AppStage {
|
||||||
|
DEVELOPMENT,
|
||||||
|
ALPHA,
|
||||||
|
BETA,
|
||||||
|
RELEASE_CANDIDATE,
|
||||||
|
FINAL
|
||||||
|
}
|
|
@ -91,7 +91,9 @@ public class MainActivity extends ActionBarActivity {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
lg.trace("onCreate");
|
lg.trace("onCreate");
|
||||||
setContentView(R.layout.activity_main);
|
setContentView(R.layout.activity_main);
|
||||||
AQUtility.setDebug(false);
|
|
||||||
|
AQUtility.setDebug(AppConstants.RELEASE != AppStage.FINAL
|
||||||
|
&& AppConstants.RELEASE != AppStage.RELEASE_CANDIDATE);
|
||||||
|
|
||||||
NetUtils.setGlobalProxyAuth(this);
|
NetUtils.setGlobalProxyAuth(this);
|
||||||
|
|
||||||
|
@ -115,7 +117,10 @@ public class MainActivity extends ActionBarActivity {
|
||||||
gestureDetector = new GestureDetectorCompat(this, swipeHandler);
|
gestureDetector = new GestureDetectorCompat(this, swipeHandler);
|
||||||
locationCallback = new StandardLocationListener();
|
locationCallback = new StandardLocationListener();
|
||||||
initLocalication();
|
initLocalication();
|
||||||
Fabric.with(this, new Crashlytics());
|
if (AppConstants.RELEASE == AppStage.FINAL
|
||||||
|
|| AppConstants.RELEASE == AppStage.RELEASE_CANDIDATE) {
|
||||||
|
Fabric.with(this, new Crashlytics());
|
||||||
|
}
|
||||||
|
|
||||||
Integer fragId = savedInstanceState != null ? savedInstanceState.getInt(FRAG_ID) : null;
|
Integer fragId = savedInstanceState != null ? savedInstanceState.getInt(FRAG_ID) : null;
|
||||||
lg.trace("Restored orig frag id: {}", fragId);
|
lg.trace("Restored orig frag id: {}", fragId);
|
||||||
|
|
Loading…
Reference in New Issue