WeatherInformation: license and third party licenses
authorGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 16 Nov 2014 02:41:02 +0000 (03:41 +0100)
committerGustavo Martin Morcuende <gu.martinm@gmail.com>
Sun, 16 Nov 2014 02:41:02 +0000 (03:41 +0100)
commitc8d084c5f2cb6601126bd1b2ec73f758180fb1be
treea0330b0146003a8e679b654c9be87dc35c15893c
parent61d4e34e9da25f6ce3e5fd89c6c0305d8d7ed9cf
WeatherInformation: license and third party licenses
87 files changed:
Android/WeatherInformation/LICENSE [new file with mode: 0644]
Android/WeatherInformation/LICENSE.md [new file with mode: 0644]
Android/WeatherInformation/NOTICE [new file with mode: 0644]
Android/WeatherInformation/app/src/androidTest/java/name/gumartinm/weather/information/test/JPOSWeatherParserTest.java
Android/WeatherInformation/app/src/androidTest/java/name/gumartinm/weather/information/test/WeatherInformationActivityUnitTest.java
Android/WeatherInformation/app/src/androidTest/res/values/strings.xml
Android/WeatherInformation/app/src/main/AndroidManifest.xml
Android/WeatherInformation/app/src/main/assets/LICENSE [new file with mode: 0644]
Android/WeatherInformation/app/src/main/assets/NOTICE [new file with mode: 0644]
Android/WeatherInformation/app/src/main/assets/apache-http-client-license.txt [new file with mode: 0644]
Android/WeatherInformation/app/src/main/assets/gnome-icon-license.txt [new file with mode: 0644]
Android/WeatherInformation/app/src/main/assets/google-widget-dark-license.txt [new file with mode: 0644]
Android/WeatherInformation/app/src/main/assets/jackson-license.txt [new file with mode: 0644]
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/activity/AboutActivity.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/activity/LicensesActivity.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/activity/MapActivity.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/activity/SpecificActivity.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/activity/WeatherInformationPreferencesActivity.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/activity/WeatherTabsActivity.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/boot/WeatherInformationBootReceiver.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/fragment/ErrorDialogFragment.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/fragment/current/CurrentFragment.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/fragment/map/MapButtonsFragment.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/fragment/map/MapProgressFragment.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewAdapter.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewEntry.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/fragment/overview/OverviewFragment.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/fragment/preferences/WeatherInformationPreferencesFragment.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/httpclient/CustomHTTPClient.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/DatabaseQueries.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/WeatherLocation.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationContract.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationDbHelper.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/WeatherLocationDbQueries.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Clouds.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Coord.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Current.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Main.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Rain.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Snow.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Sys.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Weather.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/currentweather/Wind.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/forecastweather/City.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/forecastweather/Coord.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/forecastweather/Forecast.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/forecastweather/List.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/forecastweather/Temp.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/model/forecastweather/Weather.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/notification/NotificationIntentService.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/parser/JPOSCurrentParser.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/parser/JPOSForecastParser.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/service/IconsList.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/service/PermanentStorage.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/service/ServiceCurrentParser.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/service/ServiceForecastParser.java
Android/WeatherInformation/app/src/main/java/name/gumartinm/weather/information/widget/WidgetConfigure.java
Android/WeatherInformation/app/src/main/res/anim/weather_map_enter_progress.xml
Android/WeatherInformation/app/src/main/res/anim/weather_map_exit_progress.xml
Android/WeatherInformation/app/src/main/res/layout-land/weather_specific_fragment.xml
Android/WeatherInformation/app/src/main/res/layout-large/weather_main.xml
Android/WeatherInformation/app/src/main/res/layout-port/weather_specific_fragment.xml
Android/WeatherInformation/app/src/main/res/layout/appwidget.xml
Android/WeatherInformation/app/src/main/res/layout/appwidget_configure.xml
Android/WeatherInformation/app/src/main/res/layout/appwidget_error.xml
Android/WeatherInformation/app/src/main/res/layout/fragment_pager.xml
Android/WeatherInformation/app/src/main/res/layout/notification.xml
Android/WeatherInformation/app/src/main/res/layout/weather_about.xml
Android/WeatherInformation/app/src/main/res/layout/weather_current_fragment.xml
Android/WeatherInformation/app/src/main/res/layout/weather_licenses.xml
Android/WeatherInformation/app/src/main/res/layout/weather_main_entry_list.xml
Android/WeatherInformation/app/src/main/res/layout/weather_map.xml
Android/WeatherInformation/app/src/main/res/layout/weather_map_buttons.xml
Android/WeatherInformation/app/src/main/res/layout/weather_map_progress.xml
Android/WeatherInformation/app/src/main/res/layout/weather_specific.xml
Android/WeatherInformation/app/src/main/res/menu/weather_main_menu.xml
Android/WeatherInformation/app/src/main/res/values-v11/styles.xml
Android/WeatherInformation/app/src/main/res/values-v14/dimens.xml
Android/WeatherInformation/app/src/main/res/values-v14/styles.xml
Android/WeatherInformation/app/src/main/res/values-w820dp/dimens.xml
Android/WeatherInformation/app/src/main/res/values/arrays.xml
Android/WeatherInformation/app/src/main/res/values/dimens.xml
Android/WeatherInformation/app/src/main/res/values/strings.xml
Android/WeatherInformation/app/src/main/res/values/styles.xml
Android/WeatherInformation/app/src/main/res/xml/appwidget_preferences.xml
Android/WeatherInformation/app/src/main/res/xml/appwidget_provider.xml
Android/WeatherInformation/app/src/main/res/xml/weather_preferences.xml