├── .gitignore ├── .travis.yml ├── app.coffee ├── app.production.coffee ├── app.staging.coffee ├── app.sublime-project ├── assets ├── css │ ├── _animations.styl │ ├── _authors.styl │ ├── _buttons.styl │ ├── _colors.styl │ ├── _feed.styl │ ├── _footer.styl │ ├── _header.styl │ ├── _home.styl │ ├── _icons.styl │ ├── _language-selector.styl │ ├── _natural-language-form.styl │ ├── _nav.styl │ ├── _scaffolding.styl │ ├── _settings.styl │ ├── _typography.styl │ ├── _utils.styl │ ├── font │ │ └── clearsans │ │ │ ├── clearsans-bold.eot │ │ │ ├── clearsans-bold.svg │ │ │ ├── clearsans-bold.ttf │ │ │ ├── clearsans-bold.woff │ │ │ ├── clearsans-light.eot │ │ │ ├── clearsans-light.svg │ │ │ ├── clearsans-light.ttf │ │ │ ├── clearsans-light.woff │ │ │ ├── clearsans-medium.eot │ │ │ ├── clearsans-medium.svg │ │ │ ├── clearsans-medium.ttf │ │ │ ├── clearsans-medium.woff │ │ │ ├── clearsans-regular.eot │ │ │ ├── clearsans-regular.svg │ │ │ ├── clearsans-regular.ttf │ │ │ ├── clearsans-regular.woff │ │ │ ├── clearsans-thin.eot │ │ │ ├── clearsans-thin.svg │ │ │ ├── clearsans-thin.ttf │ │ │ └── clearsans-thin.woff │ ├── guide.styl │ ├── master.styl │ └── prism.css ├── img │ ├── .keep │ ├── droid.svg │ ├── favicon.ico │ ├── fractal-blue.png │ ├── intel_logo.png │ ├── megacat.jpg │ ├── placeholder.svg │ ├── section-title-bg.png │ └── tear.svg └── js │ ├── animations.coffee │ ├── app.coffee │ ├── commit.coffee │ ├── disqus.coffee │ ├── elqQ.coffee │ ├── feed.coffee │ ├── fonts.coffee │ ├── ga-prod.coffee │ ├── ga-stage.coffee │ ├── grid.coffee │ ├── language-selector.coffee │ ├── natural-language-form.coffee │ ├── prism.js │ ├── search.coffee │ ├── share.coffee │ ├── text-effect.coffee │ └── track.coffee ├── authors_readme.md ├── bower.json ├── commit.php ├── data ├── authors │ ├── TomDawsonAH.yaml │ ├── abhilegend.yaml │ ├── admin.yaml │ ├── argyleink.yaml │ ├── blundell.yaml │ ├── buitren9.yaml │ ├── dennisstrein.yaml │ ├── edisonw.yaml │ ├── iamdankaufman.yaml │ ├── lapiellosolutions.yaml │ ├── lifeluvr.yaml │ ├── nglauber.yaml │ ├── peachpellen.yaml │ ├── smartnotify.yaml │ ├── tamer1an.yaml │ └── twoh.yaml ├── meta.yaml ├── paths.yaml └── social.yaml ├── deploy_key.enc ├── jasmine-runner.js ├── package.json ├── posts ├── TomDawsonAH │ ├── first_post.jade │ ├── library │ │ ├── AndroidMarshmallow.jpg │ │ └── LostTablet.jpeg │ └── post_two.jade ├── abhilegend │ ├── Unity_and_Android_Build.jade │ └── library │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ └── Picture3a.png ├── admin │ ├── contribute.jade │ └── library │ │ ├── android-hero.png │ │ └── new-author.gif ├── argyleink │ ├── library │ │ ├── bolt.jpg │ │ ├── purify.png │ │ └── uglify.png │ └── webviews.jade ├── blundell │ ├── Inspecting_databases_with_Stetho.jade │ ├── Pushing_the_limit.jade │ ├── You_have_permission_to.jade │ └── library │ │ ├── android-hero.png │ │ ├── crash-hero.png │ │ ├── limit-hero.jpeg │ │ ├── stetho-database-data.png │ │ ├── stetho-device-selection.png │ │ └── stetho-sql-commands.png ├── buitren9 │ ├── How_I_get_started.jade │ └── library │ │ ├── activity_lifecycle.png │ │ ├── evsas.png │ │ ├── hero_image.png │ │ └── smartphone_blocks.jpg ├── dennisstrein │ ├── Develop_apps_on_your.jade │ └── library │ │ ├── aide.png │ │ ├── image1.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── image5.png │ │ ├── image6.png │ │ ├── image7.png │ │ ├── image8.png │ │ └── image9.png ├── edisonw │ ├── Penn_Station.jade │ ├── buck.jade │ └── library │ │ ├── buck.png │ │ └── edisonpost2.jpeg ├── iamdankaufman │ ├── 4_Tips_on_How.jade │ ├── Future_of_App_Development.jade │ ├── The_Future_of_Android.jade │ ├── library │ │ ├── FutureofAppDev.jpg │ │ ├── Top7Techniques.jpg │ │ ├── dan_androidfuture.jpg │ │ ├── four_tips.jpg │ │ └── topreasonsinvest.png │ ├── top_7_techniques.jade │ └── top_reasons_invest.jade ├── lapiellosolutions │ ├── Introduction_to_cross_platform_mobile_apps_development.jade │ └── library │ │ ├── intel_xdk2.jpg │ │ └── intelxdk.png ├── lifeluvr │ ├── An_Android_Debugging_Bridge.jade │ ├── Useful_ADB_Commands.jade │ ├── Useful_ADB_Commands_II.jade │ └── library │ │ ├── EricPost2.jpeg │ │ ├── adbAction1.png │ │ ├── adbAction2.png │ │ ├── adbAction3.png │ │ ├── cd2platform-tools.png │ │ ├── copyNpaste.png │ │ ├── ericpost1.jpg │ │ ├── hero4eric.jpeg │ │ └── usrBin.png ├── nglauber │ ├── Android_Search.jade │ └── library │ │ ├── AndroidSearch_1.png │ │ └── AndroidSearch_Hero.jpg ├── npm-debug.log ├── peachpellen │ ├── 5_Apps_for_Android.jade │ ├── Dealing_with_Android_Fragmentation.jade │ ├── Infographic_Android_in_2015.jade │ ├── Interview-_Peach_Pellen_on.jade │ └── library │ │ ├── android2015-hero.png │ │ ├── android_2015_header.jpg │ │ ├── android_infographic.jpg │ │ ├── bolt.jpg │ │ ├── devices-hero.jpg │ │ ├── golden_gate.jpg │ │ ├── header.jpg │ │ ├── interview-header.jpg │ │ ├── interview-header2.jpg │ │ ├── peach_devices.jpg │ │ ├── purify.png │ │ ├── top5androidapps.jpg │ │ └── uglify.png ├── smartnotify │ ├── Geolocation_in_Apps.jade │ ├── QA_with_Android_Developer.jade │ └── library │ │ ├── geolocation.jpg │ │ └── gregpost1.jpg ├── tamer1an │ ├── android-iot-big-data.jade │ └── library │ │ └── android-iot-big-data.jpeg ├── template.jade └── twoh │ ├── Easy_Android_Maps_Part.jade │ └── library │ ├── app1.png │ ├── app2.png │ ├── cred1.png │ ├── cred2.jpg │ ├── cred3.png │ ├── hafizhpost1.jpg │ └── map1.png ├── readme.md ├── reviewer_readme.md ├── scripts ├── copy-field-guide.sh ├── copy-library.js ├── create-thumbs.js ├── deploy.sh ├── deploy_production.sh ├── get-author-image.js ├── get-author.js ├── get-categories.js ├── get-featured.js ├── get-hero-image.js ├── get-merged-posts.js ├── get-post-git-data.js ├── get-related-posts.js ├── git-json.js ├── new-author.js ├── new-post.js ├── prep_l18n.sh ├── social-link.js └── sort-by-last-name.js ├── spec ├── androidHub │ ├── AuthorSpec.js │ └── PostSpec.js ├── helpers │ └── jasmine_examples │ │ └── SpecHelper.js └── support │ └── jasmine.json └── views ├── 404.jade ├── about.jade ├── authors.jade ├── commit.jade ├── feed.jade ├── includes ├── _facebook_tracking.jade ├── _font-strategy.jade ├── _footer-sitemap.jade ├── _footer-strip.jade ├── _footer.jade ├── _intel_tracking.jade ├── _site-meta.jade ├── _social-icons.jade └── svg │ ├── _arrow.jade │ ├── _codepen.jade │ ├── _commit.jade │ ├── _droid-hub.jade │ ├── _droid.jade │ ├── _facebook.jade │ ├── _github.jade │ ├── _googleplus.jade │ ├── _hub-logo.jade │ ├── _instagram.jade │ ├── _link.jade │ ├── _search.jade │ ├── _twitter-bird.jade │ ├── _twitter.jade │ └── _youtube.jade ├── index.jade ├── layouts ├── _general.jade └── _single.jade ├── mixins ├── _author.jade ├── _feed-home-item.jade ├── _feed-item.jade ├── _language-selector.jade ├── _nav.jade ├── _og-meta.jade ├── _related-post.jade ├── _tracking-pixel.jade └── _twitter-meta.jade ├── redirector.jade ├── robots.txt └── robots_disallow.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/.travis.yml -------------------------------------------------------------------------------- /app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/app.coffee -------------------------------------------------------------------------------- /app.production.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/app.production.coffee -------------------------------------------------------------------------------- /app.staging.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/app.staging.coffee -------------------------------------------------------------------------------- /app.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/app.sublime-project -------------------------------------------------------------------------------- /assets/css/_animations.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_animations.styl -------------------------------------------------------------------------------- /assets/css/_authors.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_authors.styl -------------------------------------------------------------------------------- /assets/css/_buttons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_buttons.styl -------------------------------------------------------------------------------- /assets/css/_colors.styl: -------------------------------------------------------------------------------- 1 | .light-grey-bg 2 | background-color:#eee -------------------------------------------------------------------------------- /assets/css/_feed.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_feed.styl -------------------------------------------------------------------------------- /assets/css/_footer.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_footer.styl -------------------------------------------------------------------------------- /assets/css/_header.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_header.styl -------------------------------------------------------------------------------- /assets/css/_home.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_home.styl -------------------------------------------------------------------------------- /assets/css/_icons.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_icons.styl -------------------------------------------------------------------------------- /assets/css/_language-selector.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_language-selector.styl -------------------------------------------------------------------------------- /assets/css/_natural-language-form.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_natural-language-form.styl -------------------------------------------------------------------------------- /assets/css/_nav.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_nav.styl -------------------------------------------------------------------------------- /assets/css/_scaffolding.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_scaffolding.styl -------------------------------------------------------------------------------- /assets/css/_settings.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_settings.styl -------------------------------------------------------------------------------- /assets/css/_typography.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_typography.styl -------------------------------------------------------------------------------- /assets/css/_utils.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/_utils.styl -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-bold.eot -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-bold.svg -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-bold.ttf -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-bold.woff -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-light.eot -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-light.svg -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-light.ttf -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-light.woff -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-medium.eot -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-medium.svg -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-medium.ttf -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-medium.woff -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-regular.eot -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-regular.svg -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-regular.ttf -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-regular.woff -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-thin.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-thin.eot -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-thin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-thin.svg -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-thin.ttf -------------------------------------------------------------------------------- /assets/css/font/clearsans/clearsans-thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/font/clearsans/clearsans-thin.woff -------------------------------------------------------------------------------- /assets/css/guide.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/guide.styl -------------------------------------------------------------------------------- /assets/css/master.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/master.styl -------------------------------------------------------------------------------- /assets/css/prism.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/css/prism.css -------------------------------------------------------------------------------- /assets/img/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/img/droid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/img/droid.svg -------------------------------------------------------------------------------- /assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/img/favicon.ico -------------------------------------------------------------------------------- /assets/img/fractal-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/img/fractal-blue.png -------------------------------------------------------------------------------- /assets/img/intel_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/img/intel_logo.png -------------------------------------------------------------------------------- /assets/img/megacat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/img/megacat.jpg -------------------------------------------------------------------------------- /assets/img/placeholder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/img/placeholder.svg -------------------------------------------------------------------------------- /assets/img/section-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/img/section-title-bg.png -------------------------------------------------------------------------------- /assets/img/tear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/img/tear.svg -------------------------------------------------------------------------------- /assets/js/animations.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/animations.coffee -------------------------------------------------------------------------------- /assets/js/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/app.coffee -------------------------------------------------------------------------------- /assets/js/commit.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/commit.coffee -------------------------------------------------------------------------------- /assets/js/disqus.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/disqus.coffee -------------------------------------------------------------------------------- /assets/js/elqQ.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/elqQ.coffee -------------------------------------------------------------------------------- /assets/js/feed.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/feed.coffee -------------------------------------------------------------------------------- /assets/js/fonts.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/fonts.coffee -------------------------------------------------------------------------------- /assets/js/ga-prod.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/ga-prod.coffee -------------------------------------------------------------------------------- /assets/js/ga-stage.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/ga-stage.coffee -------------------------------------------------------------------------------- /assets/js/grid.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/grid.coffee -------------------------------------------------------------------------------- /assets/js/language-selector.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/language-selector.coffee -------------------------------------------------------------------------------- /assets/js/natural-language-form.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/natural-language-form.coffee -------------------------------------------------------------------------------- /assets/js/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/prism.js -------------------------------------------------------------------------------- /assets/js/search.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/search.coffee -------------------------------------------------------------------------------- /assets/js/share.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/share.coffee -------------------------------------------------------------------------------- /assets/js/text-effect.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/text-effect.coffee -------------------------------------------------------------------------------- /assets/js/track.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/assets/js/track.coffee -------------------------------------------------------------------------------- /authors_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/authors_readme.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/bower.json -------------------------------------------------------------------------------- /commit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/commit.php -------------------------------------------------------------------------------- /data/authors/TomDawsonAH.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/TomDawsonAH.yaml -------------------------------------------------------------------------------- /data/authors/abhilegend.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/abhilegend.yaml -------------------------------------------------------------------------------- /data/authors/admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/admin.yaml -------------------------------------------------------------------------------- /data/authors/argyleink.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/argyleink.yaml -------------------------------------------------------------------------------- /data/authors/blundell.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/blundell.yaml -------------------------------------------------------------------------------- /data/authors/buitren9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/buitren9.yaml -------------------------------------------------------------------------------- /data/authors/dennisstrein.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/dennisstrein.yaml -------------------------------------------------------------------------------- /data/authors/edisonw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/edisonw.yaml -------------------------------------------------------------------------------- /data/authors/iamdankaufman.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/iamdankaufman.yaml -------------------------------------------------------------------------------- /data/authors/lapiellosolutions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/lapiellosolutions.yaml -------------------------------------------------------------------------------- /data/authors/lifeluvr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/lifeluvr.yaml -------------------------------------------------------------------------------- /data/authors/nglauber.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/nglauber.yaml -------------------------------------------------------------------------------- /data/authors/peachpellen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/peachpellen.yaml -------------------------------------------------------------------------------- /data/authors/smartnotify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/smartnotify.yaml -------------------------------------------------------------------------------- /data/authors/tamer1an.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/tamer1an.yaml -------------------------------------------------------------------------------- /data/authors/twoh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/authors/twoh.yaml -------------------------------------------------------------------------------- /data/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/meta.yaml -------------------------------------------------------------------------------- /data/paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/paths.yaml -------------------------------------------------------------------------------- /data/social.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/data/social.yaml -------------------------------------------------------------------------------- /deploy_key.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/deploy_key.enc -------------------------------------------------------------------------------- /jasmine-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/jasmine-runner.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/package.json -------------------------------------------------------------------------------- /posts/TomDawsonAH/first_post.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/TomDawsonAH/first_post.jade -------------------------------------------------------------------------------- /posts/TomDawsonAH/library/AndroidMarshmallow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/TomDawsonAH/library/AndroidMarshmallow.jpg -------------------------------------------------------------------------------- /posts/TomDawsonAH/library/LostTablet.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/TomDawsonAH/library/LostTablet.jpeg -------------------------------------------------------------------------------- /posts/TomDawsonAH/post_two.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/TomDawsonAH/post_two.jade -------------------------------------------------------------------------------- /posts/abhilegend/Unity_and_Android_Build.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/Unity_and_Android_Build.jade -------------------------------------------------------------------------------- /posts/abhilegend/library/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/1.png -------------------------------------------------------------------------------- /posts/abhilegend/library/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/2.png -------------------------------------------------------------------------------- /posts/abhilegend/library/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/3.png -------------------------------------------------------------------------------- /posts/abhilegend/library/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/4.png -------------------------------------------------------------------------------- /posts/abhilegend/library/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/5.png -------------------------------------------------------------------------------- /posts/abhilegend/library/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/6.png -------------------------------------------------------------------------------- /posts/abhilegend/library/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/7.png -------------------------------------------------------------------------------- /posts/abhilegend/library/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/8.png -------------------------------------------------------------------------------- /posts/abhilegend/library/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/9.png -------------------------------------------------------------------------------- /posts/abhilegend/library/Picture3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/abhilegend/library/Picture3a.png -------------------------------------------------------------------------------- /posts/admin/contribute.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/admin/contribute.jade -------------------------------------------------------------------------------- /posts/admin/library/android-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/admin/library/android-hero.png -------------------------------------------------------------------------------- /posts/admin/library/new-author.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/admin/library/new-author.gif -------------------------------------------------------------------------------- /posts/argyleink/library/bolt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/argyleink/library/bolt.jpg -------------------------------------------------------------------------------- /posts/argyleink/library/purify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/argyleink/library/purify.png -------------------------------------------------------------------------------- /posts/argyleink/library/uglify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/argyleink/library/uglify.png -------------------------------------------------------------------------------- /posts/argyleink/webviews.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/argyleink/webviews.jade -------------------------------------------------------------------------------- /posts/blundell/Inspecting_databases_with_Stetho.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/Inspecting_databases_with_Stetho.jade -------------------------------------------------------------------------------- /posts/blundell/Pushing_the_limit.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/Pushing_the_limit.jade -------------------------------------------------------------------------------- /posts/blundell/You_have_permission_to.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/You_have_permission_to.jade -------------------------------------------------------------------------------- /posts/blundell/library/android-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/library/android-hero.png -------------------------------------------------------------------------------- /posts/blundell/library/crash-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/library/crash-hero.png -------------------------------------------------------------------------------- /posts/blundell/library/limit-hero.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/library/limit-hero.jpeg -------------------------------------------------------------------------------- /posts/blundell/library/stetho-database-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/library/stetho-database-data.png -------------------------------------------------------------------------------- /posts/blundell/library/stetho-device-selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/library/stetho-device-selection.png -------------------------------------------------------------------------------- /posts/blundell/library/stetho-sql-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/blundell/library/stetho-sql-commands.png -------------------------------------------------------------------------------- /posts/buitren9/How_I_get_started.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/buitren9/How_I_get_started.jade -------------------------------------------------------------------------------- /posts/buitren9/library/activity_lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/buitren9/library/activity_lifecycle.png -------------------------------------------------------------------------------- /posts/buitren9/library/evsas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/buitren9/library/evsas.png -------------------------------------------------------------------------------- /posts/buitren9/library/hero_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/buitren9/library/hero_image.png -------------------------------------------------------------------------------- /posts/buitren9/library/smartphone_blocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/buitren9/library/smartphone_blocks.jpg -------------------------------------------------------------------------------- /posts/dennisstrein/Develop_apps_on_your.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/Develop_apps_on_your.jade -------------------------------------------------------------------------------- /posts/dennisstrein/library/aide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/aide.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image1.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image2.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image3.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image4.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image5.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image6.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image7.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image8.png -------------------------------------------------------------------------------- /posts/dennisstrein/library/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/dennisstrein/library/image9.png -------------------------------------------------------------------------------- /posts/edisonw/Penn_Station.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/edisonw/Penn_Station.jade -------------------------------------------------------------------------------- /posts/edisonw/buck.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/edisonw/buck.jade -------------------------------------------------------------------------------- /posts/edisonw/library/buck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/edisonw/library/buck.png -------------------------------------------------------------------------------- /posts/edisonw/library/edisonpost2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/edisonw/library/edisonpost2.jpeg -------------------------------------------------------------------------------- /posts/iamdankaufman/4_Tips_on_How.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/4_Tips_on_How.jade -------------------------------------------------------------------------------- /posts/iamdankaufman/Future_of_App_Development.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/Future_of_App_Development.jade -------------------------------------------------------------------------------- /posts/iamdankaufman/The_Future_of_Android.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/The_Future_of_Android.jade -------------------------------------------------------------------------------- /posts/iamdankaufman/library/FutureofAppDev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/library/FutureofAppDev.jpg -------------------------------------------------------------------------------- /posts/iamdankaufman/library/Top7Techniques.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/library/Top7Techniques.jpg -------------------------------------------------------------------------------- /posts/iamdankaufman/library/dan_androidfuture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/library/dan_androidfuture.jpg -------------------------------------------------------------------------------- /posts/iamdankaufman/library/four_tips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/library/four_tips.jpg -------------------------------------------------------------------------------- /posts/iamdankaufman/library/topreasonsinvest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/library/topreasonsinvest.png -------------------------------------------------------------------------------- /posts/iamdankaufman/top_7_techniques.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/top_7_techniques.jade -------------------------------------------------------------------------------- /posts/iamdankaufman/top_reasons_invest.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/iamdankaufman/top_reasons_invest.jade -------------------------------------------------------------------------------- /posts/lapiellosolutions/Introduction_to_cross_platform_mobile_apps_development.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lapiellosolutions/Introduction_to_cross_platform_mobile_apps_development.jade -------------------------------------------------------------------------------- /posts/lapiellosolutions/library/intel_xdk2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lapiellosolutions/library/intel_xdk2.jpg -------------------------------------------------------------------------------- /posts/lapiellosolutions/library/intelxdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lapiellosolutions/library/intelxdk.png -------------------------------------------------------------------------------- /posts/lifeluvr/An_Android_Debugging_Bridge.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/An_Android_Debugging_Bridge.jade -------------------------------------------------------------------------------- /posts/lifeluvr/Useful_ADB_Commands.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/Useful_ADB_Commands.jade -------------------------------------------------------------------------------- /posts/lifeluvr/Useful_ADB_Commands_II.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/Useful_ADB_Commands_II.jade -------------------------------------------------------------------------------- /posts/lifeluvr/library/EricPost2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/EricPost2.jpeg -------------------------------------------------------------------------------- /posts/lifeluvr/library/adbAction1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/adbAction1.png -------------------------------------------------------------------------------- /posts/lifeluvr/library/adbAction2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/adbAction2.png -------------------------------------------------------------------------------- /posts/lifeluvr/library/adbAction3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/adbAction3.png -------------------------------------------------------------------------------- /posts/lifeluvr/library/cd2platform-tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/cd2platform-tools.png -------------------------------------------------------------------------------- /posts/lifeluvr/library/copyNpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/copyNpaste.png -------------------------------------------------------------------------------- /posts/lifeluvr/library/ericpost1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/ericpost1.jpg -------------------------------------------------------------------------------- /posts/lifeluvr/library/hero4eric.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/hero4eric.jpeg -------------------------------------------------------------------------------- /posts/lifeluvr/library/usrBin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/lifeluvr/library/usrBin.png -------------------------------------------------------------------------------- /posts/nglauber/Android_Search.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/nglauber/Android_Search.jade -------------------------------------------------------------------------------- /posts/nglauber/library/AndroidSearch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/nglauber/library/AndroidSearch_1.png -------------------------------------------------------------------------------- /posts/nglauber/library/AndroidSearch_Hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/nglauber/library/AndroidSearch_Hero.jpg -------------------------------------------------------------------------------- /posts/npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/npm-debug.log -------------------------------------------------------------------------------- /posts/peachpellen/5_Apps_for_Android.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/5_Apps_for_Android.jade -------------------------------------------------------------------------------- /posts/peachpellen/Dealing_with_Android_Fragmentation.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/Dealing_with_Android_Fragmentation.jade -------------------------------------------------------------------------------- /posts/peachpellen/Infographic_Android_in_2015.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/Infographic_Android_in_2015.jade -------------------------------------------------------------------------------- /posts/peachpellen/Interview-_Peach_Pellen_on.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/Interview-_Peach_Pellen_on.jade -------------------------------------------------------------------------------- /posts/peachpellen/library/android2015-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/android2015-hero.png -------------------------------------------------------------------------------- /posts/peachpellen/library/android_2015_header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/android_2015_header.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/android_infographic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/android_infographic.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/bolt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/bolt.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/devices-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/devices-hero.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/golden_gate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/golden_gate.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/header.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/interview-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/interview-header.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/interview-header2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/interview-header2.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/peach_devices.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/peach_devices.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/purify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/purify.png -------------------------------------------------------------------------------- /posts/peachpellen/library/top5androidapps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/top5androidapps.jpg -------------------------------------------------------------------------------- /posts/peachpellen/library/uglify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/peachpellen/library/uglify.png -------------------------------------------------------------------------------- /posts/smartnotify/Geolocation_in_Apps.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/smartnotify/Geolocation_in_Apps.jade -------------------------------------------------------------------------------- /posts/smartnotify/QA_with_Android_Developer.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/smartnotify/QA_with_Android_Developer.jade -------------------------------------------------------------------------------- /posts/smartnotify/library/geolocation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/smartnotify/library/geolocation.jpg -------------------------------------------------------------------------------- /posts/smartnotify/library/gregpost1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/smartnotify/library/gregpost1.jpg -------------------------------------------------------------------------------- /posts/tamer1an/android-iot-big-data.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/tamer1an/android-iot-big-data.jade -------------------------------------------------------------------------------- /posts/tamer1an/library/android-iot-big-data.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/tamer1an/library/android-iot-big-data.jpeg -------------------------------------------------------------------------------- /posts/template.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/template.jade -------------------------------------------------------------------------------- /posts/twoh/Easy_Android_Maps_Part.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/twoh/Easy_Android_Maps_Part.jade -------------------------------------------------------------------------------- /posts/twoh/library/app1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/twoh/library/app1.png -------------------------------------------------------------------------------- /posts/twoh/library/app2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/twoh/library/app2.png -------------------------------------------------------------------------------- /posts/twoh/library/cred1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/twoh/library/cred1.png -------------------------------------------------------------------------------- /posts/twoh/library/cred2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/twoh/library/cred2.jpg -------------------------------------------------------------------------------- /posts/twoh/library/cred3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/twoh/library/cred3.png -------------------------------------------------------------------------------- /posts/twoh/library/hafizhpost1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/twoh/library/hafizhpost1.jpg -------------------------------------------------------------------------------- /posts/twoh/library/map1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/posts/twoh/library/map1.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/readme.md -------------------------------------------------------------------------------- /reviewer_readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/reviewer_readme.md -------------------------------------------------------------------------------- /scripts/copy-field-guide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/copy-field-guide.sh -------------------------------------------------------------------------------- /scripts/copy-library.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/copy-library.js -------------------------------------------------------------------------------- /scripts/create-thumbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/create-thumbs.js -------------------------------------------------------------------------------- /scripts/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/deploy.sh -------------------------------------------------------------------------------- /scripts/deploy_production.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/deploy_production.sh -------------------------------------------------------------------------------- /scripts/get-author-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/get-author-image.js -------------------------------------------------------------------------------- /scripts/get-author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/get-author.js -------------------------------------------------------------------------------- /scripts/get-categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/get-categories.js -------------------------------------------------------------------------------- /scripts/get-featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/get-featured.js -------------------------------------------------------------------------------- /scripts/get-hero-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/get-hero-image.js -------------------------------------------------------------------------------- /scripts/get-merged-posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/get-merged-posts.js -------------------------------------------------------------------------------- /scripts/get-post-git-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/get-post-git-data.js -------------------------------------------------------------------------------- /scripts/get-related-posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/get-related-posts.js -------------------------------------------------------------------------------- /scripts/git-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/git-json.js -------------------------------------------------------------------------------- /scripts/new-author.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/new-author.js -------------------------------------------------------------------------------- /scripts/new-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/new-post.js -------------------------------------------------------------------------------- /scripts/prep_l18n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/prep_l18n.sh -------------------------------------------------------------------------------- /scripts/social-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/social-link.js -------------------------------------------------------------------------------- /scripts/sort-by-last-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/scripts/sort-by-last-name.js -------------------------------------------------------------------------------- /spec/androidHub/AuthorSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/spec/androidHub/AuthorSpec.js -------------------------------------------------------------------------------- /spec/androidHub/PostSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/spec/androidHub/PostSpec.js -------------------------------------------------------------------------------- /spec/helpers/jasmine_examples/SpecHelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/spec/helpers/jasmine_examples/SpecHelper.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /views/404.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/404.jade -------------------------------------------------------------------------------- /views/about.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/about.jade -------------------------------------------------------------------------------- /views/authors.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/authors.jade -------------------------------------------------------------------------------- /views/commit.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/commit.jade -------------------------------------------------------------------------------- /views/feed.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/feed.jade -------------------------------------------------------------------------------- /views/includes/_facebook_tracking.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/_facebook_tracking.jade -------------------------------------------------------------------------------- /views/includes/_font-strategy.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/_font-strategy.jade -------------------------------------------------------------------------------- /views/includes/_footer-sitemap.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/_footer-sitemap.jade -------------------------------------------------------------------------------- /views/includes/_footer-strip.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/_footer-strip.jade -------------------------------------------------------------------------------- /views/includes/_footer.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/_footer.jade -------------------------------------------------------------------------------- /views/includes/_intel_tracking.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/_intel_tracking.jade -------------------------------------------------------------------------------- /views/includes/_site-meta.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/_site-meta.jade -------------------------------------------------------------------------------- /views/includes/_social-icons.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/_social-icons.jade -------------------------------------------------------------------------------- /views/includes/svg/_arrow.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_arrow.jade -------------------------------------------------------------------------------- /views/includes/svg/_codepen.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_codepen.jade -------------------------------------------------------------------------------- /views/includes/svg/_commit.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_commit.jade -------------------------------------------------------------------------------- /views/includes/svg/_droid-hub.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_droid-hub.jade -------------------------------------------------------------------------------- /views/includes/svg/_droid.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_droid.jade -------------------------------------------------------------------------------- /views/includes/svg/_facebook.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_facebook.jade -------------------------------------------------------------------------------- /views/includes/svg/_github.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_github.jade -------------------------------------------------------------------------------- /views/includes/svg/_googleplus.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_googleplus.jade -------------------------------------------------------------------------------- /views/includes/svg/_hub-logo.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_hub-logo.jade -------------------------------------------------------------------------------- /views/includes/svg/_instagram.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_instagram.jade -------------------------------------------------------------------------------- /views/includes/svg/_link.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_link.jade -------------------------------------------------------------------------------- /views/includes/svg/_search.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_search.jade -------------------------------------------------------------------------------- /views/includes/svg/_twitter-bird.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_twitter-bird.jade -------------------------------------------------------------------------------- /views/includes/svg/_twitter.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_twitter.jade -------------------------------------------------------------------------------- /views/includes/svg/_youtube.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/includes/svg/_youtube.jade -------------------------------------------------------------------------------- /views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/index.jade -------------------------------------------------------------------------------- /views/layouts/_general.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/layouts/_general.jade -------------------------------------------------------------------------------- /views/layouts/_single.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/layouts/_single.jade -------------------------------------------------------------------------------- /views/mixins/_author.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_author.jade -------------------------------------------------------------------------------- /views/mixins/_feed-home-item.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_feed-home-item.jade -------------------------------------------------------------------------------- /views/mixins/_feed-item.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_feed-item.jade -------------------------------------------------------------------------------- /views/mixins/_language-selector.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_language-selector.jade -------------------------------------------------------------------------------- /views/mixins/_nav.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_nav.jade -------------------------------------------------------------------------------- /views/mixins/_og-meta.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_og-meta.jade -------------------------------------------------------------------------------- /views/mixins/_related-post.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_related-post.jade -------------------------------------------------------------------------------- /views/mixins/_tracking-pixel.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_tracking-pixel.jade -------------------------------------------------------------------------------- /views/mixins/_twitter-meta.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/mixins/_twitter-meta.jade -------------------------------------------------------------------------------- /views/redirector.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/redirector.jade -------------------------------------------------------------------------------- /views/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel-android/androidhub/HEAD/views/robots.txt -------------------------------------------------------------------------------- /views/robots_disallow.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: / 3 | --------------------------------------------------------------------------------