├── 18-Map └── LunchList │ ├── libs │ └── android-rss.jar │ ├── res │ ├── drawable │ │ ├── run.png │ │ ├── list.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── marker.png │ │ ├── ball_green.png │ │ ├── restaurant.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── layout │ │ ├── map.xml │ │ └── main.xml │ ├── menu │ │ ├── option.xml │ │ └── details_option.xml │ └── xml │ │ └── preferences.xml │ ├── src │ └── apt │ │ └── tutorial │ │ └── EditPreferences.java │ ├── default.properties │ └── build.properties ├── 06-Tabs └── LunchList │ ├── res │ ├── drawable │ │ ├── list.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ └── restaurant.png │ └── values │ │ └── strings.xml │ ├── default.properties │ ├── src │ └── apt │ │ └── tutorial │ │ └── Restaurant.java │ ├── AndroidManifest.xml │ └── build.properties ├── 13-Prefs └── LunchList │ ├── res │ ├── drawable │ │ ├── run.png │ │ ├── list.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── menu │ │ └── option.xml │ ├── xml │ │ └── preferences.xml │ └── layout │ │ └── main.xml │ ├── default.properties │ ├── src │ └── apt │ │ └── tutorial │ │ └── EditPreferences.java │ └── build.properties ├── 19-Alarm └── LunchList │ ├── libs │ └── android-rss.jar │ ├── res │ ├── drawable │ │ ├── run.png │ │ ├── list.png │ │ ├── marker.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── layout │ │ ├── alarm.xml │ │ ├── map.xml │ │ └── main.xml │ ├── menu │ │ ├── option.xml │ │ └── details_option.xml │ └── xml │ │ └── preferences.xml │ ├── src │ └── apt │ │ └── tutorial │ │ ├── AlarmActivity.java │ │ └── OnAlarmReceiver.java │ └── default.properties ├── 25-WebKit └── LunchList │ ├── res │ ├── drawable │ │ ├── ff.png │ │ ├── icon.png │ │ ├── list.png │ │ ├── run.png │ │ ├── toast.png │ │ ├── marker.png │ │ ├── ball_green.png │ │ ├── ball_red.png │ │ ├── restaurant.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_help.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── widget_frame.9.png │ │ ├── hc_widget_preview.png │ │ ├── stat_notify_chat.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── layout │ │ ├── help.xml │ │ ├── main.xml │ │ ├── detail_activity.xml │ │ ├── alarm.xml │ │ ├── map.xml │ │ └── widget.xml │ ├── xml │ │ └── widget_provider.xml │ ├── xml-v11 │ │ └── widget_provider.xml │ ├── layout-v11 │ │ └── widget.xml │ ├── menu │ │ ├── option.xml │ │ └── details_option.xml │ └── layout-large-land │ │ └── main.xml │ ├── libs │ ├── android-rss.jar │ └── android-support-v4.jar │ ├── src │ └── apt │ │ └── tutorial │ │ ├── AlarmActivity.java │ │ ├── ListWidgetService.java │ │ └── HelpPage.java │ └── default.properties ├── 27-Media └── LunchList │ ├── libs │ ├── android-rss.jar │ └── android-support-v4.jar │ ├── res │ ├── drawable │ │ ├── ff.png │ │ ├── run.png │ │ ├── icon.png │ │ ├── list.png │ │ ├── marker.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ ├── ic_menu_help.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── stat_notify_chat.png │ │ ├── widget_frame.9.png │ │ ├── hc_widget_preview.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── layout │ │ ├── help.xml │ │ ├── main.xml │ │ ├── detail_activity.xml │ │ ├── alarm.xml │ │ ├── map.xml │ │ └── widget.xml │ ├── xml │ │ └── widget_provider.xml │ ├── xml-v11 │ │ └── widget_provider.xml │ ├── layout-v11 │ │ └── widget.xml │ ├── menu │ │ ├── option.xml │ │ └── details_option.xml │ └── layout-large-land │ │ └── main.xml │ ├── src │ └── apt │ │ └── tutorial │ │ ├── ListWidgetService.java │ │ └── HelpPage.java │ └── default.properties ├── 08-Threads └── LunchList │ ├── res │ ├── drawable │ │ ├── list.png │ │ ├── run.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ └── restaurant.png │ ├── values │ │ └── strings.xml │ └── menu │ │ └── option.xml │ ├── default.properties │ ├── AndroidManifest.xml │ └── build.properties ├── 11-Database └── LunchList │ ├── res │ ├── drawable │ │ ├── run.png │ │ ├── list.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── restaurant.png │ │ └── ball_yellow.png │ ├── values │ │ └── strings.xml │ └── menu │ │ └── option.xml │ ├── default.properties │ ├── AndroidManifest.xml │ └── build.properties ├── 14-Rotation └── LunchList │ ├── res │ ├── drawable │ │ ├── run.png │ │ ├── list.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── restaurant.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── menu │ │ └── option.xml │ ├── xml │ │ └── preferences.xml │ └── layout │ │ └── main.xml │ ├── src │ └── apt │ │ └── tutorial │ │ └── EditPreferences.java │ ├── default.properties │ └── build.properties ├── 15-Internet └── LunchList │ ├── libs │ └── android-rss.jar │ ├── res │ ├── drawable │ │ ├── run.png │ │ ├── list.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── restaurant.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── menu │ │ ├── details_option.xml │ │ └── option.xml │ ├── xml │ │ └── preferences.xml │ └── layout │ │ └── main.xml │ ├── src │ └── apt │ │ └── tutorial │ │ └── EditPreferences.java │ ├── default.properties │ └── build.properties ├── 16-Service └── LunchList │ ├── libs │ └── android-rss.jar │ ├── res │ ├── drawable │ │ ├── list.png │ │ ├── run.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── menu │ │ ├── details_option.xml │ │ └── option.xml │ ├── xml │ │ └── preferences.xml │ └── layout │ │ └── main.xml │ ├── src │ └── apt │ │ └── tutorial │ │ └── EditPreferences.java │ ├── default.properties │ └── build.properties ├── 17-Location └── LunchList │ ├── libs │ └── android-rss.jar │ ├── res │ ├── drawable │ │ ├── run.png │ │ ├── list.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── restaurant.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── menu │ │ ├── option.xml │ │ └── details_option.xml │ ├── xml │ │ └── preferences.xml │ └── layout │ │ └── main.xml │ ├── src │ └── apt │ │ └── tutorial │ │ └── EditPreferences.java │ └── default.properties ├── 21-AppWidget └── LunchList │ ├── res │ ├── drawable │ │ ├── ff.png │ │ ├── icon.png │ │ ├── list.png │ │ ├── run.png │ │ ├── marker.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ ├── widget_frame.9.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── stat_notify_chat.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── xml │ │ └── widget_provider.xml │ ├── layout │ │ ├── alarm.xml │ │ ├── map.xml │ │ ├── main.xml │ │ └── widget.xml │ └── menu │ │ ├── option.xml │ │ └── details_option.xml │ ├── libs │ └── android-rss.jar │ ├── src │ └── apt │ │ └── tutorial │ │ ├── AlarmActivity.java │ │ └── AppWidget.java │ └── default.properties ├── 23-Honeycomb └── LunchList │ ├── res │ ├── drawable │ │ ├── ff.png │ │ ├── icon.png │ │ ├── list.png │ │ ├── run.png │ │ ├── marker.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ ├── widget_frame.9.png │ │ ├── hc_widget_preview.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── stat_notify_chat.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── layout │ │ ├── main.xml │ │ ├── detail_activity.xml │ │ ├── alarm.xml │ │ ├── map.xml │ │ └── widget.xml │ ├── xml │ │ └── widget_provider.xml │ ├── xml-v11 │ │ └── widget_provider.xml │ ├── layout-v11 │ │ └── widget.xml │ └── menu │ │ ├── option.xml │ │ └── details_option.xml │ ├── libs │ ├── android-rss.jar │ └── android-support-v4.jar │ ├── src │ └── apt │ │ └── tutorial │ │ ├── AlarmActivity.java │ │ ├── DetailForm.java │ │ └── ListWidgetService.java │ └── default.properties ├── 09-Lifecycle └── LunchList │ ├── res │ ├── drawable │ │ ├── list.png │ │ ├── run.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ └── restaurant.png │ ├── values │ │ └── strings.xml │ └── menu │ │ └── option.xml │ ├── default.properties │ └── AndroidManifest.xml ├── 10-Resources └── LunchList │ ├── res │ ├── drawable │ │ ├── list.png │ │ ├── run.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ └── restaurant.png │ ├── values │ │ └── strings.xml │ └── menu │ │ └── option.xml │ ├── default.properties │ └── AndroidManifest.xml ├── 12-Activities └── LunchList │ ├── res │ ├── drawable │ │ ├── run.png │ │ ├── list.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ └── restaurant.png │ ├── values │ │ └── strings.xml │ ├── menu │ │ └── option.xml │ └── layout │ │ └── main.xml │ ├── default.properties │ └── AndroidManifest.xml ├── 22-HCAppWidget └── LunchList │ ├── res │ ├── drawable │ │ ├── ff.png │ │ ├── icon.png │ │ ├── list.png │ │ ├── run.png │ │ ├── toast.png │ │ ├── marker.png │ │ ├── ball_green.png │ │ ├── ball_red.png │ │ ├── restaurant.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── widget_frame.9.png │ │ ├── hc_widget_preview.png │ │ ├── stat_notify_chat.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── xml │ │ └── widget_provider.xml │ ├── layout │ │ ├── alarm.xml │ │ ├── map.xml │ │ ├── main.xml │ │ └── widget.xml │ ├── layout-v11 │ │ └── widget.xml │ ├── xml-v11 │ │ └── widget_provider.xml │ └── menu │ │ ├── option.xml │ │ └── details_option.xml │ ├── libs │ └── android-rss.jar │ ├── src │ └── apt │ │ └── tutorial │ │ ├── AlarmActivity.java │ │ └── ListWidgetService.java │ └── default.properties ├── 28-PermsPhone └── LunchList │ ├── libs │ ├── android-rss.jar │ └── android-support-v4.jar │ ├── res │ ├── drawable │ │ ├── ff.png │ │ ├── run.png │ │ ├── icon.png │ │ ├── list.png │ │ ├── marker.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ ├── ic_menu_call.png │ │ ├── ic_menu_help.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── stat_notify_chat.png │ │ ├── widget_frame.9.png │ │ ├── hc_widget_preview.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── layout │ │ ├── help.xml │ │ ├── main.xml │ │ ├── detail_activity.xml │ │ ├── alarm.xml │ │ ├── map.xml │ │ └── widget.xml │ ├── xml │ │ └── widget_provider.xml │ ├── xml-v11 │ │ └── widget_provider.xml │ ├── layout-v11 │ │ └── widget.xml │ ├── menu │ │ ├── option.xml │ │ └── details_option.xml │ └── layout-large-land │ │ └── main.xml │ ├── src │ └── apt │ │ └── tutorial │ │ ├── ListWidgetService.java │ │ └── HelpPage.java │ └── default.properties ├── 20-Notification └── LunchList │ ├── libs │ └── android-rss.jar │ ├── res │ ├── drawable │ │ ├── list.png │ │ ├── run.png │ │ ├── marker.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── stat_notify_chat.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── layout │ │ ├── alarm.xml │ │ ├── map.xml │ │ └── main.xml │ └── menu │ │ ├── option.xml │ │ └── details_option.xml │ ├── src │ └── apt │ │ └── tutorial │ │ └── AlarmActivity.java │ └── default.properties ├── 05-FancyList └── LunchList │ ├── res │ ├── drawable │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ └── ball_yellow.png │ └── values │ │ └── strings.xml │ ├── default.properties │ ├── src │ └── apt │ │ └── tutorial │ │ └── Restaurant.java │ └── AndroidManifest.xml ├── 07-MenusMessages └── LunchList │ ├── res │ ├── drawable │ │ ├── list.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── restaurant.png │ │ └── ball_yellow.png │ ├── values │ │ └── strings.xml │ └── menu │ │ └── option.xml │ ├── default.properties │ └── AndroidManifest.xml ├── 24-MultScreenSizes └── LunchList │ ├── libs │ ├── android-rss.jar │ └── android-support-v4.jar │ ├── res │ ├── drawable │ │ ├── ff.png │ │ ├── run.png │ │ ├── icon.png │ │ ├── list.png │ │ ├── marker.png │ │ ├── toast.png │ │ ├── ball_red.png │ │ ├── ball_green.png │ │ ├── ball_yellow.png │ │ ├── ic_menu_add.png │ │ ├── restaurant.png │ │ ├── ic_menu_compass.png │ │ ├── ic_menu_mapmode.png │ │ ├── stat_notify_chat.png │ │ ├── widget_frame.9.png │ │ ├── hc_widget_preview.png │ │ ├── ic_menu_friendslist.png │ │ └── ic_menu_preferences.png │ ├── values │ │ ├── strings.xml │ │ └── arrays.xml │ ├── layout │ │ ├── main.xml │ │ ├── detail_activity.xml │ │ ├── alarm.xml │ │ ├── map.xml │ │ └── widget.xml │ ├── xml │ │ └── widget_provider.xml │ ├── xml-v11 │ │ └── widget_provider.xml │ ├── layout-v11 │ │ └── widget.xml │ ├── menu │ │ ├── option.xml │ │ └── details_option.xml │ └── layout-large-land │ │ └── main.xml │ ├── src │ └── apt │ │ └── tutorial │ │ ├── AlarmActivity.java │ │ └── ListWidgetService.java │ └── default.properties ├── 02-SimpleForm └── LunchList │ ├── res │ └── values │ │ └── strings.xml │ ├── default.properties │ ├── src │ └── apt │ │ └── tutorial │ │ └── Restaurant.java │ └── AndroidManifest.xml ├── 04-ListView └── LunchList │ ├── res │ └── values │ │ └── strings.xml │ ├── default.properties │ ├── src │ └── apt │ │ └── tutorial │ │ └── Restaurant.java │ ├── AndroidManifest.xml │ └── build.properties └── 03-FancierForm └── LunchList ├── res └── values │ └── strings.xml ├── default.properties ├── src └── apt │ └── tutorial │ └── Restaurant.java └── AndroidManifest.xml /18-Map/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /06-Tabs/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/06-Tabs/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ff.png -------------------------------------------------------------------------------- /27-Media/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ff.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /08-Threads/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/08-Threads/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /08-Threads/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/08-Threads/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /11-Database/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/11-Database/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /15-Internet/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /16-Service/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /17-Location/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ff.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ff.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/icon.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/icon.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /06-Tabs/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/06-Tabs/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /08-Threads/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/08-Threads/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/09-Lifecycle/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/09-Lifecycle/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /10-Resources/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/10-Resources/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /10-Resources/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/10-Resources/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /11-Database/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/11-Database/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /11-Database/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/11-Database/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /12-Activities/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/12-Activities/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/icon.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ff.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/icon.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ff.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /06-Tabs/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/06-Tabs/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /06-Tabs/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/06-Tabs/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /06-Tabs/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/06-Tabs/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /08-Threads/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/08-Threads/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/09-Lifecycle/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /10-Resources/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/10-Resources/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /11-Database/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/11-Database/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /12-Activities/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/12-Activities/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /12-Activities/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/12-Activities/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /20-Notification/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/icon.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/libs/android-support-v4.jar -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /27-Media/LunchList/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/libs/android-support-v4.jar -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/icon.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /05-FancyList/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/05-FancyList/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/07-MenusMessages/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/07-MenusMessages/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /08-Threads/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/08-Threads/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /08-Threads/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/08-Threads/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /08-Threads/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/08-Threads/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/09-Lifecycle/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /10-Resources/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/10-Resources/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /11-Database/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/11-Database/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /11-Database/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/11-Database/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /12-Activities/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/12-Activities/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/libs/android-rss.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/libs/android-rss.jar -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ff.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/run.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ic_menu_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ic_menu_help.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ic_menu_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ic_menu_help.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /05-FancyList/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/05-FancyList/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /05-FancyList/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/05-FancyList/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /06-Tabs/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/07-MenusMessages/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/09-Lifecycle/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/09-Lifecycle/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/09-Lifecycle/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /10-Resources/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/10-Resources/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /10-Resources/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/10-Resources/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /10-Resources/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/10-Resources/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /11-Database/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/11-Database/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /12-Activities/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/12-Activities/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /12-Activities/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/12-Activities/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /12-Activities/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/12-Activities/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /12-Activities/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/12-Activities/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/libs/android-support-v4.jar -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/icon.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/list.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/marker.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/toast.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/widget_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/widget_frame.9.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/stat_notify_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/stat_notify_chat.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/widget_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/widget_frame.9.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/libs/android-support-v4.jar -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /02-SimpleForm/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /04-ListView/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /05-FancyList/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/07-MenusMessages/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/07-MenusMessages/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /08-Threads/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /10-Resources/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /11-Database/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /12-Activities/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /15-Internet/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /16-Service/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /18-Map/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/18-Map/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/widget_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/widget_frame.9.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/widget_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/widget_frame.9.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ball_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ball_red.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/hc_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/hc_widget_preview.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/stat_notify_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/stat_notify_chat.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/hc_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/hc_widget_preview.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ic_menu_call.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ic_menu_call.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ic_menu_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ic_menu_help.png -------------------------------------------------------------------------------- /03-FancierForm/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/07-MenusMessages/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/13-Prefs/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /16-Service/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/16-Service/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/19-Alarm/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/stat_notify_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/stat_notify_chat.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/widget_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/widget_frame.9.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/hc_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/hc_widget_preview.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/stat_notify_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/stat_notify_chat.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/libs/android-support-v4.jar -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ball_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ball_green.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ball_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ball_yellow.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ic_menu_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ic_menu_add.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/restaurant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/restaurant.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/25-WebKit/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /27-Media/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/27-Media/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/stat_notify_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/stat_notify_chat.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/widget_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/widget_frame.9.png -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/14-Rotation/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /15-Internet/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/15-Internet/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /17-Location/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/17-Location/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/stat_notify_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/stat_notify_chat.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/21-AppWidget/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/hc_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/hc_widget_preview.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/stat_notify_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/stat_notify_chat.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/23-Honeycomb/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/hc_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/hc_widget_preview.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /20-Notification/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/20-Notification/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/22-HCAppWidget/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ic_menu_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ic_menu_compass.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ic_menu_mapmode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ic_menu_mapmode.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/stat_notify_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/stat_notify_chat.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/widget_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/widget_frame.9.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/28-PermsPhone/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/hc_widget_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/hc_widget_preview.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ic_menu_friendslist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ic_menu_friendslist.png -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/drawable/ic_menu_preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/commonsguy/cw-lunchlist/HEAD/24-MultScreenSizes/LunchList/res/drawable/ic_menu_preferences.png -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | No restaurants! 5 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | No restaurants! 5 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | No restaurants! 5 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | No restaurants! 5 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | No restaurants! 5 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | No restaurants! 5 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | LunchList 4 | No restaurants! 5 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/layout/help.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/layout/help.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/layout/help.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /12-Activities/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /16-Service/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /15-Internet/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/layout/detail_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/layout/detail_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/layout/detail_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/xml/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/xml/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/layout/detail_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/xml/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/xml/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/xml/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/layout/detail_activity.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/xml/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/xml/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /20-Notification/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/layout/alarm.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/layout-v11/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/src/apt/tutorial/AlarmActivity.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class AlarmActivity extends Activity { 7 | @Override 8 | public void onCreate(Bundle savedInstanceState) { 9 | super.onCreate(savedInstanceState); 10 | setContentView(R.layout.alarm); 11 | } 12 | } -------------------------------------------------------------------------------- /25-WebKit/LunchList/src/apt/tutorial/AlarmActivity.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class AlarmActivity extends Activity { 7 | @Override 8 | public void onCreate(Bundle savedInstanceState) { 9 | super.onCreate(savedInstanceState); 10 | setContentView(R.layout.alarm); 11 | } 12 | } -------------------------------------------------------------------------------- /18-Map/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/src/apt/tutorial/AlarmActivity.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class AlarmActivity extends Activity { 7 | @Override 8 | public void onCreate(Bundle savedInstanceState) { 9 | super.onCreate(savedInstanceState); 10 | setContentView(R.layout.alarm); 11 | } 12 | } -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/src/apt/tutorial/AlarmActivity.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class AlarmActivity extends Activity { 7 | @Override 8 | public void onCreate(Bundle savedInstanceState) { 9 | super.onCreate(savedInstanceState); 10 | setContentView(R.layout.alarm); 11 | } 12 | } -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/src/apt/tutorial/AlarmActivity.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class AlarmActivity extends Activity { 7 | @Override 8 | public void onCreate(Bundle savedInstanceState) { 9 | super.onCreate(savedInstanceState); 10 | setContentView(R.layout.alarm); 11 | } 12 | } -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/xml-v11/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /20-Notification/LunchList/src/apt/tutorial/AlarmActivity.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class AlarmActivity extends Activity { 7 | @Override 8 | public void onCreate(Bundle savedInstanceState) { 9 | super.onCreate(savedInstanceState); 10 | setContentView(R.layout.alarm); 11 | } 12 | } -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/xml-v11/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/src/apt/tutorial/AlarmActivity.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | 6 | public class AlarmActivity extends Activity { 7 | @Override 8 | public void onCreate(Bundle savedInstanceState) { 9 | super.onCreate(savedInstanceState); 10 | setContentView(R.layout.alarm); 11 | } 12 | } -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/xml-v11/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/xml-v11/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /20-Notification/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/xml-v11/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/layout/map.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/xml-v11/widget_provider.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/layout-v11/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /08-Threads/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /10-Resources/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /11-Database/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/layout-v11/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/layout-v11/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/layout-v11/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /16-Service/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /18-Map/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/layout-v11/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /15-Internet/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /17-Location/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /20-Notification/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /17-Location/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/xml/preferences.xml: -------------------------------------------------------------------------------- 1 | 3 | 10 | -------------------------------------------------------------------------------- /18-Map/LunchList/res/xml/preferences.xml: -------------------------------------------------------------------------------- 1 | 3 | 10 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/src/apt/tutorial/DetailForm.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.content.Intent; 4 | import android.os.Bundle; 5 | import android.support.v4.app.FragmentActivity; 6 | 7 | public class DetailForm extends FragmentActivity { 8 | @Override 9 | public void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.detail_activity); 12 | } 13 | } -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/xml/preferences.xml: -------------------------------------------------------------------------------- 1 | 3 | 10 | -------------------------------------------------------------------------------- /15-Internet/LunchList/res/xml/preferences.xml: -------------------------------------------------------------------------------- 1 | 3 | 10 | -------------------------------------------------------------------------------- /16-Service/LunchList/res/xml/preferences.xml: -------------------------------------------------------------------------------- 1 | 3 | 10 | -------------------------------------------------------------------------------- /17-Location/LunchList/res/xml/preferences.xml: -------------------------------------------------------------------------------- 1 | 3 | 10 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/src/apt/tutorial/ListWidgetService.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.content.Intent; 4 | import android.widget.RemoteViewsService; 5 | 6 | public class ListWidgetService extends RemoteViewsService { 7 | @Override 8 | public RemoteViewsFactory onGetViewFactory(Intent intent) { 9 | return(new ListViewsFactory(this.getApplicationContext(), 10 | intent)); 11 | } 12 | } -------------------------------------------------------------------------------- /27-Media/LunchList/src/apt/tutorial/ListWidgetService.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.content.Intent; 4 | import android.widget.RemoteViewsService; 5 | 6 | public class ListWidgetService extends RemoteViewsService { 7 | @Override 8 | public RemoteViewsFactory onGetViewFactory(Intent intent) { 9 | return(new ListViewsFactory(this.getApplicationContext(), 10 | intent)); 11 | } 12 | } -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/src/apt/tutorial/ListWidgetService.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.content.Intent; 4 | import android.widget.RemoteViewsService; 5 | 6 | public class ListWidgetService extends RemoteViewsService { 7 | @Override 8 | public RemoteViewsFactory onGetViewFactory(Intent intent) { 9 | return(new ListViewsFactory(this.getApplicationContext(), 10 | intent)); 11 | } 12 | } -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/src/apt/tutorial/ListWidgetService.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.content.Intent; 4 | import android.widget.RemoteViewsService; 5 | 6 | public class ListWidgetService extends RemoteViewsService { 7 | @Override 8 | public RemoteViewsFactory onGetViewFactory(Intent intent) { 9 | return(new ListViewsFactory(this.getApplicationContext(), 10 | intent)); 11 | } 12 | } -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/src/apt/tutorial/ListWidgetService.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.content.Intent; 4 | import android.widget.RemoteViewsService; 5 | 6 | public class ListWidgetService extends RemoteViewsService { 7 | @Override 8 | public RemoteViewsFactory onGetViewFactory(Intent intent) { 9 | return(new ListViewsFactory(this.getApplicationContext(), 10 | intent)); 11 | } 12 | } -------------------------------------------------------------------------------- /18-Map/LunchList/src/apt/tutorial/EditPreferences.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.preference.PreferenceActivity; 6 | 7 | public class EditPreferences extends PreferenceActivity { 8 | @Override 9 | public void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | 12 | addPreferencesFromResource(R.xml.preferences); 13 | } 14 | } -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 12 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/src/apt/tutorial/ListWidgetService.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.content.Intent; 4 | import android.widget.RemoteViewsService; 5 | 6 | public class ListWidgetService extends RemoteViewsService { 7 | @Override 8 | public RemoteViewsFactory onGetViewFactory(Intent intent) { 9 | return(new ListViewsFactory(this.getApplicationContext(), 10 | intent)); 11 | } 12 | } -------------------------------------------------------------------------------- /06-Tabs/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /13-Prefs/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /13-Prefs/LunchList/src/apt/tutorial/EditPreferences.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.preference.PreferenceActivity; 6 | 7 | public class EditPreferences extends PreferenceActivity { 8 | @Override 9 | public void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | 12 | addPreferencesFromResource(R.xml.preferences); 13 | } 14 | } -------------------------------------------------------------------------------- /14-Rotation/LunchList/src/apt/tutorial/EditPreferences.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.preference.PreferenceActivity; 6 | 7 | public class EditPreferences extends PreferenceActivity { 8 | @Override 9 | public void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | 12 | addPreferencesFromResource(R.xml.preferences); 13 | } 14 | } -------------------------------------------------------------------------------- /15-Internet/LunchList/src/apt/tutorial/EditPreferences.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.preference.PreferenceActivity; 6 | 7 | public class EditPreferences extends PreferenceActivity { 8 | @Override 9 | public void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | 12 | addPreferencesFromResource(R.xml.preferences); 13 | } 14 | } -------------------------------------------------------------------------------- /16-Service/LunchList/src/apt/tutorial/EditPreferences.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.preference.PreferenceActivity; 6 | 7 | public class EditPreferences extends PreferenceActivity { 8 | @Override 9 | public void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | 12 | addPreferencesFromResource(R.xml.preferences); 13 | } 14 | } -------------------------------------------------------------------------------- /17-Location/LunchList/src/apt/tutorial/EditPreferences.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.preference.PreferenceActivity; 6 | 7 | public class EditPreferences extends PreferenceActivity { 8 | @Override 9 | public void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | 12 | addPreferencesFromResource(R.xml.preferences); 13 | } 14 | } -------------------------------------------------------------------------------- /18-Map/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /02-SimpleForm/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /04-ListView/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /05-FancyList/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /08-Threads/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /10-Resources/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /11-Database/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /12-Activities/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /14-Rotation/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /15-Internet/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /16-Service/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /17-Location/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:11 12 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 12 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:11 12 | -------------------------------------------------------------------------------- /27-Media/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:11 12 | -------------------------------------------------------------------------------- /03-FancierForm/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /20-Notification/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:8 12 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:11 12 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:11 12 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/default.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=Google Inc.:Google APIs:11 12 | -------------------------------------------------------------------------------- /02-SimpleForm/LunchList/src/apt/tutorial/Restaurant.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | public class Restaurant { 4 | private String name=""; 5 | private String address=""; 6 | 7 | public String getName() { 8 | return(name); 9 | } 10 | 11 | public void setName(String name) { 12 | this.name=name; 13 | } 14 | 15 | public String getAddress() { 16 | return(address); 17 | } 18 | 19 | public void setAddress(String address) { 20 | this.address=address; 21 | } 22 | } -------------------------------------------------------------------------------- /27-Media/LunchList/src/apt/tutorial/HelpPage.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.webkit.WebView; 6 | 7 | public class HelpPage extends Activity { 8 | @Override 9 | public void onCreate(Bundle icicle) { 10 | super.onCreate(icicle); 11 | setContentView(R.layout.help); 12 | 13 | WebView browser=(WebView)findViewById(R.id.webkit); 14 | 15 | browser.loadUrl("file:///android_asset/help.html"); 16 | } 17 | } -------------------------------------------------------------------------------- /19-Alarm/LunchList/src/apt/tutorial/OnAlarmReceiver.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.content.BroadcastReceiver; 4 | import android.content.Context; 5 | import android.content.Intent; 6 | 7 | public class OnAlarmReceiver extends BroadcastReceiver { 8 | @Override 9 | public void onReceive(Context ctxt, Intent intent) { 10 | Intent i=new Intent(ctxt, AlarmActivity.class); 11 | 12 | i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); 13 | 14 | ctxt.startActivity(i); 15 | } 16 | } -------------------------------------------------------------------------------- /25-WebKit/LunchList/src/apt/tutorial/HelpPage.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.webkit.WebView; 6 | 7 | public class HelpPage extends Activity { 8 | @Override 9 | public void onCreate(Bundle icicle) { 10 | super.onCreate(icicle); 11 | setContentView(R.layout.help); 12 | 13 | WebView browser=(WebView)findViewById(R.id.webkit); 14 | 15 | browser.loadUrl("file:///android_asset/help.html"); 16 | } 17 | } -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/src/apt/tutorial/HelpPage.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.app.Activity; 4 | import android.os.Bundle; 5 | import android.webkit.WebView; 6 | 7 | public class HelpPage extends Activity { 8 | @Override 9 | public void onCreate(Bundle icicle) { 10 | super.onCreate(icicle); 11 | setContentView(R.layout.help); 12 | 13 | WebView browser=(WebView)findViewById(R.id.webkit); 14 | 15 | browser.loadUrl("file:///android_asset/help.html"); 16 | } 17 | } -------------------------------------------------------------------------------- /21-AppWidget/LunchList/src/apt/tutorial/AppWidget.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | import android.appwidget.AppWidgetManager; 4 | import android.appwidget.AppWidgetProvider; 5 | import android.content.Context; 6 | import android.content.Intent; 7 | 8 | public class AppWidget extends AppWidgetProvider { 9 | @Override 10 | public void onUpdate(Context ctxt, 11 | AppWidgetManager mgr, 12 | int[] appWidgetIds) { 13 | ctxt.startService(new Intent(ctxt, WidgetService.class)); 14 | } 15 | } -------------------------------------------------------------------------------- /18-Map/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | -------------------------------------------------------------------------------- /20-Notification/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 12 | 16 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 12 | 16 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/menu/option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | 12 | 16 | -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /18-Map/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /15-Internet/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /16-Service/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /17-Location/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /20-Notification/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | By Name, Ascending 5 | By Name, Descending 6 | By Type 7 | By Address, Ascending 8 | By Address, Descending 9 | 10 | 11 | name ASC 12 | name DESC 13 | type, name ASC 14 | address ASC 15 | address DESC 16 | 17 | -------------------------------------------------------------------------------- /13-Prefs/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /18-Map/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /12-Activities/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /14-Rotation/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /15-Internet/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /16-Service/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /17-Location/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /20-Notification/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 10 | 15 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | 19 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | 19 | -------------------------------------------------------------------------------- /03-FancierForm/LunchList/src/apt/tutorial/Restaurant.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | public class Restaurant { 4 | private String name=""; 5 | private String address=""; 6 | private String type=""; 7 | 8 | public String getName() { 9 | return(name); 10 | } 11 | 12 | public void setName(String name) { 13 | this.name=name; 14 | } 15 | 16 | public String getAddress() { 17 | return(address); 18 | } 19 | 20 | public void setAddress(String address) { 21 | this.address=address; 22 | } 23 | 24 | public String getType() { 25 | return(type); 26 | } 27 | 28 | public void setType(String type) { 29 | this.type=type; 30 | } 31 | } -------------------------------------------------------------------------------- /27-Media/LunchList/res/layout-large-land/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 14 | 20 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/layout-large-land/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 14 | 20 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/layout-large-land/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 14 | 20 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/layout-large-land/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 14 | 20 | -------------------------------------------------------------------------------- /06-Tabs/LunchList/src/apt/tutorial/Restaurant.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | public class Restaurant { 4 | private String name=""; 5 | private String address=""; 6 | private String type=""; 7 | 8 | public String getName() { 9 | return(name); 10 | } 11 | 12 | public void setName(String name) { 13 | this.name=name; 14 | } 15 | 16 | public String getAddress() { 17 | return(address); 18 | } 19 | 20 | public void setAddress(String address) { 21 | this.address=address; 22 | } 23 | 24 | public String getType() { 25 | return(type); 26 | } 27 | 28 | public void setType(String type) { 29 | this.type=type; 30 | } 31 | 32 | public String toString() { 33 | return(getName()); 34 | } 35 | } -------------------------------------------------------------------------------- /04-ListView/LunchList/src/apt/tutorial/Restaurant.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | public class Restaurant { 4 | private String name=""; 5 | private String address=""; 6 | private String type=""; 7 | 8 | public String getName() { 9 | return(name); 10 | } 11 | 12 | public void setName(String name) { 13 | this.name=name; 14 | } 15 | 16 | public String getAddress() { 17 | return(address); 18 | } 19 | 20 | public void setAddress(String address) { 21 | this.address=address; 22 | } 23 | 24 | public String getType() { 25 | return(type); 26 | } 27 | 28 | public void setType(String type) { 29 | this.type=type; 30 | } 31 | 32 | public String toString() { 33 | return(getName()); 34 | } 35 | } -------------------------------------------------------------------------------- /05-FancyList/LunchList/src/apt/tutorial/Restaurant.java: -------------------------------------------------------------------------------- 1 | package apt.tutorial; 2 | 3 | public class Restaurant { 4 | private String name=""; 5 | private String address=""; 6 | private String type=""; 7 | 8 | public String getName() { 9 | return(name); 10 | } 11 | 12 | public void setName(String name) { 13 | this.name=name; 14 | } 15 | 16 | public String getAddress() { 17 | return(address); 18 | } 19 | 20 | public void setAddress(String address) { 21 | this.address=address; 22 | } 23 | 24 | public String getType() { 25 | return(type); 26 | } 27 | 28 | public void setType(String type) { 29 | this.type=type; 30 | } 31 | 32 | public String toString() { 33 | return(getName()); 34 | } 35 | } -------------------------------------------------------------------------------- /06-Tabs/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/menu/details_option.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 15 | 20 | 24 | -------------------------------------------------------------------------------- /02-SimpleForm/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /03-FancierForm/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /04-ListView/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /05-FancyList/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /08-Threads/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /09-Lifecycle/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /10-Resources/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /11-Database/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /07-MenusMessages/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /19-Alarm/LunchList/res/xml/preferences.xml: -------------------------------------------------------------------------------- 1 | 3 | 10 | 14 | 20 | -------------------------------------------------------------------------------- /12-Activities/LunchList/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /25-WebKit/LunchList/res/layout/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 16 | 23 | -------------------------------------------------------------------------------- /27-Media/LunchList/res/layout/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 16 | 23 | -------------------------------------------------------------------------------- /21-AppWidget/LunchList/res/layout/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 16 | 23 | -------------------------------------------------------------------------------- /22-HCAppWidget/LunchList/res/layout/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 16 | 23 | -------------------------------------------------------------------------------- /23-Honeycomb/LunchList/res/layout/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 16 | 23 | -------------------------------------------------------------------------------- /28-PermsPhone/LunchList/res/layout/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 16 | 23 | -------------------------------------------------------------------------------- /18-Map/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | -------------------------------------------------------------------------------- /24-MultScreenSizes/LunchList/res/layout/widget.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 16 | 23 | -------------------------------------------------------------------------------- /04-ListView/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | -------------------------------------------------------------------------------- /06-Tabs/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | -------------------------------------------------------------------------------- /08-Threads/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | -------------------------------------------------------------------------------- /11-Database/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | -------------------------------------------------------------------------------- /13-Prefs/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | -------------------------------------------------------------------------------- /14-Rotation/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | -------------------------------------------------------------------------------- /15-Internet/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | -------------------------------------------------------------------------------- /16-Service/LunchList/build.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | # The name of your application package as defined in the manifest. 19 | # Used by the 'uninstall' rule. 20 | application.package=apt.tutorial 21 | --------------------------------------------------------------------------------