Preparing for making a release 1.0.1

master
Tomasz Półgrabia 2016-09-18 23:19:36 +02:00
parent bb4540a801
commit 6f56e896a4
4 changed files with 7 additions and 2 deletions

View File

@ -36,7 +36,7 @@ android {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 21 targetSdkVersion 21
versionCode 2 versionCode 2
versionName "1.0.1-SNAPSHOT" versionName "1.0.1"
} }
signingConfigs { signingConfigs {

View File

@ -6,7 +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 AppStage RELEASE = AppStage.FINAL;
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;

View File

@ -175,6 +175,7 @@ public class MainActivity extends ActionBarActivity {
WikiLocationsFragment wikiLocationsFragment = (WikiLocationsFragment) WikiLocationsFragment wikiLocationsFragment = (WikiLocationsFragment)
getSupportFragmentManager() getSupportFragmentManager()
.findFragmentByTag(WikiLocationsFragment.TAG); .findFragmentByTag(WikiLocationsFragment.TAG);
wikiLocationsFragment.clearData();
wikiLocationsFragment.fetchWikiLocations(); wikiLocationsFragment.fetchWikiLocations();
break; break;
default: default:

View File

@ -117,6 +117,10 @@ public class WikiLocationsFragment extends Fragment {
return inflatedView; return inflatedView;
} }
public void clearData() {
appObjects.clear();
}
public void fetchWikiLocations() { public void fetchWikiLocations() {
lg.trace("Fetch wiki locations"); lg.trace("Fetch wiki locations");