Preparing for making a release 1.0.1
parent
bb4540a801
commit
6f56e896a4
|
@ -36,7 +36,7 @@ android {
|
|||
minSdkVersion 21
|
||||
targetSdkVersion 21
|
||||
versionCode 2
|
||||
versionName "1.0.1-SNAPSHOT"
|
||||
versionName "1.0.1"
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
|
|
|
@ -6,7 +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 AppStage RELEASE = AppStage.FINAL;
|
||||
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;
|
||||
|
|
|
@ -175,6 +175,7 @@ public class MainActivity extends ActionBarActivity {
|
|||
WikiLocationsFragment wikiLocationsFragment = (WikiLocationsFragment)
|
||||
getSupportFragmentManager()
|
||||
.findFragmentByTag(WikiLocationsFragment.TAG);
|
||||
wikiLocationsFragment.clearData();
|
||||
wikiLocationsFragment.fetchWikiLocations();
|
||||
break;
|
||||
default:
|
||||
|
|
|
@ -117,6 +117,10 @@ public class WikiLocationsFragment extends Fragment {
|
|||
return inflatedView;
|
||||
}
|
||||
|
||||
public void clearData() {
|
||||
appObjects.clear();
|
||||
}
|
||||
|
||||
public void fetchWikiLocations() {
|
||||
lg.trace("Fetch wiki locations");
|
||||
|
||||
|
|
Loading…
Reference in New Issue