WeatherInformation: using package name.gumartinm.weather.information
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Sat, 15 Nov 2014 14:52:00 +0000 (15:52 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Sat, 15 Nov 2014 14:52:00 +0000 (15:52 +0100)
commitb82b32d7da39f509e3eb466f9e190c39f31d5262
treeb1cac707d6e680152e0e853c3ade73b0b804717b
parent7f280027b660451e12b48f5bf24f048308fdbf0c
WeatherInformation: using package name.gumartinm.weather.information
108 files changed:
app/build.gradle
app/src/androidTest/java/com/weather/information/test/JPOSWeatherParserTest.java [deleted file]
app/src/androidTest/java/com/weather/information/test/WeatherInformationActivityUnitTest.java [deleted file]
app/src/androidTest/java/name/gumartinm/weather/information/test/JPOSWeatherParserTest.java [new file with mode: 0644]
app/src/androidTest/java/name/gumartinm/weather/information/test/WeatherInformationActivityUnitTest.java [new file with mode: 0644]
app/src/main/AndroidManifest.xml
app/src/main/java/com/weather/information/activity/AboutActivity.java [deleted file]
app/src/main/java/com/weather/information/activity/LicensesActivity.java [deleted file]
app/src/main/java/com/weather/information/activity/MapActivity.java [deleted file]
app/src/main/java/com/weather/information/activity/SpecificActivity.java [deleted file]
app/src/main/java/com/weather/information/activity/WeatherInformationPreferencesActivity.java [deleted file]
app/src/main/java/com/weather/information/activity/WeatherTabsActivity.java [deleted file]
app/src/main/java/com/weather/information/boot/WeatherInformationBootReceiver.java [deleted file]
app/src/main/java/com/weather/information/fragment/ErrorDialogFragment.java [deleted file]
app/src/main/java/com/weather/information/fragment/current/CurrentFragment.java [deleted file]
app/src/main/java/com/weather/information/fragment/map/MapButtonsFragment.java [deleted file]
app/src/main/java/com/weather/information/fragment/map/MapProgressFragment.java [deleted file]
app/src/main/java/com/weather/information/fragment/overview/OverviewAdapter.java [deleted file]
app/src/main/java/com/weather/information/fragment/overview/OverviewEntry.java [deleted file]
app/src/main/java/com/weather/information/fragment/overview/OverviewFragment.java [deleted file]
app/src/main/java/com/weather/information/fragment/preferences/WeatherInformationPreferencesFragment.java [deleted file]
app/src/main/java/com/weather/information/fragment/specific/SpecificFragment.java [deleted file]
app/src/main/java/com/weather/information/httpclient/Consts.java [deleted file]
app/src/main/java/com/weather/information/httpclient/ContentType.java [deleted file]
app/src/main/java/com/weather/information/httpclient/CustomHTTPClient.java [deleted file]
app/src/main/java/com/weather/information/model/DatabaseQueries.java [deleted file]
app/src/main/java/com/weather/information/model/WeatherLocation.java [deleted file]
app/src/main/java/com/weather/information/model/WeatherLocationContract.java [deleted file]
app/src/main/java/com/weather/information/model/WeatherLocationDbHelper.java [deleted file]
app/src/main/java/com/weather/information/model/WeatherLocationDbQueries.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Clouds.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Coord.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Current.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Main.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Rain.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Snow.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Sys.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Weather.java [deleted file]
app/src/main/java/com/weather/information/model/currentweather/Wind.java [deleted file]
app/src/main/java/com/weather/information/model/forecastweather/City.java [deleted file]
app/src/main/java/com/weather/information/model/forecastweather/Coord.java [deleted file]
app/src/main/java/com/weather/information/model/forecastweather/Forecast.java [deleted file]
app/src/main/java/com/weather/information/model/forecastweather/List.java [deleted file]
app/src/main/java/com/weather/information/model/forecastweather/Temp.java [deleted file]
app/src/main/java/com/weather/information/model/forecastweather/Weather.java [deleted file]
app/src/main/java/com/weather/information/notification/NotificationIntentService.java [deleted file]
app/src/main/java/com/weather/information/parser/IJPOSParser.java [deleted file]
app/src/main/java/com/weather/information/parser/JPOSWeatherParser.java [deleted file]
app/src/main/java/com/weather/information/service/IconsList.java [deleted file]
app/src/main/java/com/weather/information/service/PermanentStorage.java [deleted file]
app/src/main/java/com/weather/information/service/ServiceParser.java [deleted file]
app/src/main/java/com/weather/information/widget/WidgetConfigure.java [deleted file]
app/src/main/java/com/weather/information/widget/WidgetProvider.java [deleted file]
app/src/main/java/com/weather/information/widget/service/WidgetIntentService.java [deleted file]
app/src/main/java/name/gumartinm/weather/information/activity/AboutActivity.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/activity/LicensesActivity.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/activity/MapActivity.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/activity/SpecificActivity.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/activity/WeatherInformationPreferencesActivity.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/activity/WeatherTabsActivity.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/boot/WeatherInformationBootReceiver.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/ErrorDialogFragment.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/current/CurrentFragment.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/map/MapButtonsFragment.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/map/MapProgressFragment.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewAdapter.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewEntry.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewFragment.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/preferences/WeatherInformationPreferencesFragment.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/fragment/specific/SpecificFragment.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/httpclient/Consts.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/httpclient/ContentType.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/httpclient/CustomHTTPClient.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/DatabaseQueries.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/WeatherLocation.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationContract.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationDbHelper.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationDbQueries.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Clouds.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Coord.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Current.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Main.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Rain.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Snow.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Sys.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Weather.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/currentweather/Wind.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/forecastweather/City.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/forecastweather/Coord.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/forecastweather/Forecast.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/forecastweather/List.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/forecastweather/Temp.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/model/forecastweather/Weather.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/notification/NotificationIntentService.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/parser/IJPOSParser.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/parser/JPOSWeatherParser.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/service/IconsList.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/service/PermanentStorage.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/service/ServiceParser.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/widget/WidgetConfigure.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/widget/WidgetProvider.java [new file with mode: 0644]
app/src/main/java/name/gumartinm/weather/information/widget/service/WidgetIntentService.java [new file with mode: 0644]
app/src/main/res/layout-large/weather_main.xml
app/src/main/res/layout/weather_current_fragment.xml
app/src/main/res/layout/weather_map.xml
app/src/main/res/layout/weather_specific.xml
app/src/main/res/menu/main.xml
app/src/main/res/xml/appwidget_provider.xml