├── 1024x500.png ├── 512x512.png ├── AndroidManifest.xml ├── Catch_Android_Conference_Guide.pdf ├── Example CSV files ├── EventSessions.csv ├── Events.csv └── Speakers.csv ├── License ├── README ├── assets ├── about │ └── index.html ├── javascript │ ├── .svn │ │ └── entries │ ├── jquery.json.js │ ├── jquery.min.js │ └── json2.js └── speaker │ └── index.html ├── bin ├── TEDApp.apk ├── classes.dex ├── classes │ ├── .DS_Store │ └── com │ │ ├── catchnotes │ │ └── tedapp │ │ │ ├── AboutActivity$1.class │ │ │ ├── AboutActivity.class │ │ │ ├── ArchiveActivity$1.class │ │ │ ├── ArchiveActivity.class │ │ │ ├── EventMapActivity$HelloItemizedOverlay$1.class │ │ │ ├── EventMapActivity$HelloItemizedOverlay$2.class │ │ │ ├── EventMapActivity$HelloItemizedOverlay.class │ │ │ ├── EventMapActivity.class │ │ │ ├── Main$1.class │ │ │ ├── Main$2.class │ │ │ ├── Main.class │ │ │ ├── R$array.class │ │ │ ├── R$attr.class │ │ │ ├── R$color.class │ │ │ ├── R$dimen.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ ├── R$xml.class │ │ │ ├── R.class │ │ │ ├── SessionResultActivity$LoadSearchResultTask.class │ │ │ ├── SessionResultActivity.class │ │ │ ├── SpeakerActivity$1.class │ │ │ ├── SpeakerActivity.class │ │ │ ├── SpeakerResultActivity$LoadSearchResultTask.class │ │ │ ├── SpeakerResultActivity.class │ │ │ ├── SpeakerResultTabActivity.class │ │ │ ├── SubEventSessionResultActivity$LoadSearchResultTask.class │ │ │ ├── SubEventSessionResultActivity.class │ │ │ ├── SubEventSpeakerResultActivity$LoadSearchResultTask.class │ │ │ ├── SubEventSpeakerResultActivity.class │ │ │ └── SubEventSpeakerResultTabActivity.class │ │ └── tedx │ │ ├── activities │ │ ├── GroupLazyActivity$1.class │ │ ├── GroupLazyActivity$LoadImageTask.class │ │ ├── GroupLazyActivity$LoadQueue.class │ │ ├── GroupLazyActivity$LoadTask.class │ │ ├── GroupLazyActivity.class │ │ ├── LazyActivity$1.class │ │ ├── LazyActivity$LoadImageTask.class │ │ ├── LazyActivity$LoadQueue.class │ │ ├── LazyActivity$LoadTask.class │ │ └── LazyActivity.class │ │ ├── adapters │ │ ├── GroupLazyAdapter.class │ │ └── LazyAdapter.class │ │ ├── helpers │ │ └── Common.class │ │ ├── logics │ │ ├── ArchiveLogic.class │ │ ├── AttendeeLogic.class │ │ └── SearchResultLogic.class │ │ ├── objects │ │ ├── CatchIntent.class │ │ ├── SearchResult.class │ │ └── SessionResult.class │ │ └── utility │ │ ├── FusionTableReader.class │ │ ├── HTTPQueue$1.class │ │ ├── HTTPQueue.class │ │ ├── HTTPThread.class │ │ ├── IntentIntegrator$1.class │ │ ├── IntentIntegrator$2.class │ │ ├── IntentIntegrator.class │ │ ├── RemoteImageView$1.class │ │ └── RemoteImageView.class ├── res │ ├── drawable-hdpi │ │ ├── about.png │ │ ├── about_focused.png │ │ ├── about_pressed.png │ │ ├── addcontact.png │ │ ├── addcontact_blackwhite.png │ │ ├── addcontact_focused.png │ │ ├── addcontact_pressed.png │ │ ├── barcode.png │ │ ├── barcode_focused.png │ │ ├── barcode_pressed.png │ │ ├── contact.png │ │ ├── contact_focused.png │ │ ├── contact_pressed.png │ │ ├── events.png │ │ ├── events_focused.png │ │ ├── events_pressed.png │ │ ├── facebook.png │ │ ├── facebook_focused.png │ │ ├── facebook_pressed.png │ │ ├── ic_launcher.png │ │ ├── map.png │ │ ├── map_focused.png │ │ ├── map_pressed.png │ │ ├── missingphoto.png │ │ ├── note.png │ │ ├── note_focused.png │ │ ├── note_pressed.png │ │ ├── schedule.png │ │ ├── schedule_focused.png │ │ ├── schedule_pressed.png │ │ ├── session.png │ │ ├── session_off.png │ │ ├── speaker.png │ │ ├── speaker_focused.png │ │ ├── speaker_pressed.png │ │ ├── speakers.png │ │ ├── speakers_off.png │ │ ├── ted2011.png │ │ ├── ted2012.png │ │ ├── tedglobal2011.png │ │ ├── twitter.png │ │ ├── twitter_focused.png │ │ ├── twitter_pressed.png │ │ ├── university.png │ │ ├── university_focused.png │ │ └── university_pressed.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ ├── about.png │ │ ├── about_focused.png │ │ ├── about_pressed.png │ │ ├── addcontact.png │ │ ├── addcontact_blackwhite.png │ │ ├── addcontact_focused.png │ │ ├── addcontact_pressed.png │ │ ├── background.png │ │ ├── barcode.png │ │ ├── barcode_focused.png │ │ ├── barcode_pressed.png │ │ ├── contact.png │ │ ├── contact_focused.png │ │ ├── contact_pressed.png │ │ ├── events.png │ │ ├── events_focused.png │ │ ├── events_pressed.png │ │ ├── facebook.png │ │ ├── facebook_focused.png │ │ ├── facebook_menu.png │ │ ├── facebook_pressed.png │ │ ├── ic_launcher.png │ │ ├── icon.png │ │ ├── mail_menu.png │ │ ├── map.png │ │ ├── map_focused.png │ │ ├── map_pressed.png │ │ ├── note.png │ │ ├── note_focused.png │ │ ├── note_pressed.png │ │ ├── pin.png │ │ ├── schedule.png │ │ ├── schedule_focused.png │ │ ├── schedule_pressed.png │ │ ├── speaker.png │ │ ├── speaker_focused.png │ │ ├── speaker_pressed.png │ │ ├── twitter.png │ │ ├── twitter_focused.png │ │ ├── twitter_menu.png │ │ ├── twitter_pressed.png │ │ └── university.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ └── drawable │ │ └── market_icon.png └── resources.ap_ ├── gen └── com │ └── catchnotes │ └── tedapp │ └── R.java ├── project.properties ├── promo.png ├── res ├── .DS_Store ├── drawable-hdpi │ ├── about.png │ ├── about_focused.png │ ├── about_pressed.png │ ├── addcontact.png │ ├── addcontact_blackwhite.png │ ├── addcontact_focused.png │ ├── addcontact_pressed.png │ ├── barcode.png │ ├── barcode_focused.png │ ├── barcode_pressed.png │ ├── bottom.jpg │ ├── contact.png │ ├── contact_focused.png │ ├── contact_pressed.png │ ├── events.png │ ├── events_focused.png │ ├── events_pressed.png │ ├── facebook.png │ ├── facebook_focused.png │ ├── facebook_pressed.png │ ├── ic_launcher.png │ ├── map.png │ ├── map_focused.png │ ├── map_pressed.png │ ├── missingphoto.png │ ├── note.png │ ├── note_focused.png │ ├── note_pressed.png │ ├── schedule.png │ ├── schedule_focused.png │ ├── schedule_pressed.png │ ├── session.png │ ├── session_off.png │ ├── speaker.png │ ├── speaker_focused.png │ ├── speaker_pressed.png │ ├── speakers.png │ ├── speakers_off.png │ ├── ted2011.png │ ├── ted2012.png │ ├── tedglobal2011.png │ ├── twitter.png │ ├── twitter_focused.png │ ├── twitter_pressed.png │ ├── university.png │ ├── university_focused.png │ └── university_pressed.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ ├── about.png │ ├── about_focused.png │ ├── about_pressed.png │ ├── addcontact.png │ ├── addcontact_blackwhite.png │ ├── addcontact_focused.png │ ├── addcontact_pressed.png │ ├── background.png │ ├── barcode.png │ ├── barcode_focused.png │ ├── barcode_pressed.png │ ├── contact.png │ ├── contact_focused.png │ ├── contact_pressed.png │ ├── events.png │ ├── events_focused.png │ ├── events_pressed.png │ ├── facebook.png │ ├── facebook_focused.png │ ├── facebook_menu.png │ ├── facebook_pressed.png │ ├── ic_launcher.png │ ├── icon.png │ ├── mail_menu.png │ ├── map.png │ ├── map_focused.png │ ├── map_pressed.png │ ├── note.png │ ├── note_focused.png │ ├── note_pressed.png │ ├── pin.png │ ├── schedule.png │ ├── schedule_focused.png │ ├── schedule_pressed.png │ ├── speaker.png │ ├── speaker_focused.png │ ├── speaker_pressed.png │ ├── twitter.png │ ├── twitter_focused.png │ ├── twitter_menu.png │ ├── twitter_pressed.png │ └── university.png ├── drawable-xhdpi │ ├── .DS_Store │ └── ic_launcher.png ├── drawable │ ├── about_button.xml │ ├── addcontact_button.xml │ ├── contact_button.xml │ ├── events_button.xml │ ├── facebook_button.xml │ ├── ic_tab_sessions.xml │ ├── ic_tab_speakers.xml │ ├── list_divider.xml │ ├── map_button.xml │ ├── market_icon.png │ ├── note_button.xml │ ├── scan_button.xml │ ├── schedule_button.xml │ ├── speaker_button.xml │ ├── twitter_button.xml │ └── university_button.xml ├── layout-land │ └── main.xml ├── layout-small │ └── searchresultrow.xml ├── layout │ ├── account_entry.xml │ ├── archive.xml │ ├── attendee.xml │ ├── main.xml │ ├── map.xml │ ├── searchresultrow.xml │ ├── searchresults.xml │ ├── sessiongroup.xml │ ├── sessions.xml │ ├── speakerview.xml │ └── webview.xml ├── values │ ├── SnapticNotesIntent.xml │ ├── arrays.xml │ ├── colors.xml │ ├── dimens.xml │ ├── ids.xml │ ├── strings.xml │ └── styles.xml └── xml │ └── conferences.xml ├── sn1.png ├── sn2.png ├── sn3.png ├── sn4.png ├── sn5.png └── src ├── .DS_Store └── com ├── catchnotes └── tedapp │ ├── AboutActivity.java │ ├── ArchiveActivity.java │ ├── EventMapActivity.java │ ├── Main.java │ ├── SessionResultActivity.java │ ├── SpeakerActivity.java │ ├── SpeakerResultActivity.java │ ├── SpeakerResultTabActivity.java │ ├── SubEventSessionResultActivity.java │ ├── SubEventSpeakerResultActivity.java │ └── SubEventSpeakerResultTabActivity.java └── tedx ├── activities ├── GroupLazyActivity.java └── LazyActivity.java ├── adapters ├── GroupLazyAdapter.java └── LazyAdapter.java ├── helpers └── Common.java ├── logics ├── ArchiveLogic.java ├── AttendeeLogic.java └── SearchResultLogic.java ├── objects ├── CatchIntent.java ├── SearchResult.java └── SessionResult.java └── utility ├── FusionTableReader.java ├── HTTPQueue.java ├── HTTPThread.java ├── IntentIntegrator.java └── RemoteImageView.java /1024x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/1024x500.png -------------------------------------------------------------------------------- /512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/512x512.png -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 25 | 31 | 35 | 38 | 39 | 40 | 41 | 42 | 43 | 45 | 46 | 47 | 49 | 50 | 51 | 53 | 54 | 55 | 57 | 58 | 60 | 61 | 63 | 64 | 65 | 67 | 68 | 69 | 71 | 72 | 73 | 75 | 76 | 77 | 79 | 80 | 81 | 84 | 85 | 86 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /Catch_Android_Conference_Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/Catch_Android_Conference_Guide.pdf -------------------------------------------------------------------------------- /Example CSV files/EventSessions.csv: -------------------------------------------------------------------------------- 1 | SessionId,EventId,SessionTime,SessionName,CreateDate 2 | 1,1,,Corporate ,7/7/11 3 | 4,1,,Technology,7/7/11 4 | 2,1,,Internet ,7/7/11 5 | 5,1,,Print Media,7/7/11 6 | 3,1,,Pay-Television,7/7/11 7 | 8,2,,7:30-8:15 PM July 11 Dinner speaker – Developments/opportunities/challenges ,7/8/11 8 | 10,2,,10:30-11:15 AM July 12,7/8/11 9 | 12,2,,12:00-12:30 July 12 Briefing - Twitter ,7/8/11 10 | 6,2,,2:00-2:30 PM July 11 Presentation - Comcast ,7/8/11 11 | 5,2,,1:30-2:00 PM July 11 Presentation - Lionsgate,7/8/11 12 | 9,2,,8:30-9:15 PM July 11:Fireside session ,7/8/11 13 | 13,2,,2:00-2:45 PM July 12,7/8/11 14 | 16,2,,4:45-5:30 PM July 12 Presentation - Intuit,7/8/11 15 | 18,2,,6:15-6:45 PM July 12 Presentation - Kleiner Perkins,7/8/11 16 | 7,2,,2:45-3:30 PM July 11:Groundsourcing versus UGC,7/8/11 17 | 1,2,,9:45-10:30 AM July 11 Presentation - Netflix ,7/8/11 18 | 2,2,,11:00-11:30 AM July 11 Presentation – ESPN ,7/8/11 19 | 4,2,,12:00-12:30 AM July 11 Presentation – BlipTV ,7/8/11 20 | 14,2,,2:45-3:30 PM July 12,7/8/11 21 | 15,2,,3:45-4:45 PM July 12: Fireside chat,7/8/11 22 | 3,2,,11:30-12:00 AM July 11 Presentation - GoogleTV ,7/8/11 23 | 11,2,,11:15-12:00 AM July 12,7/8/11 24 | 17,2,,5:30-6:15 PM July 12 Presentation - FoundersFund,7/8/11 25 | 6,1,,,7/10/11 26 | -------------------------------------------------------------------------------- /Example CSV files/Events.csv: -------------------------------------------------------------------------------- 1 | EventId,EventName,EventVersion,EventThemeId,EventDate,Description,Address,Website,Facebook,Twitter,ContactEmail,About,Schedule,CreateDate,CreateBy 2 | 1,Naspers,18,1,7/10/11,Naspers University,"Rosewood Sand Hill 3 | 2825 Sand Hill Road 4 | Menlo Park, CA 94025-7022",http://naspers.com/,,,peter@catch.com,"Naspers is a leading multinational media group, incorporated in 1915 as a public limited liability company and listed on the Johannesburg Stock Exchange (JSE) in September 1994. The company also has an ADR listing on the London Stock Exchange (LSE).
5 |
Over the past two decades the group has evolved from a traditional print media business in one country, to a broad-based e-media company in multiple markets.
6 |
The group’s principal operations are in internet platforms (focussing on commerce, communities, content, communication and games), pay-television and the provision of related technologies and print media (including publishing, distribution and printing of magazines, newspapers and books). Most of Naspers’s businesses hold leading market positions.
7 |
The group’s most significant operations are located in emerging markets. This includes South Africa and the rest of Sub-Saharan Africa, China, Latin America, Central and Eastern Europe, Russia and India.
8 |
The 2011 Naspers Strategy Conference will be held in Menlo Park from
9 | July 10th to 13th 2011 at:
10 | Rosewood Sand Hill
11 | 2825 Sand Hill Road
12 | Menlo Park, CA 94025-7022
13 | (650) 561-1500
",,7/7/11,Brook 14 | 2,Naspers,18,1,7/10/11,Naspers ,"Rosewood Sand Hill 15 | 2825 Sand Hill Road 16 | Menlo Park, CA 94025-7022",http://naspers.com/,,,peter@catch.com,"Naspers is a leading multinational media group, incorporated in 1915 as a public limited liability company and listed on the Johannesburg Stock Exchange (JSE) in September 1994. The company also has an ADR listing on the London Stock Exchange (LSE).
17 |
Over the past two decades the group has evolved from a traditional print media business in one country, to a broad-based e-media company in multiple markets.
18 |
The group’s principal operations are in internet platforms (focussing on commerce, communities, content, communication and games), pay-television and the provision of related technologies and print media (including publishing, distribution and printing of magazines, newspapers and books). Most of Naspers’s businesses hold leading market positions.
19 |
The group’s most significant operations are located in emerging markets. This includes South Africa and the rest of Sub-Saharan Africa, China, Latin America, Central and Eastern Europe, Russia and India.
20 |
The 2011 Naspers Strategy Conference will be held in Menlo Park from
21 | July 10th to 13th 2011 at:
22 | Rosewood Sand Hill
23 | 2825 Sand Hill Road
24 | Menlo Park, CA 94025-7022
25 | (650) 561-1500
",,7/7/11,Brook 26 | -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- 1 | Copyright 2011 Catch.com, Inc. 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License 14 | 15 | 16 | Includes Original TEDxApps Project 17 | Copyright (c) 2010 Peter Ma 18 | Released under the MIT 19 | 20 | Date: Sat June 24 12:03:48 2010 -0500 -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | Android Conference App Guide By Peter Ma, Catch.com Introduction Catch.com makes it easy to capture your ideas and experiences into activity streams in those areas where you want to learn and grow. Capturing notes during a conference is an ideal use case for Catch. After the release of several successful apps for TED and TEDx conferences that integrated the Catch functionality, it was decided to open source the app and make it available to any conference organizer for free. The functionality was further improved and syncing now uses Google Fusion Table to avoid relying on private databases. Any event organizer who wants to have an iphone app for their conference can simply follow this guide. The app is open sourced under the terms of the MIT license and Apache License and can be found at https://github.com/catch/TED-Android-App. Contributions are welcome. The conference app currently supports single-track conferences. Conferences with multiple tracks are supported by having several single-track buttons on the dashboard. This portion will be improved in the future. 2 | 3 | please read Catch_Android_Conference_Guide.pdf to see further instructions -------------------------------------------------------------------------------- /assets/about/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Info Page 7 | 8 | 9 | 10 | 11 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 119 | 120 | 121 |
122 |
123 | 124 | -------------------------------------------------------------------------------- /assets/javascript/.svn/entries: -------------------------------------------------------------------------------- 1 | 10 2 | 3 | dir 4 | 7499 5 | svn+ssh://peter@svn.snaptic.com/assets/svn/api-apps/trunk/Catch%20Health/assets/javascript 6 | svn+ssh://peter@svn.snaptic.com/assets/svn 7 | 8 | 9 | 10 | 2010-11-24T03:31:31.091627Z 11 | 7215 12 | peter 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 47c71b91-0550-41b2-9d14-58eae63b76b1 28 | 29 | flot 30 | dir 31 | 32 | -------------------------------------------------------------------------------- /assets/javascript/jquery.json.js: -------------------------------------------------------------------------------- 1 | 2 | (function($){$.toJSON=function(o) 3 | {if(typeof(JSON)=='object'&&JSON.stringify) 4 | return JSON.stringify(o);var type=typeof(o);if(o===null) 5 | return"null";if(type=="undefined") 6 | return undefined;if(type=="number"||type=="boolean") 7 | return o+"";if(type=="string") 8 | return $.quoteString(o);if(type=='object') 9 | {if(typeof o.toJSON=="function") 10 | return $.toJSON(o.toJSON());if(o.constructor===Date) 11 | {var month=o.getUTCMonth()+1;if(month<10)month='0'+month;var day=o.getUTCDate();if(day<10)day='0'+day;var year=o.getUTCFullYear();var hours=o.getUTCHours();if(hours<10)hours='0'+hours;var minutes=o.getUTCMinutes();if(minutes<10)minutes='0'+minutes;var seconds=o.getUTCSeconds();if(seconds<10)seconds='0'+seconds;var milli=o.getUTCMilliseconds();if(milli<100)milli='0'+milli;if(milli<10)milli='0'+milli;return'"'+year+'-'+month+'-'+day+'T'+ 12 | hours+':'+minutes+':'+seconds+'.'+milli+'Z"';} 13 | if(o.constructor===Array) 14 | {var ret=[];for(var i=0;i 2 | 3 | 4 | 5 | Speaker Detail 6 | 7 | 8 | 9 | 105 | 106 | 107 | 108 | 109 | 110 | 128 | 129 | 130 |
131 | 132 |
133 |

134 | 135 |
136 |

137 |
138 | 139 | -------------------------------------------------------------------------------- /bin/TEDApp.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/TEDApp.apk -------------------------------------------------------------------------------- /bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes.dex -------------------------------------------------------------------------------- /bin/classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/.DS_Store -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/AboutActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/AboutActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/AboutActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/AboutActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/ArchiveActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/ArchiveActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/ArchiveActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/ArchiveActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/EventMapActivity$HelloItemizedOverlay$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/EventMapActivity$HelloItemizedOverlay$1.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/EventMapActivity$HelloItemizedOverlay$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/EventMapActivity$HelloItemizedOverlay$2.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/EventMapActivity$HelloItemizedOverlay.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/EventMapActivity$HelloItemizedOverlay.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/EventMapActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/EventMapActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/Main$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/Main$1.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/Main$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/Main$2.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/Main.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$array.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$attr.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$color.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$color.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$dimen.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$dimen.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$drawable.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$id.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$layout.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$string.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$style.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R$xml.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R$xml.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/R.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SessionResultActivity$LoadSearchResultTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SessionResultActivity$LoadSearchResultTask.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SessionResultActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SessionResultActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SpeakerActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SpeakerActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SpeakerActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SpeakerActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SpeakerResultActivity$LoadSearchResultTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SpeakerResultActivity$LoadSearchResultTask.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SpeakerResultActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SpeakerResultActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SpeakerResultTabActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SpeakerResultTabActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SubEventSessionResultActivity$LoadSearchResultTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SubEventSessionResultActivity$LoadSearchResultTask.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SubEventSessionResultActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SubEventSessionResultActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SubEventSpeakerResultActivity$LoadSearchResultTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SubEventSpeakerResultActivity$LoadSearchResultTask.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SubEventSpeakerResultActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SubEventSpeakerResultActivity.class -------------------------------------------------------------------------------- /bin/classes/com/catchnotes/tedapp/SubEventSpeakerResultTabActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/catchnotes/tedapp/SubEventSpeakerResultTabActivity.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/GroupLazyActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/GroupLazyActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/GroupLazyActivity$LoadImageTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/GroupLazyActivity$LoadImageTask.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/GroupLazyActivity$LoadQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/GroupLazyActivity$LoadQueue.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/GroupLazyActivity$LoadTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/GroupLazyActivity$LoadTask.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/GroupLazyActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/GroupLazyActivity.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/LazyActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/LazyActivity$1.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/LazyActivity$LoadImageTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/LazyActivity$LoadImageTask.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/LazyActivity$LoadQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/LazyActivity$LoadQueue.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/LazyActivity$LoadTask.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/LazyActivity$LoadTask.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/activities/LazyActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/activities/LazyActivity.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/adapters/GroupLazyAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/adapters/GroupLazyAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/adapters/LazyAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/adapters/LazyAdapter.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/helpers/Common.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/helpers/Common.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/logics/ArchiveLogic.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/logics/ArchiveLogic.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/logics/AttendeeLogic.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/logics/AttendeeLogic.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/logics/SearchResultLogic.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/logics/SearchResultLogic.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/objects/CatchIntent.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/objects/CatchIntent.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/objects/SearchResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/objects/SearchResult.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/objects/SessionResult.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/objects/SessionResult.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/FusionTableReader.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/FusionTableReader.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/HTTPQueue$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/HTTPQueue$1.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/HTTPQueue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/HTTPQueue.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/HTTPThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/HTTPThread.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/IntentIntegrator$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/IntentIntegrator$1.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/IntentIntegrator$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/IntentIntegrator$2.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/IntentIntegrator.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/IntentIntegrator.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/RemoteImageView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/RemoteImageView$1.class -------------------------------------------------------------------------------- /bin/classes/com/tedx/utility/RemoteImageView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/classes/com/tedx/utility/RemoteImageView.class -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/about.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/about_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/about_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/about_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/about_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/addcontact.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/addcontact_blackwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/addcontact_blackwhite.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/addcontact_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/addcontact_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/addcontact_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/addcontact_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/barcode.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/barcode_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/barcode_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/barcode_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/barcode_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/contact.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/contact_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/contact_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/contact_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/contact_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/events.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/events_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/events_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/events_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/events_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/facebook.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/facebook_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/facebook_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/facebook_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/facebook_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/map.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/map_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/map_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/map_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/map_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/missingphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/missingphoto.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/note.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/note_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/note_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/note_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/note_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/schedule.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/schedule_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/schedule_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/schedule_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/schedule_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/session.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/session_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/session_off.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/speaker.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/speaker_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/speaker_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/speaker_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/speaker_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/speakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/speakers.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/speakers_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/speakers_off.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/ted2011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/ted2011.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/ted2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/ted2012.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/tedglobal2011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/tedglobal2011.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/twitter.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/twitter_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/twitter_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/twitter_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/twitter_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/university.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/university_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/university_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-hdpi/university_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-hdpi/university_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/about.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/about_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/about_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/about_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/about_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/addcontact.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/addcontact_blackwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/addcontact_blackwhite.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/addcontact_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/addcontact_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/addcontact_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/addcontact_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/barcode.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/barcode_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/barcode_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/barcode_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/barcode_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/contact.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/contact_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/contact_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/contact_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/contact_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/events.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/events_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/events_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/events_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/events_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/facebook.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/facebook_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/facebook_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/facebook_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/facebook_menu.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/facebook_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/facebook_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/mail_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/mail_menu.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/map.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/map_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/map_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/map_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/map_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/note.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/note_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/note_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/note_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/note_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/pin.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/schedule.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/schedule_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/schedule_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/schedule_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/schedule_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/speaker.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/speaker_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/speaker_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/speaker_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/speaker_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/twitter.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/twitter_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/twitter_focused.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/twitter_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/twitter_menu.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/twitter_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/twitter_pressed.png -------------------------------------------------------------------------------- /bin/res/drawable-mdpi/university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-mdpi/university.png -------------------------------------------------------------------------------- /bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /bin/res/drawable/market_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/res/drawable/market_icon.png -------------------------------------------------------------------------------- /bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/bin/resources.ap_ -------------------------------------------------------------------------------- /project.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 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Indicates whether an apk should be generated for each density. 11 | split.density=false 12 | # Project target. 13 | target=Google Inc.:Google APIs:11 14 | -------------------------------------------------------------------------------- /promo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/promo.png -------------------------------------------------------------------------------- /res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/.DS_Store -------------------------------------------------------------------------------- /res/drawable-hdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/about.png -------------------------------------------------------------------------------- /res/drawable-hdpi/about_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/about_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/about_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/about_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/addcontact.png -------------------------------------------------------------------------------- /res/drawable-hdpi/addcontact_blackwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/addcontact_blackwhite.png -------------------------------------------------------------------------------- /res/drawable-hdpi/addcontact_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/addcontact_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/addcontact_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/addcontact_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/barcode.png -------------------------------------------------------------------------------- /res/drawable-hdpi/barcode_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/barcode_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/barcode_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/barcode_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/bottom.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/contact.png -------------------------------------------------------------------------------- /res/drawable-hdpi/contact_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/contact_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/contact_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/contact_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/events.png -------------------------------------------------------------------------------- /res/drawable-hdpi/events_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/events_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/events_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/events_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/facebook.png -------------------------------------------------------------------------------- /res/drawable-hdpi/facebook_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/facebook_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/facebook_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/facebook_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/map.png -------------------------------------------------------------------------------- /res/drawable-hdpi/map_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/map_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/map_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/map_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/missingphoto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/missingphoto.png -------------------------------------------------------------------------------- /res/drawable-hdpi/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/note.png -------------------------------------------------------------------------------- /res/drawable-hdpi/note_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/note_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/note_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/note_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/schedule.png -------------------------------------------------------------------------------- /res/drawable-hdpi/schedule_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/schedule_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/schedule_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/schedule_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/session.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/session.png -------------------------------------------------------------------------------- /res/drawable-hdpi/session_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/session_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/speaker.png -------------------------------------------------------------------------------- /res/drawable-hdpi/speaker_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/speaker_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/speaker_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/speaker_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/speakers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/speakers.png -------------------------------------------------------------------------------- /res/drawable-hdpi/speakers_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/speakers_off.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ted2011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/ted2011.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ted2012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/ted2012.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tedglobal2011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/tedglobal2011.png -------------------------------------------------------------------------------- /res/drawable-hdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/twitter.png -------------------------------------------------------------------------------- /res/drawable-hdpi/twitter_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/twitter_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/twitter_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/twitter_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/university.png -------------------------------------------------------------------------------- /res/drawable-hdpi/university_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/university_focused.png -------------------------------------------------------------------------------- /res/drawable-hdpi/university_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-hdpi/university_pressed.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/about.png -------------------------------------------------------------------------------- /res/drawable-mdpi/about_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/about_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/about_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/about_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/addcontact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/addcontact.png -------------------------------------------------------------------------------- /res/drawable-mdpi/addcontact_blackwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/addcontact_blackwhite.png -------------------------------------------------------------------------------- /res/drawable-mdpi/addcontact_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/addcontact_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/addcontact_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/addcontact_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/background.png -------------------------------------------------------------------------------- /res/drawable-mdpi/barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/barcode.png -------------------------------------------------------------------------------- /res/drawable-mdpi/barcode_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/barcode_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/barcode_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/barcode_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/contact.png -------------------------------------------------------------------------------- /res/drawable-mdpi/contact_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/contact_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/contact_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/contact_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/events.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/events.png -------------------------------------------------------------------------------- /res/drawable-mdpi/events_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/events_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/events_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/events_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/facebook.png -------------------------------------------------------------------------------- /res/drawable-mdpi/facebook_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/facebook_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/facebook_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/facebook_menu.png -------------------------------------------------------------------------------- /res/drawable-mdpi/facebook_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/facebook_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /res/drawable-mdpi/mail_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/mail_menu.png -------------------------------------------------------------------------------- /res/drawable-mdpi/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/map.png -------------------------------------------------------------------------------- /res/drawable-mdpi/map_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/map_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/map_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/map_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/note.png -------------------------------------------------------------------------------- /res/drawable-mdpi/note_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/note_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/note_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/note_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/pin.png -------------------------------------------------------------------------------- /res/drawable-mdpi/schedule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/schedule.png -------------------------------------------------------------------------------- /res/drawable-mdpi/schedule_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/schedule_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/schedule_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/schedule_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/speaker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/speaker.png -------------------------------------------------------------------------------- /res/drawable-mdpi/speaker_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/speaker_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/speaker_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/speaker_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/twitter.png -------------------------------------------------------------------------------- /res/drawable-mdpi/twitter_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/twitter_focused.png -------------------------------------------------------------------------------- /res/drawable-mdpi/twitter_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/twitter_menu.png -------------------------------------------------------------------------------- /res/drawable-mdpi/twitter_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/twitter_pressed.png -------------------------------------------------------------------------------- /res/drawable-mdpi/university.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-mdpi/university.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-xhdpi/.DS_Store -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/about_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/addcontact_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/contact_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/events_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/facebook_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/ic_tab_sessions.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /res/drawable/ic_tab_speakers.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /res/drawable/list_divider.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /res/drawable/map_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/market_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catch/TED-Android-App/1bfd1ad71c5611ea8a86c66215c83f1d85293888/res/drawable/market_icon.png -------------------------------------------------------------------------------- /res/drawable/note_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/scan_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/schedule_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/speaker_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/twitter_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/university_button.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/layout-land/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 25 | 28 | 29 | 34 | 35 | 36 | 42 | 43 | 48 |