├── .gitignore ├── teach.md ├── quality.md ├── assets └── android-sitemap-banner.png ├── subscribe.md ├── 11weeksofandroid.md ├── gamegenrereports.md ├── helpful-innovation.md ├── security.md ├── series.md ├── AUTHORS ├── ml.md ├── cars.md ├── news.md ├── samples.md ├── design.md ├── wear.md ├── chrome-os.md ├── sm.md ├── community-guidelines.md ├── contributing.md ├── tv.md ├── platform.md ├── modern-android-development.md ├── android11.md ├── dev-summit.md ├── privacy.md ├── podcasts.md ├── source-sm.md ├── work.md ├── newsletter.md ├── things.md ├── docs.md ├── google-play.md ├── courses.md ├── kotlin.md ├── codelabs.md ├── google.md ├── setup.md ├── README.md ├── stories.md ├── about.md └── ndk.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | desktop.ini -------------------------------------------------------------------------------- /teach.md: -------------------------------------------------------------------------------- 1 | ## [Teach](https://developer.android.com/teach/sitemap.xml) 2 | 3 | - https://developer.android.com/teach -------------------------------------------------------------------------------- /quality.md: -------------------------------------------------------------------------------- 1 | ## [Quality](https://developer.android.com/quality/sitemap.xml) 2 | 3 | - https://developer.android.com/quality -------------------------------------------------------------------------------- /assets/android-sitemap-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/androiddevnotes/android-sitemap/HEAD/assets/android-sitemap-banner.png -------------------------------------------------------------------------------- /subscribe.md: -------------------------------------------------------------------------------- 1 | ## [Subscribe](https://developer.android.com/subscribe/sitemap.xml) 2 | 3 | - https://developer.android.com/subscribe -------------------------------------------------------------------------------- /11weeksofandroid.md: -------------------------------------------------------------------------------- 1 | ## [11weeksofandroid](https://developer.android.com/11weeksofandroid/sitemap.xml) 2 | 3 | - https://developer.android.com/11weeksofandroid -------------------------------------------------------------------------------- /gamegenrereports.md: -------------------------------------------------------------------------------- 1 | ## [gamegenrereports](https://developer.android.com/gamegenrereports/sitemap.xml) 2 | 3 | - https://developer.android.com/gamegenrereports -------------------------------------------------------------------------------- /helpful-innovation.md: -------------------------------------------------------------------------------- 1 | ## [Helpful Innovation](https://developer.android.com/helpful-innovation/sitemap.xml) 2 | 3 | - https://developer.android.com/helpful-innovation 4 | -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- 1 | ## [Security](https://developer.android.com/security/sitemap.xml) 2 | 3 | - https://developer.android.com/security 4 | - https://developer.android.com/security/government -------------------------------------------------------------------------------- /series.md: -------------------------------------------------------------------------------- 1 | ## [Series](https://developer.android.com/series/sitemap.xml) 2 | 3 | - https://developer.android.com/series/now-in-android 4 | - https://developer.android.com/series/mad-skills -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | The open-source work on androiddevnotes is developed on the efforts of open source contributors. 2 | 3 | Here is a list of helpful contributors to the project. These contributors have contributed resources, translations and ideas to the project. 4 | 5 | This will forever be an incomplete list of contributors. 6 | -------------------------------------------------------------------------------- /ml.md: -------------------------------------------------------------------------------- 1 | ## [Machine Learning](https://developer.android.com/ml/sitemap.xml) 2 | 3 | - https://developer.android.com/ml 4 | - https://developer.android.com/ml?hl=id 5 | - https://developer.android.com/ml?hl=es_419 6 | - https://developer.android.com/ml?hl=ja 7 | - https://developer.android.com/ml?hl=zh_cn 8 | - https://developer.android.com/ml?hl=ko 9 | - https://developer.android.com/ml?hl=pt_br -------------------------------------------------------------------------------- /cars.md: -------------------------------------------------------------------------------- 1 | ## [Cars](https://developer.android.com/cars/sitemap.xml) 2 | 3 | - https://developer.android.com/cars 4 | - https://developer.android.com/cars?hl=id 5 | - https://developer.android.com/cars?hl=es_419 6 | - https://developer.android.com/cars?hl=pt_br 7 | - https://developer.android.com/cars?hl=ko 8 | - https://developer.android.com/cars?hl=zh_cn 9 | - https://developer.android.com/cars?hl=ja -------------------------------------------------------------------------------- /news.md: -------------------------------------------------------------------------------- 1 | ## [News](https://developer.android.com/news/sitemap.xml) 2 | 3 | - https://developer.android.com/news 4 | - https://developer.android.com/news?hl=id 5 | - https://developer.android.com/news?hl=es_419 6 | - https://developer.android.com/news?hl=pt_br 7 | - https://developer.android.com/news?hl=ko 8 | - https://developer.android.com/news?hl=zh_cn 9 | - https://developer.android.com/news?hl=ja -------------------------------------------------------------------------------- /samples.md: -------------------------------------------------------------------------------- 1 | ## [Samples](https://developer.android.com/samples/sitemap.xml) 2 | 3 | - https://developer.android.com/samples 4 | - https://developer.android.com/samples?hl=id 5 | - https://developer.android.com/samples?hl=es_419 6 | - https://developer.android.com/samples?hl=ja 7 | - https://developer.android.com/samples?hl=ko 8 | - https://developer.android.com/samples?hl=zh_cn 9 | - https://developer.android.com/samples?hl=pt_br -------------------------------------------------------------------------------- /design.md: -------------------------------------------------------------------------------- 1 | ## [Design](https://developer.android.com/design/sitemap.xml) 2 | 3 | - https://developer.android.com/design 4 | - https://developer.android.com/design?hl=zh_cn 5 | - https://developer.android.com/design?hl=es_419 6 | - https://developer.android.com/design?hl=id 7 | - https://developer.android.com/design?hl=ja 8 | - https://developer.android.com/design?hl=ko 9 | - https://developer.android.com/design?hl=pt_br 10 | -------------------------------------------------------------------------------- /wear.md: -------------------------------------------------------------------------------- 1 | ## [Wear](https://developer.android.com/wear/sitemap.xml) 2 | 3 | - https://developer.android.com/wear/releases 4 | - https://developer.android.com/wear 5 | - https://developer.android.com/wear?hl=es_419 6 | - https://developer.android.com/wear?hl=id 7 | - https://developer.android.com/wear?hl=ja 8 | - https://developer.android.com/wear?hl=ko 9 | - https://developer.android.com/wear?hl=zh_cn 10 | - https://developer.android.com/wear?hl=pt_br -------------------------------------------------------------------------------- /chrome-os.md: -------------------------------------------------------------------------------- 1 | ## [Chrome OS](https://developer.android.com/chrome-os/sitemap.xml) 2 | 3 | - https://developer.android.com/chrome-os/intro 4 | - https://developer.android.com/chrome-os 5 | - https://developer.android.com/chrome-os?hl=zh_cn 6 | - https://developer.android.com/chrome-os?hl=es_419 7 | - https://developer.android.com/chrome-os?hl=id 8 | - https://developer.android.com/chrome-os?hl=ja 9 | - https://developer.android.com/chrome-os?hl=ko 10 | - https://developer.android.com/chrome-os?hl=pt_br -------------------------------------------------------------------------------- /sm.md: -------------------------------------------------------------------------------- 1 | ## [General](https://developer.android.com/sm.xml) 2 | 3 | - https://developer.android.com/support 4 | - https://developer.android.com/googlee4a562d522c2a7af 5 | - https://developer.android.com/legal 6 | - https://developer.android.com/ 7 | - https://developer.android.com/?hl=es_419 8 | - https://developer.android.com/?hl=id 9 | - https://developer.android.com/?hl=ja 10 | - https://developer.android.com/?hl=ko 11 | - https://developer.android.com/?hl=pt_br 12 | - https://developer.android.com/?hl=zh_cn -------------------------------------------------------------------------------- /community-guidelines.md: -------------------------------------------------------------------------------- 1 | ## [Community Guidelines](https://developer.android.com/community-guidelines/sitemap.xml) 2 | 3 | - https://developer.android.com/community-guidelines 4 | - https://developer.android.com/community-guidelines?hl=ja 5 | - https://developer.android.com/community-guidelines?hl=zh-cn 6 | - https://developer.android.com/community-guidelines?hl=pt-br 7 | - https://developer.android.com/community-guidelines?hl=es-419 8 | - https://developer.android.com/community-guidelines?hl=ko 9 | - https://developer.android.com/community-guidelines?hl=id -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- 1 | # Contributing Guide 2 | 3 | ## How to contribute 4 | 5 | - Fork the project from the `main` branch and submit a Pull Request (PR) 6 | 7 | - Explain what the PR fixes or improves. 8 | 9 | - If your PR aims to add a new resource to list, provide the address of the resource. 10 | 11 | - Use sensible commit messages 12 | 13 | - If your PR fixes a separate issue number, include it in the commit message. 14 | 15 | - Use a sensible number of commit messages as well 16 | 17 | - e.g. Your PR should not have 1000s of commits. -------------------------------------------------------------------------------- /tv.md: -------------------------------------------------------------------------------- 1 | ## [TV](https://developer.android.com/tv/sitemap.xml) 2 | 3 | - https://developer.android.com/tv 4 | - https://developer.android.com/tv?hl=es_419 5 | - https://developer.android.com/tv?hl=id 6 | - https://developer.android.com/tv?hl=ja 7 | - https://developer.android.com/tv?hl=ko 8 | - https://developer.android.com/tv?hl=zh_cn 9 | - https://developer.android.com/tv?hl=pt_br 10 | - https://developer.android.com/tv/adt-1/regulatory 11 | - https://developer.android.com/tv/adt-2 12 | - https://developer.android.com/tv/adt-1 13 | - https://developer.android.com/tv/adt-1/safety 14 | -------------------------------------------------------------------------------- /platform.md: -------------------------------------------------------------------------------- 1 | ## [Platform](https://developer.android.com/platform/sitemap.xml) 2 | 3 | - https://developer.android.com/platform/technology/app-bundle 4 | - https://developer.android.com/platform/technology/app-bundle?hl=id 5 | - https://developer.android.com/platform/technology/app-bundle?hl=es_419 6 | - https://developer.android.com/platform/technology/app-bundle?hl=ja 7 | - https://developer.android.com/platform/technology/app-bundle?hl=zh_cn 8 | - https://developer.android.com/platform/technology/app-bundle?hl=ko 9 | - https://developer.android.com/platform/technology/app-bundle?hl=pt_br 10 | -------------------------------------------------------------------------------- /modern-android-development.md: -------------------------------------------------------------------------------- 1 | ## [Modern Android Development](https://developer.android.com/modern-android-development/sitemap.xml) 2 | 3 | - https://developer.android.com/modern-android-development 4 | - https://developer.android.com/modern-android-development?hl=id 5 | - https://developer.android.com/modern-android-development?hl=es-419 6 | - https://developer.android.com/modern-android-development?hl=ja 7 | - https://developer.android.com/modern-android-development?hl=ko 8 | - https://developer.android.com/modern-android-development?hl=pt-br 9 | - https://developer.android.com/modern-android-development?hl=zh-cn -------------------------------------------------------------------------------- /android11.md: -------------------------------------------------------------------------------- 1 | ## [android11](https://developer.android.com/android11/sitemap.xml) 2 | 3 | - https://developer.android.com/android11 4 | - https://developer.android.com/android11?hl=pt-br 5 | - https://developer.android.com/android11?hl=zh-cn 6 | - https://developer.android.com/android11?hl=ko 7 | - https://developer.android.com/android11?hl=ja 8 | - https://developer.android.com/android11?hl=id 9 | - https://developer.android.com/android11?hl=es-419 10 | - https://developer.android.com/android11/meetups 11 | - https://developer.android.com/android11/meetups?hl=pt-br 12 | - https://developer.android.com/android11/meetups?hl=es-419 13 | - https://developer.android.com/android11/meetups?hl=ja 14 | - https://developer.android.com/android11/meetups?hl=zh-cn 15 | - https://developer.android.com/android11/meetups?hl=id 16 | - https://developer.android.com/android11/meetups?hl=ko -------------------------------------------------------------------------------- /dev-summit.md: -------------------------------------------------------------------------------- 1 | ## [Dev Summit](https://developer.android.com/dev-summit/sitemap.xml) 2 | 3 | - https://developer.android.com/dev-summit 4 | - https://developer.android.com/dev-summit?hl=id 5 | - https://developer.android.com/dev-summit?hl=es_419 6 | - https://developer.android.com/dev-summit?hl=pt_br 7 | - https://developer.android.com/dev-summit?hl=ko 8 | - https://developer.android.com/dev-summit?hl=zh_cn 9 | - https://developer.android.com/dev-summit?hl=ja 10 | - https://developer.android.com/dev-summit/schedule/day1 11 | - https://developer.android.com/dev-summit/community-guidelines 12 | - https://developer.android.com/dev-summit/schedule/day2 13 | - https://developer.android.com/dev-summit/attending 14 | - https://developer.android.com/dev-summit/schedule/agenda 15 | - https://developer.android.com/dev-summit/faq 16 | - https://developer.android.com/dev-summit/speakers -------------------------------------------------------------------------------- /privacy.md: -------------------------------------------------------------------------------- 1 | ## [Privacy](https://developer.android.com/privacy/sitemap.xml) 2 | 3 | - https://developer.android.com/privacy 4 | - https://developer.android.com/privacy?hl=ko 5 | - https://developer.android.com/privacy?hl=es_419 6 | - https://developer.android.com/privacy?hl=ja 7 | - https://developer.android.com/privacy?hl=pt_br 8 | - https://developer.android.com/privacy?hl=id 9 | - https://developer.android.com/privacy?hl=zh_cn 10 | - https://developer.android.com/privacy/best-practices 11 | - https://developer.android.com/privacy/best-practices?hl=ko 12 | - https://developer.android.com/privacy/best-practices?hl=es_419 13 | - https://developer.android.com/privacy/best-practices?hl=ja 14 | - https://developer.android.com/privacy/best-practices?hl=pt_br 15 | - https://developer.android.com/privacy/best-practices?hl=id 16 | - https://developer.android.com/privacy/best-practices?hl=zh_cn -------------------------------------------------------------------------------- /podcasts.md: -------------------------------------------------------------------------------- 1 | ## [Podcasts](https://developer.android.com/podcasts/sitemap.xml) 2 | 3 | - https://developer.android.com/podcasts/apps-games-insights/developing-for-equality-and-building-inclusive-apps 4 | - https://developer.android.com/podcasts/apps-games-insights/embracing-innovation-by-building-privacy-friendly-apps 5 | - https://developer.android.com/podcasts/apps-games-insights/from-startup-to-global-growth-insights-from-a-vc-expert 6 | - https://developer.android.com/podcasts/apps-games-insights/responsible-growth-for-the-long-term 7 | - https://developer.android.com/podcasts/apps-games-insights 8 | - https://developer.android.com/podcasts/apps-games-insights/archive 9 | - https://developer.android.com/podcasts/apps-games-insights/the-players-first-approach-to-gaming 10 | - https://developer.android.com/podcasts/apps-games-insights/playing-the-long-game-for-a-happy-ma-marriage 11 | - https://developer.android.com/podcasts/apps-games-insights/introduction-to-series-one 12 | - https://developer.android.com/podcasts/apps-games-insights/winning-as-a-subscription-business 13 | - https://developer.android.com/podcasts/apps-games-insights/building-for-larger-screens-and-better-game-experiences 14 | - https://developer.android.com/podcasts/apps-games-insights/the-new-normal 15 | - https://developer.android.com/podcasts/apps-games-insights/how-to-green-up-your-gaming 16 | - https://developer.android.com/podcasts/apps-games-insights/building-apps-for-everyone-inclusivity-and-accessibility 17 | - https://developer.android.com/podcasts/apps-games-insights/succeeding-in-4x-strategy-games 18 | -------------------------------------------------------------------------------- /source-sm.md: -------------------------------------------------------------------------------- 1 | ## [SM](https://source.android.com/sm.xml) 2 | 3 | - https://source.android.com/ 4 | - https://source.android.com/?hl=zh-cn 5 | - https://source.android.com/?hl=ja 6 | - https://source.android.com/?hl=ko 7 | - https://source.android.com/google907da27e715eab07 8 | - https://source.android.com/google907da27e715eab07?hl=zh-cn 9 | - https://source.android.com/google907da27e715eab07?hl=ru 10 | - https://source.android.com/google907da27e715eab07?hl=fr 11 | - https://source.android.com/google907da27e715eab07?hl=hi 12 | - https://source.android.com/google907da27e715eab07?hl=he 13 | - https://source.android.com/google907da27e715eab07?hl=tr 14 | - https://source.android.com/google907da27e715eab07?hl=de 15 | - https://source.android.com/google907da27e715eab07?hl=th 16 | - https://source.android.com/google907da27e715eab07?hl=ar 17 | - https://source.android.com/google907da27e715eab07?hl=id 18 | - https://source.android.com/google907da27e715eab07?hl=ja 19 | - https://source.android.com/google907da27e715eab07?hl=fa 20 | - https://source.android.com/google907da27e715eab07?hl=zh-tw 21 | - https://source.android.com/google907da27e715eab07?hl=pt-br 22 | - https://source.android.com/google907da27e715eab07?hl=vi 23 | - https://source.android.com/google907da27e715eab07?hl=it 24 | - https://source.android.com/google907da27e715eab07?hl=bn 25 | - https://source.android.com/google907da27e715eab07?hl=es-419 26 | - https://source.android.com/google907da27e715eab07?hl=pl 27 | - https://source.android.com/google907da27e715eab07?hl=ko 28 | - https://source.android.com/license 29 | - https://source.android.com/license?hl=zh-cn 30 | - https://source.android.com/license?hl=ru 31 | - https://source.android.com/license?hl=fr 32 | - https://source.android.com/license?hl=hi 33 | - https://source.android.com/license?hl=he 34 | - https://source.android.com/license?hl=tr 35 | - https://source.android.com/license?hl=de 36 | - https://source.android.com/license?hl=th 37 | - https://source.android.com/license?hl=ar 38 | - https://source.android.com/license?hl=id 39 | - https://source.android.com/license?hl=ja 40 | - https://source.android.com/license?hl=fa 41 | - https://source.android.com/license?hl=zh-tw 42 | - https://source.android.com/license?hl=pt-br 43 | - https://source.android.com/license?hl=vi 44 | - https://source.android.com/license?hl=it 45 | - https://source.android.com/license?hl=bn 46 | - https://source.android.com/license?hl=es-419 47 | - https://source.android.com/license?hl=pl 48 | - https://source.android.com/license?hl=ko 49 | - https://source.android.com/legal 50 | - https://source.android.com/legal?hl=zh_cn -------------------------------------------------------------------------------- /work.md: -------------------------------------------------------------------------------- 1 | ## [Work](https://developer.android.com/work/sitemap.xml) 2 | 3 | - https://developer.android.com/work/dpc/dedicated-devices/cookbook 4 | - https://developer.android.com/work/dpc/dedicated-devices/lock-task-mode 5 | - https://developer.android.com/work/dpc/system-updates 6 | - https://developer.android.com/work/versions/android-10 7 | - https://developer.android.com/work/overview 8 | - https://developer.android.com/work/guide 9 | - https://developer.android.com/work/versions/android-8.0 10 | - https://developer.android.com/work 11 | - https://developer.android.com/work?hl=id 12 | - https://developer.android.com/work?hl=es_419 13 | - https://developer.android.com/work?hl=pt_br 14 | - https://developer.android.com/work?hl=ko 15 | - https://developer.android.com/work?hl=zh_cn 16 | - https://developer.android.com/work?hl=ja 17 | - https://developer.android.com/work/managed-configurations 18 | - https://developer.android.com/work/dpc/dedicated-devices 19 | - https://developer.android.com/work/dpc/network-telephony 20 | - https://developer.android.com/work/dpc/device-management 21 | - https://developer.android.com/work/versions/android-9.0 22 | - https://developer.android.com/work/app-feedback/overview 23 | - https://developer.android.com/work/versions 24 | - https://developer.android.com/work/versions?hl=es_419 25 | - https://developer.android.com/work/versions?hl=id 26 | - https://developer.android.com/work/versions?hl=ja 27 | - https://developer.android.com/work/versions?hl=ko 28 | - https://developer.android.com/work/versions?hl=zh_cn 29 | - https://developer.android.com/work/versions?hl=pt_br 30 | - https://developer.android.com/work/versions/android-7.0 31 | - https://developer.android.com/work/device-management-policy 32 | - https://developer.android.com/work/app-feedback/testing 33 | - https://developer.android.com/work/dpc/security 34 | - https://developer.android.com/work/dpc/logging 35 | - https://developer.android.com/work/dpc/dedicated-devices/multiple-users 36 | - https://developer.android.com/work/contacts 37 | - https://developer.android.com/work/versions/android-11 38 | - https://developer.android.com/work/versions/android-11?hl=pt-br 39 | - https://developer.android.com/work/versions/android-11?hl=es-419 40 | - https://developer.android.com/work/versions/android-11?hl=id 41 | - https://developer.android.com/work/versions/android-11?hl=ko 42 | - https://developer.android.com/work/versions/android-11?hl=ja 43 | - https://developer.android.com/work/versions/android-11?hl=zh-cn 44 | - https://developer.android.com/work/dpc/build-dpc 45 | - https://developer.android.com/work/managed-profiles -------------------------------------------------------------------------------- /newsletter.md: -------------------------------------------------------------------------------- 1 | ## [newsletter](https://developer.android.com/newsletter/sitemap.xml) 2 | 3 | - https://developer.android.com/newsletter/play-monthly/2020/05 4 | - https://developer.android.com/newsletter 5 | - https://developer.android.com/newsletter?hl=ja 6 | - https://developer.android.com/newsletter?hl=es-419 7 | - https://developer.android.com/newsletter?hl=id 8 | - https://developer.android.com/newsletter?hl=zh-cn 9 | - https://developer.android.com/newsletter?hl=ko 10 | - https://developer.android.com/newsletter?hl=pt-br 11 | - https://developer.android.com/newsletter/play-monthly/2019/03 12 | - https://developer.android.com/newsletter/android-dev/2020/09 13 | - https://developer.android.com/newsletter/android-dev/2020/07-1 14 | - https://developer.android.com/newsletter/games-quarterly/2019/Q2 15 | - https://developer.android.com/newsletter/android-dev/2020/05-1 16 | - https://developer.android.com/newsletter/android-dev/2020/10 17 | - https://developer.android.com/newsletter/play-monthly/2019/12 18 | - https://developer.android.com/newsletter/android-dev/2019/10 19 | - https://developer.android.com/newsletter/android-dev/2020/06-1 20 | - https://developer.android.com/newsletter/games-quarterly/2019/Q3 21 | - https://developer.android.com/newsletter/play-monthly/2020/03 22 | - https://developer.android.com/newsletter/android-dev/2020/04 23 | - https://developer.android.com/newsletter/android-dev/2020/08-2 24 | - https://developer.android.com/newsletter/play-monthly/2020/01 25 | - https://developer.android.com/newsletter/play-monthly/2019/10 26 | - https://developer.android.com/newsletter/android-dev/2020/08-1 27 | - https://developer.android.com/newsletter/play-monthly/2019/06 28 | - https://developer.android.com/newsletter/games-quarterly/2020/Q2 29 | - https://developer.android.com/newsletter/games-quarterly/2020/Q3 30 | - https://developer.android.com/newsletter/play-monthly/2019/02 31 | - https://developer.android.com/newsletter/play-monthly/2019/01 32 | - https://developer.android.com/newsletter/play-monthly/2019/07 33 | - https://developer.android.com/newsletter/play-monthly/2020/07 34 | - https://developer.android.com/newsletter/games-quarterly/2020/Q1 35 | - https://developer.android.com/newsletter/play-monthly/2019/05 36 | - https://developer.android.com/newsletter/games-quarterly/2019/Q4 37 | - https://developer.android.com/newsletter/play-monthly/2019/11 38 | - https://developer.android.com/newsletter/android-dev/2020/02 39 | - https://developer.android.com/newsletter/play-monthly/2019/04 40 | - https://developer.android.com/newsletter/android-dev/2020/01 41 | - https://developer.android.com/newsletter/play-monthly/2020/09 42 | - https://developer.android.com/newsletter/play-monthly/2020/04 43 | - https://developer.android.com/newsletter/play-monthly/2020/10 44 | - https://developer.android.com/newsletter/play-monthly/2020/08 45 | - https://developer.android.com/newsletter/play-monthly/2020/02 46 | - https://developer.android.com/newsletter/android-dev/2019/09 47 | - https://developer.android.com/newsletter/games-quarterly/2019/Q1 48 | - https://developer.android.com/newsletter/play-monthly/2019/08 49 | - https://developer.android.com/newsletter/play-monthly/2019/09 50 | - https://developer.android.com/newsletter/android-dev/2019/11 51 | - https://developer.android.com/newsletter/android-dev/2020/06-2 52 | - https://developer.android.com/newsletter/android-dev/2020/05-2 53 | - https://developer.android.com/newsletter/play-monthly/2020/06 54 | - https://developer.android.com/newsletter/android-dev/2020/07-2 -------------------------------------------------------------------------------- /things.md: -------------------------------------------------------------------------------- 1 | ## [Things](https://developer.android.com/things/sitemap.xml) 2 | 3 | - https://developer.android.com/things/faq 4 | - https://developer.android.com/things/hardware/wifi-adb 5 | - https://developer.android.com/things/sdk/pio 6 | - https://developer.android.com/things/community 7 | - https://developer.android.com/things/training/first-device/connect-hardware 8 | - https://developer.android.com/things/console/manage-apps 9 | - https://developer.android.com/things/sdk/pio/uart 10 | - https://developer.android.com/things/sdk/apis/lowpan 11 | - https://developer.android.com/things/sdk/drivers/lowpan 12 | - https://developer.android.com/things/sdk/apis/native 13 | - https://developer.android.com/things/sdk/pio/pwm 14 | - https://developer.android.com/things/sdk/guides 15 | - https://developer.android.com/things/versions/things-1.0 16 | - https://developer.android.com/things/sdk/drivers/location 17 | - https://developer.android.com/things/get-started/kits 18 | - https://developer.android.com/things/get-started/platform-differences 19 | - https://developer.android.com/things/sdk/drivers/input 20 | - https://developer.android.com/things/sdk/apis/settings 21 | - https://developer.android.com/things/get-started 22 | - https://developer.android.com/things/training/first-device 23 | - https://developer.android.com/things/console/configure 24 | - https://developer.android.com/things/hardware/fastboot 25 | - https://developer.android.com/things/sdk/apis/bluetooth 26 | - https://developer.android.com/things/sdk/pio/native 27 | - https://developer.android.com/things/sdk/drivers 28 | - https://developer.android.com/things/console 29 | - https://developer.android.com/things/hardware/imx7d 30 | - https://developer.android.com/things/sdk/drivers/sensors 31 | - https://developer.android.com/things/console/autoupdate 32 | - https://developer.android.com/things/sdk/pio/i2c 33 | - https://developer.android.com/things/versions/releases 34 | - https://developer.android.com/things/versions/releases?hl=pt_br 35 | - https://developer.android.com/things/versions/releases?hl=ko 36 | - https://developer.android.com/things/versions/releases?hl=ja 37 | - https://developer.android.com/things/versions/releases?hl=es_419 38 | - https://developer.android.com/things/versions/releases?hl=id 39 | - https://developer.android.com/things/versions/releases?hl=zh_cn 40 | - https://developer.android.com/things/console/update 41 | - https://developer.android.com/things/sdk/apis/update 42 | - https://developer.android.com/things/training/first-device/drivers 43 | - https://developer.android.com/things/sdk/pio/gpio 44 | - https://developer.android.com/things/hardware/bootloader 45 | - https://developer.android.com/things/console/build 46 | - https://developer.android.com/things/training/first-device/peripherals 47 | - https://developer.android.com/things/hardware/raspberrypi 48 | - https://developer.android.com/things/terms 49 | - https://developer.android.com/things/sdk/pio/pio-cli 50 | - https://developer.android.com/things/sdk/pio/spi 51 | - https://developer.android.com/things/hardware/advanced-setup 52 | - https://developer.android.com/things/console/analytics 53 | - https://developer.android.com/things 54 | - https://developer.android.com/things?hl=id 55 | - https://developer.android.com/things?hl=es_419 56 | - https://developer.android.com/things?hl=ja 57 | - https://developer.android.com/things?hl=ko 58 | - https://developer.android.com/things?hl=zh_cn 59 | - https://developer.android.com/things?hl=pt_br 60 | - https://developer.android.com/things/console/create 61 | - https://developer.android.com/things/hardware 62 | - https://developer.android.com/things/terms/console 63 | - https://developer.android.com/things/get-started/google-services 64 | - https://developer.android.com/things/training/first-device/create-studio-project -------------------------------------------------------------------------------- /docs.md: -------------------------------------------------------------------------------- 1 | ## [Docs](https://developer.android.com/docs/sitemap.xml) 2 | 3 | - https://developer.android.com/docs/quality-guidelines/car-app-quality 4 | - https://developer.android.com/docs/quality-guidelines/car-app-quality?hl=zh-cn 5 | - https://developer.android.com/docs/quality-guidelines/car-app-quality?hl=ja 6 | - https://developer.android.com/docs/quality-guidelines/car-app-quality?hl=id 7 | - https://developer.android.com/docs/quality-guidelines/car-app-quality?hl=ko 8 | - https://developer.android.com/docs/quality-guidelines/car-app-quality?hl=pt-br 9 | - https://developer.android.com/docs/quality-guidelines/car-app-quality?hl=es-419 10 | - https://developer.android.com/docs/quality-guidelines/build-for-billions 11 | - https://developer.android.com/docs/quality-guidelines/build-for-billions/ui 12 | - https://developer.android.com/docs 13 | - https://developer.android.com/docs?hl=zh_cn 14 | - https://developer.android.com/docs?hl=es_419 15 | - https://developer.android.com/docs?hl=id 16 | - https://developer.android.com/docs?hl=ja 17 | - https://developer.android.com/docs?hl=ko 18 | - https://developer.android.com/docs?hl=pt_br 19 | - https://developer.android.com/docs/quality-guidelines/wear-app-quality 20 | - https://developer.android.com/docs/quality-guidelines/wear-app-quality?hl=zh-cn 21 | - https://developer.android.com/docs/quality-guidelines/wear-app-quality?hl=es-419 22 | - https://developer.android.com/docs/quality-guidelines/wear-app-quality?hl=id 23 | - https://developer.android.com/docs/quality-guidelines/wear-app-quality?hl=ja 24 | - https://developer.android.com/docs/quality-guidelines/wear-app-quality?hl=ko 25 | - https://developer.android.com/docs/quality-guidelines/wear-app-quality?hl=pt-br 26 | - https://developer.android.com/docs/quality-guidelines/build-for-billions/device-capacity 27 | - https://developer.android.com/docs/quality-guidelines/tablet-app-quality 28 | - https://developer.android.com/docs/quality-guidelines/tablet-app-quality?hl=zh-cn 29 | - https://developer.android.com/docs/quality-guidelines/tablet-app-quality?hl=es-419 30 | - https://developer.android.com/docs/quality-guidelines/tablet-app-quality?hl=id 31 | - https://developer.android.com/docs/quality-guidelines/tablet-app-quality?hl=ja 32 | - https://developer.android.com/docs/quality-guidelines/tablet-app-quality?hl=ko 33 | - https://developer.android.com/docs/quality-guidelines/tablet-app-quality?hl=pt-br 34 | - https://developer.android.com/docs/quality-guidelines/build-for-billions/data-cost 35 | - https://developer.android.com/docs/quality-guidelines/core-app-quality 36 | - https://developer.android.com/docs/quality-guidelines/core-app-quality?hl=zh-cn 37 | - https://developer.android.com/docs/quality-guidelines/core-app-quality?hl=es-419 38 | - https://developer.android.com/docs/quality-guidelines/core-app-quality?hl=id 39 | - https://developer.android.com/docs/quality-guidelines/core-app-quality?hl=ja 40 | - https://developer.android.com/docs/quality-guidelines/core-app-quality?hl=ko 41 | - https://developer.android.com/docs/quality-guidelines/core-app-quality?hl=pt-br 42 | - https://developer.android.com/docs/quality-guidelines 43 | - https://developer.android.com/docs/quality-guidelines?hl=zh_cn 44 | - https://developer.android.com/docs/quality-guidelines?hl=es_419 45 | - https://developer.android.com/docs/quality-guidelines?hl=id 46 | - https://developer.android.com/docs/quality-guidelines?hl=ja 47 | - https://developer.android.com/docs/quality-guidelines?hl=ko 48 | - https://developer.android.com/docs/quality-guidelines?hl=pt_br 49 | - https://developer.android.com/docs/quality-guidelines/tv-app-quality 50 | - https://developer.android.com/docs/quality-guidelines/tv-app-quality?hl=zh-cn 51 | - https://developer.android.com/docs/quality-guidelines/tv-app-quality?hl=es-419 52 | - https://developer.android.com/docs/quality-guidelines/tv-app-quality?hl=id 53 | - https://developer.android.com/docs/quality-guidelines/tv-app-quality?hl=ja 54 | - https://developer.android.com/docs/quality-guidelines/tv-app-quality?hl=ko 55 | - https://developer.android.com/docs/quality-guidelines/tv-app-quality?hl=pt-br 56 | - https://developer.android.com/docs/quality-guidelines/build-for-billions/battery-consumption 57 | - https://developer.android.com/docs/quality-guidelines/build-for-billions/connectivity -------------------------------------------------------------------------------- /google-play.md: -------------------------------------------------------------------------------- 1 | ## [Google Play](https://developer.android.com/google-play/sitemap.xml) 2 | 3 | - https://developer.android.com/google-play/resources/icon-design-specifications 4 | - https://developer.android.com/google-play/resources/icon-design-specifications?hl=es-419 5 | - https://developer.android.com/google-play/resources/icon-design-specifications?hl=zh-cn 6 | - https://developer.android.com/google-play/resources/icon-design-specifications?hl=id 7 | - https://developer.android.com/google-play/resources/icon-design-specifications?hl=ja 8 | - https://developer.android.com/google-play/resources/icon-design-specifications?hl=ko 9 | - https://developer.android.com/google-play/resources/icon-design-specifications?hl=pt-br 10 | - https://developer.android.com/google-play/guides/subscriptions 11 | - https://developer.android.com/google-play/guides/subscriptions?hl=es_419 12 | - https://developer.android.com/google-play/guides/subscriptions?hl=zh_cn 13 | - https://developer.android.com/google-play/guides/subscriptions?hl=id 14 | - https://developer.android.com/google-play/guides/subscriptions?hl=ja 15 | - https://developer.android.com/google-play/guides/subscriptions?hl=ko 16 | - https://developer.android.com/google-play/guides/subscriptions?hl=pt_br 17 | - https://developer.android.com/google-play/guides/families 18 | - https://developer.android.com/google-play/guides/families?hl=es-419 19 | - https://developer.android.com/google-play/guides/families?hl=zh-cn 20 | - https://developer.android.com/google-play/guides/families?hl=id 21 | - https://developer.android.com/google-play/guides/families?hl=ja 22 | - https://developer.android.com/google-play/guides/families?hl=ko 23 | - https://developer.android.com/google-play/guides/families?hl=pt-br 24 | - https://developer.android.com/google-play/guides/indie-games 25 | - https://developer.android.com/google-play/guides/indie-games?hl=es_419 26 | - https://developer.android.com/google-play/guides/indie-games?hl=zh_cn 27 | - https://developer.android.com/google-play/guides/indie-games?hl=id 28 | - https://developer.android.com/google-play/guides/indie-games?hl=ja 29 | - https://developer.android.com/google-play/guides/indie-games?hl=ko 30 | - https://developer.android.com/google-play/guides/indie-games?hl=pt_br 31 | - https://developer.android.com/google-play/guides/android-go-edition 32 | - https://developer.android.com/google-play/guides/android-go-edition?hl=es-419 33 | - https://developer.android.com/google-play/guides/android-go-edition?hl=zh-cn 34 | - https://developer.android.com/google-play/guides/android-go-edition?hl=id 35 | - https://developer.android.com/google-play/guides/android-go-edition?hl=ja 36 | - https://developer.android.com/google-play/guides/android-go-edition?hl=ko 37 | - https://developer.android.com/google-play/guides/android-go-edition?hl=pt-br 38 | - https://developer.android.com/google-play/academy 39 | - https://developer.android.com/google-play/academy?hl=es-419 40 | - https://developer.android.com/google-play/academy?hl=zh-cn 41 | - https://developer.android.com/google-play/academy?hl=id 42 | - https://developer.android.com/google-play/academy?hl=ja 43 | - https://developer.android.com/google-play/academy?hl=ko 44 | - https://developer.android.com/google-play/academy?hl=pt-br 45 | - https://developer.android.com/google-play/guides/startups 46 | - https://developer.android.com/google-play/guides/startups?hl=es_419 47 | - https://developer.android.com/google-play/guides/startups?hl=zh_cn 48 | - https://developer.android.com/google-play/guides/startups?hl=id 49 | - https://developer.android.com/google-play/guides/startups?hl=ja 50 | - https://developer.android.com/google-play/guides/startups?hl=ko 51 | - https://developer.android.com/google-play/guides/startups?hl=pt_br 52 | - https://developer.android.com/google-play/guides/play-pass 53 | - https://developer.android.com/google-play/guides/play-pass?hl=pt-br 54 | - https://developer.android.com/google-play/guides/play-pass?hl=ja 55 | - https://developer.android.com/google-play/guides/play-pass?hl=ko 56 | - https://developer.android.com/google-play/guides/play-pass?hl=es-419 57 | - https://developer.android.com/google-play/guides/play-pass?hl=id 58 | - https://developer.android.com/google-play/guides/play-pass?hl=zh-cn 59 | - https://developer.android.com/google-play/guides/teacher-approved-apps 60 | - https://developer.android.com/google-play/guides/teacher-approved-apps?hl=ko 61 | - https://developer.android.com/google-play/guides/teacher-approved-apps?hl=pt-br 62 | - https://developer.android.com/google-play/guides/teacher-approved-apps?hl=zh-cn 63 | - https://developer.android.com/google-play/guides/teacher-approved-apps?hl=id 64 | - https://developer.android.com/google-play/guides/teacher-approved-apps?hl=ja 65 | - https://developer.android.com/google-play/guides/teacher-approved-apps?hl=es-419 -------------------------------------------------------------------------------- /courses.md: -------------------------------------------------------------------------------- 1 | ## [Courses](https://developer.android.com/courses/sitemap.xml) 2 | 3 | - https://developer.android.com/courses/pathways/android-week7-developer-tools 4 | - https://developer.android.com/courses/quizzes/compose/android-11-week-11-2 5 | - https://developer.android.com/courses/advanced-training/overview 6 | - https://developer.android.com/courses/quizzes/android-basics-kotlin-unit-2-pathway-1/android-basics-kotlin-unit-2-pathway-1 7 | - https://developer.android.com/courses 8 | - https://developer.android.com/courses?hl=id 9 | - https://developer.android.com/courses?hl=es_419 10 | - https://developer.android.com/courses?hl=pt_br 11 | - https://developer.android.com/courses?hl=ko 12 | - https://developer.android.com/courses?hl=zh_cn 13 | - https://developer.android.com/courses?hl=ja 14 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-two/kotlin-fundamentals-two 15 | - https://developer.android.com/courses/kotlin-android-advanced/overview 16 | - https://developer.android.com/courses/quizzes/android-week4-compatibility/android-11-week-4 17 | - https://developer.android.com/courses/quizzes/android-basics-kotlin-unit-2-pathway-2/android-basics-kotlin-unit-2-pathway-2 18 | - https://developer.android.com/courses/pathways/android-week11-modern-ui 19 | - https://developer.android.com/courses/pathways/android-basics-kotlin-one 20 | - https://developer.android.com/courses/pathways/android-week5-languages 21 | - https://developer.android.com/courses/android-basics-kotlin/course 22 | - https://developer.android.com/courses/kotlin-bootcamp/overview 23 | - https://developer.android.com/courses/quizzes/android-week10-games-and-media/android-11-week-10 24 | - https://developer.android.com/courses/kotlin-fundamentals/course 25 | - https://developer.android.com/courses/quizzes/kotlin-for-java/kotlin-for-java-developers 26 | - https://developer.android.com/courses/pathways/android-week8-app-distribution-monetization 27 | - https://developer.android.com/courses/advanced-training/toc 28 | - https://developer.android.com/courses/kotlin-fundamentals/unit-2 29 | - https://developer.android.com/courses/pathways/android-week3-privacy-trust-security 30 | - https://developer.android.com/courses/unit/kotlin-basics-unit-1 31 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-nine/kotlin-fundamentals-nine 32 | - https://developer.android.com/courses/topics/android-11-weeks 33 | - https://developer.android.com/courses/quizzes/android-coroutines/use-coroutines-common-android-cases 34 | - https://developer.android.com/courses/quizzes/android-week2-machine-learning/android-11-week-2 35 | - https://developer.android.com/courses/pathways/android-week2-machine-learning 36 | - https://developer.android.com/courses/pathways/kotlin-for-java 37 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-five/kotlin-fundamentals-five 38 | - https://developer.android.com/courses/pathways/android-basics-kotlin-unit-2-pathway-2 39 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-four/kotlin-fundamentals-four 40 | - https://developer.android.com/courses/kotlin-android-fundamentals/overview 41 | - https://developer.android.com/courses/pathways/android-week6-jetpack 42 | - https://developer.android.com/courses/pathways/location-based-features-in-android 43 | - https://developer.android.com/courses/quizzes/android-week5-languages/android-11-week-5 44 | - https://developer.android.com/courses/quizzes/android-week8-app-distribution-monetization/android-11-week-8 45 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-one/kotlin-fundamentals-one 46 | - https://developer.android.com/courses/pathways/android-week1-people-identity 47 | - https://developer.android.com/courses/extras/multithreading 48 | - https://developer.android.com/courses/quizzes/android-basics-kotlin-one/android-basics-kotlin-pathway-one 49 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-seven/kotlin-fundamentals-seven 50 | - https://developer.android.com/courses/quizzes/android-week11-modern-ui/android-11-week-11-1 51 | - https://developer.android.com/courses/pathways/android-basics-kotlin-four 52 | - https://developer.android.com/courses/fundamentals-training/overview-v2 53 | - https://developer.android.com/courses/quizzes/android-week3-privacy-trust-security/android-11-week-3 54 | - https://developer.android.com/courses/quizzes/android-kotlin-fundamental 55 | - https://developer.android.com/courses/pathways/compose 56 | - https://developer.android.com/courses/kotlin-android-fundamentals/toc 57 | - https://developer.android.com/courses/quizzes/android-week9-android-tv/android-11-week-9-1 58 | - https://developer.android.com/courses/pathways/android-basics-kotlin-unit-2-pathway-1 59 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-six/kotlin-fundamentals-six 60 | - https://developer.android.com/courses/pathways/android-coroutines 61 | - https://developer.android.com/courses/android-basics-kotlin/kotlin-quick-guide 62 | - https://developer.android.com/courses/android-basics-kotlin/unit-1 63 | - https://developer.android.com/courses/pathways/android-week10-games-and-media 64 | - https://developer.android.com/courses/kotlin-android-advanced/toc 65 | - https://developer.android.com/courses/quizzes/android-basics-kotlin-three/android-basics-kotlin-pathway-three 66 | - https://developer.android.com/courses/basic-android-kotlin-training/overview 67 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-three/kotlin-fundamentals-three 68 | - https://developer.android.com/courses/pathways/android-basics-kotlin-three 69 | - https://developer.android.com/courses/quizzes/location-based-features-in-android/location-based-android 70 | - https://developer.android.com/courses/pathways/android-basics-kotlin-two 71 | - https://developer.android.com/courses/pathways/mdc-kotlin 72 | - https://developer.android.com/courses/pathways/android-week4-compatibility 73 | - https://developer.android.com/courses/extras/sql-primer 74 | - https://developer.android.com/courses/quizzes/android-week9-large-screens/android-11-week-9-2 75 | - https://developer.android.com/courses/quizzes/android-basics-kotlin-four/android-basics-kotlin-pathway-four 76 | - https://developer.android.com/courses/android-basics-kotlin/unit-2 77 | - https://developer.android.com/courses/quizzes/android-week7-developer-tools/android-11-week-7 78 | - https://developer.android.com/courses/quizzes/android-week1-people-identity/android-11-week-1 79 | - https://developer.android.com/courses/pathways/android-week9-large-screens 80 | - https://developer.android.com/courses/quizzes/android-week6-jetpack/android-11-week-6 81 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-eight/kotlin-fundamentals-eight 82 | - https://developer.android.com/courses/kotlin-fundamentals/unit-1 83 | - https://developer.android.com/courses/extras/utilities 84 | - https://developer.android.com/courses/fundamentals-training/toc-v2 85 | - https://developer.android.com/courses/pathways/android-week9-android-tv 86 | - https://developer.android.com/courses/quizzes/kotlin-fundamentals-ten/kotlin-fundamentals-ten 87 | - https://developer.android.com/courses/quizzes/android-basics-kotlin-two/android-basics-kotlin-pathway-two 88 | - https://developer.android.com/courses/android-basics-kotlin/android-basics-kotlin-vocab 89 | - https://developer.android.com/courses/extras/overview -------------------------------------------------------------------------------- /kotlin.md: -------------------------------------------------------------------------------- 1 | ## [Kotlin](https://developer.android.com/kotlin/sitemap.xml) 2 | 3 | - https://developer.android.com/kotlin/already-using-resources 4 | - https://developer.android.com/kotlin/already-using-resources?hl=pt-br 5 | - https://developer.android.com/kotlin/already-using-resources?hl=es-419 6 | - https://developer.android.com/kotlin/already-using-resources?hl=zh-cn 7 | - https://developer.android.com/kotlin/already-using-resources?hl=ja 8 | - https://developer.android.com/kotlin/already-using-resources?hl=ko 9 | - https://developer.android.com/kotlin/already-using-resources?hl=id 10 | - https://developer.android.com/kotlin/get-certified 11 | - https://developer.android.com/kotlin/get-certified?hl=pt-br 12 | - https://developer.android.com/kotlin/get-certified?hl=es-419 13 | - https://developer.android.com/kotlin/get-certified?hl=zh-cn 14 | - https://developer.android.com/kotlin/get-certified?hl=ja 15 | - https://developer.android.com/kotlin/get-certified?hl=ko 16 | - https://developer.android.com/kotlin/get-certified?hl=id 17 | - https://developer.android.com/kotlin/learn-kotlin-java-pathway 18 | - https://developer.android.com/kotlin/learn-kotlin-java-pathway?hl=es-419 19 | - https://developer.android.com/kotlin/learn-kotlin-java-pathway?hl=ja 20 | - https://developer.android.com/kotlin/learn-kotlin-java-pathway?hl=ko 21 | - https://developer.android.com/kotlin/learn-kotlin-java-pathway?hl=pt-br 22 | - https://developer.android.com/kotlin/learn-kotlin-java-pathway?hl=zh-cn 23 | - https://developer.android.com/kotlin/learn-kotlin-java-pathway?hl=id 24 | - https://developer.android.com/kotlin 25 | - https://developer.android.com/kotlin?hl=id 26 | - https://developer.android.com/kotlin?hl=es_419 27 | - https://developer.android.com/kotlin?hl=ja 28 | - https://developer.android.com/kotlin?hl=zh_cn 29 | - https://developer.android.com/kotlin?hl=ko 30 | - https://developer.android.com/kotlin?hl=pt_br 31 | - https://developer.android.com/kotlin/coroutines-adv 32 | - https://developer.android.com/kotlin/coroutines-adv?hl=es-419 33 | - https://developer.android.com/kotlin/coroutines-adv?hl=id 34 | - https://developer.android.com/kotlin/coroutines-adv?hl=ja 35 | - https://developer.android.com/kotlin/coroutines-adv?hl=ko 36 | - https://developer.android.com/kotlin/coroutines-adv?hl=pt-br 37 | - https://developer.android.com/kotlin/coroutines-adv?hl=zh-cn 38 | - https://developer.android.com/kotlin/guides-changelog 39 | - https://developer.android.com/kotlin/guides-changelog?hl=es_419 40 | - https://developer.android.com/kotlin/guides-changelog?hl=id 41 | - https://developer.android.com/kotlin/guides-changelog?hl=ja 42 | - https://developer.android.com/kotlin/guides-changelog?hl=zh_cn 43 | - https://developer.android.com/kotlin/guides-changelog?hl=ko 44 | - https://developer.android.com/kotlin/guides-changelog?hl=pt_br 45 | - https://developer.android.com/kotlin/kotlin-java-resources 46 | - https://developer.android.com/kotlin/kotlin-java-resources?hl=pt-br 47 | - https://developer.android.com/kotlin/kotlin-java-resources?hl=es-419 48 | - https://developer.android.com/kotlin/kotlin-java-resources?hl=zh-cn 49 | - https://developer.android.com/kotlin/kotlin-java-resources?hl=ja 50 | - https://developer.android.com/kotlin/kotlin-java-resources?hl=ko 51 | - https://developer.android.com/kotlin/kotlin-java-resources?hl=id 52 | - https://developer.android.com/kotlin/coroutines-pathway 53 | - https://developer.android.com/kotlin/coroutines-pathway?hl=pt-br 54 | - https://developer.android.com/kotlin/coroutines-pathway?hl=es-419 55 | - https://developer.android.com/kotlin/coroutines-pathway?hl=zh-cn 56 | - https://developer.android.com/kotlin/coroutines-pathway?hl=ja 57 | - https://developer.android.com/kotlin/coroutines-pathway?hl=ko 58 | - https://developer.android.com/kotlin/coroutines-pathway?hl=id 59 | - https://developer.android.com/kotlin/add-kotlin 60 | - https://developer.android.com/kotlin/add-kotlin?hl=es_419 61 | - https://developer.android.com/kotlin/add-kotlin?hl=id 62 | - https://developer.android.com/kotlin/add-kotlin?hl=ja 63 | - https://developer.android.com/kotlin/add-kotlin?hl=zh_cn 64 | - https://developer.android.com/kotlin/add-kotlin?hl=ko 65 | - https://developer.android.com/kotlin/add-kotlin?hl=pt_br 66 | - https://developer.android.com/kotlin/coroutines 67 | - https://developer.android.com/kotlin/coroutines?hl=es_419 68 | - https://developer.android.com/kotlin/coroutines?hl=id 69 | - https://developer.android.com/kotlin/coroutines?hl=ja 70 | - https://developer.android.com/kotlin/coroutines?hl=zh_cn 71 | - https://developer.android.com/kotlin/coroutines?hl=ko 72 | - https://developer.android.com/kotlin/coroutines?hl=pt_br 73 | - https://developer.android.com/kotlin/build-better-apps 74 | - https://developer.android.com/kotlin/build-better-apps?hl=ko 75 | - https://developer.android.com/kotlin/build-better-apps?hl=ja 76 | - https://developer.android.com/kotlin/build-better-apps?hl=id 77 | - https://developer.android.com/kotlin/build-better-apps?hl=zh-cn 78 | - https://developer.android.com/kotlin/build-better-apps?hl=pt-br 79 | - https://developer.android.com/kotlin/build-better-apps?hl=es-419 80 | - https://developer.android.com/kotlin/style-guide 81 | - https://developer.android.com/kotlin/style-guide?hl=es_419 82 | - https://developer.android.com/kotlin/style-guide?hl=id 83 | - https://developer.android.com/kotlin/style-guide?hl=ja 84 | - https://developer.android.com/kotlin/style-guide?hl=zh_cn 85 | - https://developer.android.com/kotlin/style-guide?hl=ko 86 | - https://developer.android.com/kotlin/style-guide?hl=pt_br 87 | - https://developer.android.com/kotlin/learn 88 | - https://developer.android.com/kotlin/learn?hl=es_419 89 | - https://developer.android.com/kotlin/learn?hl=id 90 | - https://developer.android.com/kotlin/learn?hl=ja 91 | - https://developer.android.com/kotlin/learn?hl=zh_cn 92 | - https://developer.android.com/kotlin/learn?hl=ko 93 | - https://developer.android.com/kotlin/learn?hl=pt_br 94 | - https://developer.android.com/kotlin/faq 95 | - https://developer.android.com/kotlin/faq?hl=es_419 96 | - https://developer.android.com/kotlin/faq?hl=id 97 | - https://developer.android.com/kotlin/faq?hl=ja 98 | - https://developer.android.com/kotlin/faq?hl=zh_cn 99 | - https://developer.android.com/kotlin/faq?hl=ko 100 | - https://developer.android.com/kotlin/faq?hl=pt_br 101 | - https://developer.android.com/kotlin/overview 102 | - https://developer.android.com/kotlin/overview?hl=es_419 103 | - https://developer.android.com/kotlin/overview?hl=id 104 | - https://developer.android.com/kotlin/overview?hl=ja 105 | - https://developer.android.com/kotlin/overview?hl=zh_cn 106 | - https://developer.android.com/kotlin/overview?hl=ko 107 | - https://developer.android.com/kotlin/overview?hl=pt_br 108 | - https://developer.android.com/kotlin/campaign/learn 109 | - https://developer.android.com/kotlin/campaign/learn?hl=id 110 | - https://developer.android.com/kotlin/campaign/learn?hl=ko 111 | - https://developer.android.com/kotlin/campaign/learn?hl=zh-cn 112 | - https://developer.android.com/kotlin/campaign/learn?hl=ja 113 | - https://developer.android.com/kotlin/campaign/learn?hl=es-419 114 | - https://developer.android.com/kotlin/campaign/learn?hl=pt-br 115 | - https://developer.android.com/kotlin/flow/stateflow-and-sharedflow 116 | - https://developer.android.com/kotlin/getting-started-resources 117 | - https://developer.android.com/kotlin/getting-started-resources?hl=pt-br 118 | - https://developer.android.com/kotlin/getting-started-resources?hl=es-419 119 | - https://developer.android.com/kotlin/getting-started-resources?hl=zh-cn 120 | - https://developer.android.com/kotlin/getting-started-resources?hl=ja 121 | - https://developer.android.com/kotlin/getting-started-resources?hl=ko 122 | - https://developer.android.com/kotlin/getting-started-resources?hl=id 123 | - https://developer.android.com/kotlin/first 124 | - https://developer.android.com/kotlin/first?hl=pt-br 125 | - https://developer.android.com/kotlin/first?hl=es-419 126 | - https://developer.android.com/kotlin/first?hl=zh-cn 127 | - https://developer.android.com/kotlin/first?hl=ja 128 | - https://developer.android.com/kotlin/first?hl=ko 129 | - https://developer.android.com/kotlin/first?hl=id 130 | - https://developer.android.com/kotlin/flow 131 | - https://developer.android.com/kotlin/flow/test 132 | - https://developer.android.com/kotlin/ktx/extensions-list 133 | - https://developer.android.com/kotlin/ktx/extensions-list?hl=pt_br 134 | - https://developer.android.com/kotlin/ktx/extensions-list?hl=zh_cn 135 | - https://developer.android.com/kotlin/ktx/extensions-list?hl=ja 136 | - https://developer.android.com/kotlin/ktx/extensions-list?hl=id 137 | - https://developer.android.com/kotlin/ktx/extensions-list?hl=ko 138 | - https://developer.android.com/kotlin/ktx/extensions-list?hl=es_419 139 | - https://developer.android.com/kotlin/interop 140 | - https://developer.android.com/kotlin/interop?hl=es_419 141 | - https://developer.android.com/kotlin/interop?hl=id 142 | - https://developer.android.com/kotlin/interop?hl=ja 143 | - https://developer.android.com/kotlin/interop?hl=zh_cn 144 | - https://developer.android.com/kotlin/interop?hl=ko 145 | - https://developer.android.com/kotlin/interop?hl=pt_br 146 | - https://developer.android.com/kotlin/ktx 147 | - https://developer.android.com/kotlin/ktx?hl=es_419 148 | - https://developer.android.com/kotlin/ktx?hl=id 149 | - https://developer.android.com/kotlin/ktx?hl=ja 150 | - https://developer.android.com/kotlin/ktx?hl=zh_cn 151 | - https://developer.android.com/kotlin/ktx?hl=ko 152 | - https://developer.android.com/kotlin/ktx?hl=pt_br 153 | - https://developer.android.com/kotlin/stories 154 | - https://developer.android.com/kotlin/stories?hl=id 155 | - https://developer.android.com/kotlin/stories?hl=ja 156 | - https://developer.android.com/kotlin/stories?hl=pt-br 157 | - https://developer.android.com/kotlin/stories?hl=zh-cn 158 | - https://developer.android.com/kotlin/stories?hl=ko 159 | - https://developer.android.com/kotlin/stories?hl=es-419 160 | - https://developer.android.com/kotlin/common-patterns 161 | - https://developer.android.com/kotlin/common-patterns?hl=es_419 162 | - https://developer.android.com/kotlin/common-patterns?hl=id 163 | - https://developer.android.com/kotlin/common-patterns?hl=ja 164 | - https://developer.android.com/kotlin/common-patterns?hl=zh_cn 165 | - https://developer.android.com/kotlin/common-patterns?hl=ko 166 | - https://developer.android.com/kotlin/common-patterns?hl=pt_br 167 | - https://developer.android.com/kotlin/androidbasics 168 | - https://developer.android.com/kotlin/androidbasics?hl=pt-br 169 | - https://developer.android.com/kotlin/androidbasics?hl=es-419 170 | - https://developer.android.com/kotlin/androidbasics?hl=zh-cn 171 | - https://developer.android.com/kotlin/androidbasics?hl=ja 172 | - https://developer.android.com/kotlin/androidbasics?hl=ko 173 | - https://developer.android.com/kotlin/androidbasics?hl=id 174 | - https://developer.android.com/kotlin/adopt-for-large-teams 175 | - https://developer.android.com/kotlin/adopt-for-large-teams?hl=es_419 176 | - https://developer.android.com/kotlin/adopt-for-large-teams?hl=id 177 | - https://developer.android.com/kotlin/adopt-for-large-teams?hl=ja 178 | - https://developer.android.com/kotlin/adopt-for-large-teams?hl=zh_cn 179 | - https://developer.android.com/kotlin/adopt-for-large-teams?hl=ko 180 | - https://developer.android.com/kotlin/adopt-for-large-teams?hl=pt_br 181 | -------------------------------------------------------------------------------- /codelabs.md: -------------------------------------------------------------------------------- 1 | ## [Codelabs](https://developer.android.com/codelabs/sitemap.xml) 2 | 3 | - https://developer.android.com/codelabs/basic-android-kotlin-training-recyclerview-scrollable-list 4 | - https://developer.android.com/codelabs/basic-android-kotlin-training-polished-user-experience 5 | - https://developer.android.com/codelabs/supporting-mediasession 6 | - https://developer.android.com/codelabs/kotlin-android-training-live-data 7 | - https://developer.android.com/codelabs/kotlin-android-training-linear-layout 8 | - https://developer.android.com/codelabs/android-room-with-a-view 9 | - https://developer.android.com/codelabs/recognize-flowers-with-tensorflow-on-android 10 | - https://developer.android.com/codelabs/kotlin-android-training-live-data-transformations 11 | - https://developer.android.com/codelabs/kotlin-android-training-repository 12 | - https://developer.android.com/codelabs/kotlin-android-training-internet-data 13 | - https://developer.android.com/codelabs/android-studio-cmake 14 | - https://developer.android.com/codelabs/basic-android-kotlin-training-run-on-mobile-device 15 | - https://developer.android.com/codelabs/kotlin-android-training-get-started 16 | - https://developer.android.com/codelabs/basic-android-kotlin-training-welcome 17 | - https://developer.android.com/codelabs/kotlin-coroutines 18 | - https://developer.android.com/codelabs/android-training-create-an-activity 19 | - https://developer.android.com/codelabs/advanced-android-training-animations 20 | - https://developer.android.com/codelabs/advanced-android-training-custom-view-from-scratch 21 | - https://developer.android.com/codelabs/android-dagger 22 | - https://developer.android.com/codelabs/jetpack-compose-migration 23 | - https://developer.android.com/codelabs/mdc-103-kotlin 24 | - https://developer.android.com/codelabs/maps-platform-101-android 25 | - https://developer.android.com/codelabs/kotlin-android-training-start-external-activity 26 | - https://developer.android.com/codelabs/kotlin-android-training-room-database 27 | - https://developer.android.com/codelabs/basic-android-kotlin-training-birthday-card-app 28 | - https://developer.android.com/codelabs/advanced-android-training-apply-clipping-to-canvas 29 | - https://developer.android.com/codelabs/android-training-cards-and-colors 30 | - https://developer.android.com/codelabs/kotlin-bootcamp-welcome 31 | - https://developer.android.com/codelabs/android-proto-datastore 32 | - https://developer.android.com/codelabs/kotlin-android-training-recyclerview-fundamentals 33 | - https://developer.android.com/codelabs/kotlin-android-training-app-anatomy 34 | - https://developer.android.com/codelabs/android-hilt 35 | - https://developer.android.com/codelabs/kotlin-bootcamp-introduction 36 | - https://developer.android.com/codelabs/android-dagger-to-hilt 37 | - https://developer.android.com/codelabs/android-training-room-delete-data 38 | - https://developer.android.com/codelabs/basic-android-kotlin-training-birthday-card-app-image 39 | - https://developer.android.com/codelabs/chromeos-resizing 40 | - https://developer.android.com/codelabs/complications 41 | - https://developer.android.com/codelabs/kotlin-android-training-grid-layout 42 | - https://developer.android.com/codelabs/tv-watch-next 43 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-notifications 44 | - https://developer.android.com/codelabs/kotlin-android-training-internet-filtering 45 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-clipping-canvas-objects 46 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-login-navigation 47 | - https://developer.android.com/codelabs/android-training-activity-lifecycle-and-state 48 | - https://developer.android.com/codelabs/jetpack-compose-basics 49 | - https://developer.android.com/codelabs/android-management-api 50 | - https://developer.android.com/codelabs/using-android-q-gsi 51 | - https://developer.android.com/codelabs/advanced-android-training-places-api 52 | - https://developer.android.com/codelabs/advanced-android-training-create-canvas 53 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-shaders 54 | - https://developer.android.com/codelabs/android-training-asynctask-asynctaskloader 55 | - https://developer.android.com/codelabs/android-training-provide-user-navigation 56 | - https://developer.android.com/codelabs/kotlin-android-training-headers 57 | - https://developer.android.com/codelabs/android-lifecycles 58 | - https://developer.android.com/codelabs/android-performance-tuner-unity 59 | - https://developer.android.com/codelabs/advanced-android-training-language-support 60 | - https://developer.android.com/codelabs/cast-connect-atv 61 | - https://developer.android.com/codelabs/basic-android-kotlin-training-classes-and-inheritance 62 | - https://developer.android.com/codelabs/advanced-android-training-device-location 63 | - https://developer.android.com/codelabs/android-training-hello-world 64 | - https://developer.android.com/codelabs/basic-android-kotlin-training-vocab 65 | - https://developer.android.com/codelabs/tv-recommendations-kotlin 66 | - https://developer.android.com/codelabs/android-training-adding-settings-to-app 67 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-geofencing 68 | - https://developer.android.com/codelabs/android-training-input-controls 69 | - https://developer.android.com/codelabs/motion-layout 70 | - https://developer.android.com/codelabs/a11y-testing-espresso 71 | - https://developer.android.com/codelabs/kotlin-android-training-coroutines-and-room 72 | - https://developer.android.com/codelabs/starting-android-accessibility 73 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-maps 74 | - https://developer.android.com/codelabs/advanced-android-training-google-maps 75 | - https://developer.android.com/codelabs/activity-recognition-transition 76 | - https://developer.android.com/codelabs/mdc-101-java 77 | - https://developer.android.com/codelabs/constraint-layout 78 | - https://developer.android.com/codelabs/kotlin-android-training-styles-and-themes 79 | - https://developer.android.com/codelabs/kotlin-bootcamp-extensions 80 | - https://developer.android.com/codelabs/mdc-104-kotlin 81 | - https://developer.android.com/codelabs/jetpack-compose-layouts 82 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-testing-survey 83 | - https://developer.android.com/codelabs/gesture-navigation 84 | - https://developer.android.com/codelabs/kotlin-android-training-images-compat 85 | - https://developer.android.com/codelabs/android-preferences-datastore 86 | - https://developer.android.com/codelabs/building-kotlin-extensions-library 87 | - https://developer.android.com/codelabs/kotlin-android-training-constraint-layout 88 | - https://developer.android.com/codelabs/build-your-first-android-app 89 | - https://developer.android.com/codelabs/kotlin-bootcamp-generics 90 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-welcome 91 | - https://developer.android.com/codelabs/play-billing-scalable-kotlin 92 | - https://developer.android.com/codelabs/kotlin-android-training-view-model 93 | - https://developer.android.com/codelabs/mlkit-android-translate 94 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-login 95 | - https://developer.android.com/codelabs/android-training-drawables-styles-and-themes 96 | - https://developer.android.com/codelabs/jetpack-compose-state 97 | - https://developer.android.com/codelabs/java-to-kotlin 98 | - https://developer.android.com/codelabs/java-to-kotlin?hl=zh_cn 99 | - https://developer.android.com/codelabs/mdc-102-kotlin 100 | - https://developer.android.com/codelabs/kotlin-android-training-install-studio 101 | - https://developer.android.com/codelabs/mdc-103-java 102 | - https://developer.android.com/codelabs/advanced-android-training-customize-view 103 | - https://developer.android.com/codelabs/basic-android-kotlin-training-first-template-project 104 | - https://developer.android.com/codelabs/kotlin-android-training-complex-lifecycle 105 | - https://developer.android.com/codelabs/advanced-kotlin-coroutines 106 | - https://developer.android.com/codelabs/digit-classifier-tflite 107 | - https://developer.android.com/codelabs/basic-android-kotlin-training-dice-roller-images 108 | - https://developer.android.com/codelabs/android-workmanager-java 109 | - https://developer.android.com/codelabs/basic-android-kotlin-training-create-dice-roller-in-kotlin 110 | - https://developer.android.com/codelabs/android-navigation 111 | - https://developer.android.com/codelabs/android-paging 112 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-property-animation 113 | - https://developer.android.com/codelabs/mdc-102-java 114 | - https://developer.android.com/codelabs/advanced-android-training-memory-profiler 115 | - https://developer.android.com/codelabs/tv-channels-programs 116 | - https://developer.android.com/codelabs/android-training-unit-tests 117 | - https://developer.android.com/codelabs/jetpack-compose-theming 118 | - https://developer.android.com/codelabs/material-motion-android 119 | - https://developer.android.com/codelabs/kotlin-android-training-create-and-add-fragment 120 | - https://developer.android.com/codelabs/kotlin-android-training-quality-and-states 121 | - https://developer.android.com/codelabs/kotlin-android-training-welcome 122 | - https://developer.android.com/codelabs/android-training-broadcast-receivers 123 | - https://developer.android.com/codelabs/java-to-kotlin-pt-br 124 | - https://developer.android.com/codelabs/basic-android-kotlin-training-create-dice-roller-app-with-button 125 | - https://developer.android.com/codelabs/basic-android-kotlin-training-unit1-intro 126 | - https://developer.android.com/codelabs/kotlin-android-training-data-binding-basics 127 | - https://developer.android.com/codelabs/kotlin-android-training-live-data-data-binding 128 | - https://developer.android.com/codelabs/android-training-create-asynctask 129 | - https://developer.android.com/codelabs/camerax-getting-started 130 | - https://developer.android.com/codelabs/kotlin-android-training-available-resources 131 | - https://developer.android.com/codelabs/advanced-android-training-use-locale 132 | - https://developer.android.com/codelabs/advanced-andoid-kotlin-training-custom-views 133 | - https://developer.android.com/codelabs/kotlin-android-training-diffutil-databinding 134 | - https://developer.android.com/codelabs/basic-android-kotlin-training-conditional-dice-roll-behavior 135 | - https://developer.android.com/codelabs/kotlin-bootcamp-basics 136 | - https://developer.android.com/codelabs/watchface 137 | - https://developer.android.com/codelabs/while-in-use-location 138 | - https://developer.android.com/codelabs/java-friendly-kotlin 139 | - https://developer.android.com/codelabs/android-training-create-recycler-view 140 | - https://developer.android.com/codelabs/basic-android-kotlin-training-kotlin-birthday-message 141 | - https://developer.android.com/codelabs/advanced-android-training-welcome 142 | - https://developer.android.com/codelabs/advanced-android-training-sensor-data 143 | - https://developer.android.com/codelabs/advanced-android-training-fragment-communication 144 | - https://developer.android.com/codelabs/android-training-layout-editor-part-b 145 | - https://developer.android.com/codelabs/advanced-android-training-performance-tools 146 | - https://developer.android.com/codelabs/advanced-android-training-fragments 147 | - https://developer.android.com/codelabs/android-stamp-collector 148 | - https://developer.android.com/codelabs/android-training-menus-and-pickers 149 | - https://developer.android.com/codelabs/kotlin-android-training-add-navigation 150 | - https://developer.android.com/codelabs/kotlin-bootcamp-sams 151 | - https://developer.android.com/codelabs/android-training-activity-with-implicit-intent 152 | - https://developer.android.com/codelabs/advanced-android-training-widgets 153 | - https://developer.android.com/codelabs/android-training-job-scheduler 154 | - https://developer.android.com/codelabs/kotlin-android-training-design-for-everyone 155 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-notifications-fcm 156 | - https://developer.android.com/codelabs/kotlin-bootcamp-functions 157 | - https://developer.android.com/codelabs/android-databinding 158 | - https://developer.android.com/codelabs/advanced-android-training-video-view 159 | - https://developer.android.com/codelabs/advanced-android-training-create-accessible-apps 160 | - https://developer.android.com/codelabs/build-your-first-android-app-kotlin 161 | - https://developer.android.com/codelabs/android-training-alarm-manager 162 | - https://developer.android.com/codelabs/java-to-kotlin-zh 163 | - https://developer.android.com/codelabs/basic-android-kotlin-training-xml-layouts 164 | - https://developer.android.com/codelabs/android-training-layout-editor-part-a 165 | - https://developer.android.com/codelabs/advanced-android-training-profile-gpu 166 | - https://developer.android.com/codelabs/kotlin-android-training-lifecycles-logging 167 | - https://developer.android.com/codelabs/android-training-adaptive-layouts 168 | - https://developer.android.com/codelabs/android-training-using-debugger 169 | - https://developer.android.com/codelabs/making-waves-1-synth 170 | - https://developer.android.com/codelabs/advanced-android-training-sensor-orientation 171 | - https://developer.android.com/codelabs/exoplayer-intro 172 | - https://developer.android.com/codelabs/android-training-support-libraries 173 | - https://developer.android.com/codelabs/recognize-flowers-with-tensorflow-on-android-beta 174 | - https://developer.android.com/codelabs/basic-android-kotlin-training-change-app-theme 175 | - https://developer.android.com/codelabs/advanced-android-training-surfaceviews 176 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-canvas 177 | - https://developer.android.com/codelabs/android-training-espresso-for-ui-testing 178 | - https://developer.android.com/codelabs/android-people 179 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-testing-test-doubles 180 | - https://developer.android.com/codelabs/musicalgame-using-oboe 181 | - https://developer.android.com/codelabs/basic-android-kotlin-training-affirmations-app-polish 182 | - https://developer.android.com/codelabs/kotlin-bootcamp-classes 183 | - https://developer.android.com/codelabs/admob-rewarded-video-android 184 | - https://developer.android.com/codelabs/android-slices-basic 185 | - https://developer.android.com/codelabs/android-direct-share 186 | - https://developer.android.com/codelabs/android-room-with-a-view-kotlin 187 | - https://developer.android.com/codelabs/basic-android-kotlin-training-display-list-cards 188 | - https://developer.android.com/codelabs/android-training-clickable-images 189 | - https://developer.android.com/codelabs/kotlin-android-training-interactivity 190 | - https://developer.android.com/codelabs/basic-android-kotlin-training-lists 191 | - https://developer.android.com/codelabs/android-workmanager 192 | - https://developer.android.com/codelabs/mdc-104-java 193 | - https://developer.android.com/codelabs/android-training-text-and-scrolling-views 194 | - https://developer.android.com/codelabs/advanced-android-training-draw-on-canvas 195 | - https://developer.android.com/codelabs/kotlin-android-training-work-manager 196 | - https://developer.android.com/codelabs/advanced-android-kotlin-training-testing-basics 197 | - https://developer.android.com/codelabs/android-training-shared-preferences 198 | - https://developer.android.com/codelabs/kotlin-android-training-internet-images 199 | - https://developer.android.com/codelabs/basic-android-kotlin-training-affirmations-app 200 | - https://developer.android.com/codelabs/optimized-for-chromeos 201 | - https://developer.android.com/codelabs/android-training-livedata-viewmodel 202 | - https://developer.android.com/codelabs/basic-android-kotlin-training-change-app-icon 203 | - https://developer.android.com/codelabs/basic-android-kotlin-training-first-kotlin-program 204 | - https://developer.android.com/codelabs/biometric-login 205 | - https://developer.android.com/codelabs/data-providers 206 | - https://developer.android.com/codelabs/watchface-kotlin 207 | - https://developer.android.com/codelabs/advanced-android-training-explore-accessibility 208 | - https://developer.android.com/codelabs/taking-advantage-of-kotlin 209 | - https://developer.android.com/codelabs/android-training-notifications 210 | - https://developer.android.com/codelabs/kotlin-android-training-material-design-dimens-colors 211 | - https://developer.android.com/codelabs/basic-android-kotlin-training-install-android-studio 212 | - https://developer.android.com/codelabs/basic-android-kotlin-training-tip-calculator 213 | - https://developer.android.com/codelabs/android-adv-workmanager 214 | - https://developer.android.com/codelabs/android-training-available-resources 215 | - https://developer.android.com/codelabs/kotlin-android-training-interacting-with-items 216 | - https://developer.android.com/codelabs/location-places-android 217 | - https://developer.android.com/codelabs/android-training-welcome -------------------------------------------------------------------------------- /google.md: -------------------------------------------------------------------------------- 1 | ## [Google](https://developer.android.com/google/sitemap.xml) 2 | 3 | - https://developer.android.com/google/play/licensing/server-side-verification 4 | - https://developer.android.com/google/play/licensing/server-side-verification?hl=id 5 | - https://developer.android.com/google/play/licensing/server-side-verification?hl=ko 6 | - https://developer.android.com/google/play/licensing/server-side-verification?hl=zh_cn 7 | - https://developer.android.com/google/play/licensing/server-side-verification?hl=pt_br 8 | - https://developer.android.com/google/play/licensing/server-side-verification?hl=es_419 9 | - https://developer.android.com/google/play/licensing/server-side-verification?hl=ja 10 | - https://developer.android.com/google/play/asi 11 | - https://developer.android.com/google/play/asi?hl=es_419 12 | - https://developer.android.com/google/play/asi?hl=id 13 | - https://developer.android.com/google/play/asi?hl=ko 14 | - https://developer.android.com/google/play/asi?hl=pt_br 15 | - https://developer.android.com/google/play/asi?hl=zh_cn 16 | - https://developer.android.com/google/play/asi?hl=ja 17 | - https://developer.android.com/google/play/licensing/licensing-reference 18 | - https://developer.android.com/google/play/licensing/licensing-reference?hl=id 19 | - https://developer.android.com/google/play/licensing/licensing-reference?hl=ko 20 | - https://developer.android.com/google/play/licensing/licensing-reference?hl=zh_cn 21 | - https://developer.android.com/google/play/licensing/licensing-reference?hl=pt_br 22 | - https://developer.android.com/google/play/licensing/licensing-reference?hl=es_419 23 | - https://developer.android.com/google/play/licensing/licensing-reference?hl=ja 24 | - https://developer.android.com/google/play/billing/getting-ready 25 | - https://developer.android.com/google/play/billing/getting-ready?hl=pt-br 26 | - https://developer.android.com/google/play/billing/getting-ready?hl=ko 27 | - https://developer.android.com/google/play/billing/getting-ready?hl=ja 28 | - https://developer.android.com/google/play/billing/getting-ready?hl=es-419 29 | - https://developer.android.com/google/play/billing/getting-ready?hl=zh-cn 30 | - https://developer.android.com/google/play/billing/getting-ready?hl=id 31 | - https://developer.android.com/google/play/dist 32 | - https://developer.android.com/google/play/dist?hl=es_419 33 | - https://developer.android.com/google/play/dist?hl=id 34 | - https://developer.android.com/google/play/dist?hl=ko 35 | - https://developer.android.com/google/play/dist?hl=pt_br 36 | - https://developer.android.com/google/play/dist?hl=zh_cn 37 | - https://developer.android.com/google/play/dist?hl=ja 38 | - https://developer.android.com/google/play/billing/unity 39 | - https://developer.android.com/google/play/billing/unity?hl=pt_br 40 | - https://developer.android.com/google/play/billing/unity?hl=es_419 41 | - https://developer.android.com/google/play/billing/unity?hl=id 42 | - https://developer.android.com/google/play/billing/unity?hl=ja 43 | - https://developer.android.com/google/play/billing/unity?hl=ko 44 | - https://developer.android.com/google/play/billing/unity?hl=zh_cn 45 | - https://developer.android.com/google/play/billing/billing_rewarded_products 46 | - https://developer.android.com/google/play/billing/billing_rewarded_products?hl=es_419 47 | - https://developer.android.com/google/play/billing/billing_rewarded_products?hl=zh_cn 48 | - https://developer.android.com/google/play/billing/billing_rewarded_products?hl=id 49 | - https://developer.android.com/google/play/billing/billing_rewarded_products?hl=ja 50 | - https://developer.android.com/google/play/billing/billing_rewarded_products?hl=ko 51 | - https://developer.android.com/google/play/billing/billing_rewarded_products?hl=pt_br 52 | - https://developer.android.com/google/play/installreferrer/release-notes 53 | - https://developer.android.com/google/play/installreferrer/release-notes?hl=pt_br 54 | - https://developer.android.com/google/play/installreferrer/release-notes?hl=es_419 55 | - https://developer.android.com/google/play/installreferrer/release-notes?hl=id 56 | - https://developer.android.com/google/play/installreferrer/release-notes?hl=ja 57 | - https://developer.android.com/google/play/installreferrer/release-notes?hl=ko 58 | - https://developer.android.com/google/play/installreferrer/release-notes?hl=zh_cn 59 | - https://developer.android.com/google/play/licensing/overview 60 | - https://developer.android.com/google/play/licensing/overview?hl=id 61 | - https://developer.android.com/google/play/licensing/overview?hl=ko 62 | - https://developer.android.com/google/play/licensing/overview?hl=zh_cn 63 | - https://developer.android.com/google/play/licensing/overview?hl=pt_br 64 | - https://developer.android.com/google/play/licensing/overview?hl=es_419 65 | - https://developer.android.com/google/play/licensing/overview?hl=ja 66 | - https://developer.android.com/google/play/developer-api 67 | - https://developer.android.com/google/play/developer-api?hl=es_419 68 | - https://developer.android.com/google/play/developer-api?hl=zh_cn 69 | - https://developer.android.com/google/play/developer-api?hl=id 70 | - https://developer.android.com/google/play/developer-api?hl=ja 71 | - https://developer.android.com/google/play/developer-api?hl=ko 72 | - https://developer.android.com/google/play/developer-api?hl=pt_br 73 | - https://developer.android.com/google/play/billing/developer-payload 74 | - https://developer.android.com/google/play/billing/developer-payload?hl=pt_br 75 | - https://developer.android.com/google/play/billing/developer-payload?hl=es_419 76 | - https://developer.android.com/google/play/billing/developer-payload?hl=id 77 | - https://developer.android.com/google/play/billing/developer-payload?hl=ja 78 | - https://developer.android.com/google/play/billing/developer-payload?hl=ko 79 | - https://developer.android.com/google/play/billing/developer-payload?hl=zh_cn 80 | - https://developer.android.com/google/play/billing/contact 81 | - https://developer.android.com/google/play/billing/contact?hl=pt-br 82 | - https://developer.android.com/google/play/billing/contact?hl=ko 83 | - https://developer.android.com/google/play/billing/contact?hl=ja 84 | - https://developer.android.com/google/play/billing/contact?hl=es-419 85 | - https://developer.android.com/google/play/billing/contact?hl=zh-cn 86 | - https://developer.android.com/google/play/billing/contact?hl=id 87 | - https://developer.android.com/google/play/installreferrer/library 88 | - https://developer.android.com/google/play/installreferrer/library?hl=es_419 89 | - https://developer.android.com/google/play/installreferrer/library?hl=id 90 | - https://developer.android.com/google/play/installreferrer/library?hl=ko 91 | - https://developer.android.com/google/play/installreferrer/library?hl=pt_br 92 | - https://developer.android.com/google/play/installreferrer/library?hl=zh_cn 93 | - https://developer.android.com/google/play/installreferrer/library?hl=ja 94 | - https://developer.android.com/google/play/billing/terminology 95 | - https://developer.android.com/google/play/billing/terminology?hl=pt-br 96 | - https://developer.android.com/google/play/billing/terminology?hl=ko 97 | - https://developer.android.com/google/play/billing/terminology?hl=ja 98 | - https://developer.android.com/google/play/billing/terminology?hl=es-419 99 | - https://developer.android.com/google/play/billing/terminology?hl=zh-cn 100 | - https://developer.android.com/google/play/billing/terminology?hl=id 101 | - https://developer.android.com/google/play/licensing 102 | - https://developer.android.com/google/play/licensing?hl=id 103 | - https://developer.android.com/google/play/licensing?hl=ko 104 | - https://developer.android.com/google/play/licensing?hl=zh_cn 105 | - https://developer.android.com/google/play/licensing?hl=pt_br 106 | - https://developer.android.com/google/play/licensing?hl=es_419 107 | - https://developer.android.com/google/play/licensing?hl=ja 108 | - https://developer.android.com/google/play/billing/rtdn-reference 109 | - https://developer.android.com/google/play/billing/rtdn-reference?hl=pt-br 110 | - https://developer.android.com/google/play/billing/rtdn-reference?hl=ko 111 | - https://developer.android.com/google/play/billing/rtdn-reference?hl=ja 112 | - https://developer.android.com/google/play/billing/rtdn-reference?hl=es-419 113 | - https://developer.android.com/google/play/billing/rtdn-reference?hl=zh-cn 114 | - https://developer.android.com/google/play/billing/rtdn-reference?hl=id 115 | - https://developer.android.com/google/play/billing/migrate 116 | - https://developer.android.com/google/play/billing/migrate?hl=pt_br 117 | - https://developer.android.com/google/play/billing/migrate?hl=es_419 118 | - https://developer.android.com/google/play/billing/migrate?hl=id 119 | - https://developer.android.com/google/play/billing/migrate?hl=ja 120 | - https://developer.android.com/google/play/billing/migrate?hl=ko 121 | - https://developer.android.com/google/play/billing/migrate?hl=zh_cn 122 | - https://developer.android.com/google/play/billing/promo 123 | - https://developer.android.com/google/play/billing/promo?hl=pt-br 124 | - https://developer.android.com/google/play/billing/promo?hl=ko 125 | - https://developer.android.com/google/play/billing/promo?hl=ja 126 | - https://developer.android.com/google/play/billing/promo?hl=es-419 127 | - https://developer.android.com/google/play/billing/promo?hl=zh-cn 128 | - https://developer.android.com/google/play/billing/promo?hl=id 129 | - https://developer.android.com/google/play/billing/billing_reference 130 | - https://developer.android.com/google/play/billing/billing_reference?hl=es_419 131 | - https://developer.android.com/google/play/billing/billing_reference?hl=zh_cn 132 | - https://developer.android.com/google/play/billing/billing_reference?hl=id 133 | - https://developer.android.com/google/play/billing/billing_reference?hl=ja 134 | - https://developer.android.com/google/play/billing/billing_reference?hl=ko 135 | - https://developer.android.com/google/play/billing/billing_reference?hl=pt_br 136 | - https://developer.android.com/google/play/licensing/setting-up 137 | - https://developer.android.com/google/play/licensing/setting-up?hl=id 138 | - https://developer.android.com/google/play/licensing/setting-up?hl=ko 139 | - https://developer.android.com/google/play/licensing/setting-up?hl=zh_cn 140 | - https://developer.android.com/google/play/licensing/setting-up?hl=pt_br 141 | - https://developer.android.com/google/play/licensing/setting-up?hl=es_419 142 | - https://developer.android.com/google/play/licensing/setting-up?hl=ja 143 | - https://developer.android.com/google/play/billing 144 | - https://developer.android.com/google/play/billing?hl=pt-br 145 | - https://developer.android.com/google/play/billing?hl=ko 146 | - https://developer.android.com/google/play/billing?hl=ja 147 | - https://developer.android.com/google/play/billing?hl=es-419 148 | - https://developer.android.com/google/play/billing?hl=zh-cn 149 | - https://developer.android.com/google/play/billing?hl=id 150 | - https://developer.android.com/google/play/billing/additional-resources 151 | - https://developer.android.com/google/play/billing/additional-resources?hl=pt-br 152 | - https://developer.android.com/google/play/billing/additional-resources?hl=ko 153 | - https://developer.android.com/google/play/billing/additional-resources?hl=ja 154 | - https://developer.android.com/google/play/billing/additional-resources?hl=es-419 155 | - https://developer.android.com/google/play/billing/additional-resources?hl=zh-cn 156 | - https://developer.android.com/google/play/billing/additional-resources?hl=id 157 | - https://developer.android.com/google/play/billing/api 158 | - https://developer.android.com/google/play/billing/api?hl=es_419 159 | - https://developer.android.com/google/play/billing/api?hl=zh_cn 160 | - https://developer.android.com/google/play/billing/api?hl=id 161 | - https://developer.android.com/google/play/billing/api?hl=ja 162 | - https://developer.android.com/google/play/billing/api?hl=ko 163 | - https://developer.android.com/google/play/billing/api?hl=pt_br 164 | - https://developer.android.com/google/play/billing/subscriptions 165 | - https://developer.android.com/google/play/billing/subscriptions?hl=id 166 | - https://developer.android.com/google/play/billing/subscriptions?hl=es-419 167 | - https://developer.android.com/google/play/billing/subscriptions?hl=zh-cn 168 | - https://developer.android.com/google/play/billing/subscriptions?hl=pt-br 169 | - https://developer.android.com/google/play/billing/subscriptions?hl=ja 170 | - https://developer.android.com/google/play/billing/subscriptions?hl=ko 171 | - https://developer.android.com/google/play/licensing/client-side-verification 172 | - https://developer.android.com/google/play/licensing/client-side-verification?hl=id 173 | - https://developer.android.com/google/play/licensing/client-side-verification?hl=ko 174 | - https://developer.android.com/google/play/licensing/client-side-verification?hl=zh_cn 175 | - https://developer.android.com/google/play/licensing/client-side-verification?hl=pt_br 176 | - https://developer.android.com/google/play/licensing/client-side-verification?hl=es_419 177 | - https://developer.android.com/google/play/licensing/client-side-verification?hl=ja 178 | - https://developer.android.com/google/play/expansion-files 179 | - https://developer.android.com/google/play/expansion-files?hl=es_419 180 | - https://developer.android.com/google/play/expansion-files?hl=id 181 | - https://developer.android.com/google/play/expansion-files?hl=ko 182 | - https://developer.android.com/google/play/expansion-files?hl=pt_br 183 | - https://developer.android.com/google/play/expansion-files?hl=zh_cn 184 | - https://developer.android.com/google/play/expansion-files?hl=ja 185 | - https://developer.android.com/google/play/billing/release-notes 186 | - https://developer.android.com/google/play/billing/release-notes?hl=pt-br 187 | - https://developer.android.com/google/play/billing/release-notes?hl=ko 188 | - https://developer.android.com/google/play/billing/release-notes?hl=ja 189 | - https://developer.android.com/google/play/billing/release-notes?hl=es-419 190 | - https://developer.android.com/google/play/billing/release-notes?hl=zh-cn 191 | - https://developer.android.com/google/play/billing/release-notes?hl=id 192 | - https://developer.android.com/google/play/filters 193 | - https://developer.android.com/google/play/filters?hl=es-419 194 | - https://developer.android.com/google/play/filters?hl=zh-cn 195 | - https://developer.android.com/google/play/filters?hl=id 196 | - https://developer.android.com/google/play/filters?hl=ja 197 | - https://developer.android.com/google/play/filters?hl=ko 198 | - https://developer.android.com/google/play/filters?hl=pt-br 199 | - https://developer.android.com/google/play/installreferrer/igetinstallreferrerservice 200 | - https://developer.android.com/google/play/installreferrer/igetinstallreferrerservice?hl=es_419 201 | - https://developer.android.com/google/play/installreferrer/igetinstallreferrerservice?hl=id 202 | - https://developer.android.com/google/play/installreferrer/igetinstallreferrerservice?hl=ko 203 | - https://developer.android.com/google/play/installreferrer/igetinstallreferrerservice?hl=pt_br 204 | - https://developer.android.com/google/play/installreferrer/igetinstallreferrerservice?hl=zh_cn 205 | - https://developer.android.com/google/play/installreferrer/igetinstallreferrerservice?hl=ja 206 | - https://developer.android.com/google/play/installreferrer 207 | - https://developer.android.com/google/play/installreferrer?hl=es_419 208 | - https://developer.android.com/google/play/installreferrer?hl=id 209 | - https://developer.android.com/google/play/installreferrer?hl=ko 210 | - https://developer.android.com/google/play/installreferrer?hl=pt_br 211 | - https://developer.android.com/google/play/installreferrer?hl=zh_cn 212 | - https://developer.android.com/google/play/installreferrer?hl=ja 213 | - https://developer.android.com/google/play/billing/security 214 | - https://developer.android.com/google/play/billing/security?hl=pt_br 215 | - https://developer.android.com/google/play/billing/security?hl=es_419 216 | - https://developer.android.com/google/play/billing/security?hl=id 217 | - https://developer.android.com/google/play/billing/security?hl=ja 218 | - https://developer.android.com/google/play/billing/security?hl=ko 219 | - https://developer.android.com/google/play/billing/security?hl=zh_cn 220 | - https://developer.android.com/google/play/publishing/multiple-apks 221 | - https://developer.android.com/google/play/publishing/multiple-apks?hl=id 222 | - https://developer.android.com/google/play/publishing/multiple-apks?hl=ko 223 | - https://developer.android.com/google/play/publishing/multiple-apks?hl=zh_cn 224 | - https://developer.android.com/google/play/publishing/multiple-apks?hl=pt_br 225 | - https://developer.android.com/google/play/publishing/multiple-apks?hl=es_419 226 | - https://developer.android.com/google/play/publishing/multiple-apks?hl=ja 227 | - https://developer.android.com/google/play/billing/test 228 | - https://developer.android.com/google/play/billing/test?hl=pt-br 229 | - https://developer.android.com/google/play/billing/test?hl=ko 230 | - https://developer.android.com/google/play/billing/test?hl=ja 231 | - https://developer.android.com/google/play/billing/test?hl=es-419 232 | - https://developer.android.com/google/play/billing/test?hl=zh-cn 233 | - https://developer.android.com/google/play/billing/test?hl=id 234 | - https://developer.android.com/google/play/billing/integrate 235 | - https://developer.android.com/google/play/billing/integrate?hl=pt-br 236 | - https://developer.android.com/google/play/billing/integrate?hl=ko 237 | - https://developer.android.com/google/play/billing/integrate?hl=ja 238 | - https://developer.android.com/google/play/billing/integrate?hl=es-419 239 | - https://developer.android.com/google/play/billing/integrate?hl=zh-cn 240 | - https://developer.android.com/google/play/billing/integrate?hl=id -------------------------------------------------------------------------------- /setup.md: -------------------------------------------------------------------------------- 1 | ## [Setup](https://source.android.com/setup/sitemap.xml) 2 | 3 | - https://source.android.com/setup/build/building 4 | - https://source.android.com/setup/build/building?hl=zh-cn 5 | - https://source.android.com/setup/build/building?hl=pt-br 6 | - https://source.android.com/setup/build/building?hl=ko 7 | - https://source.android.com/setup/build/building?hl=ja 8 | - https://source.android.com/setup/build/building?hl=es-419 9 | - https://source.android.com/setup/create/coding-tasks 10 | - https://source.android.com/setup/create/coding-tasks?hl=pt-br 11 | - https://source.android.com/setup/create/coding-tasks?hl=zh-cn 12 | - https://source.android.com/setup/create/coding-tasks?hl=ko 13 | - https://source.android.com/setup/create/coding-tasks?hl=ja 14 | - https://source.android.com/setup/create/coding-tasks?hl=es-419 15 | - https://source.android.com/setup/create/cuttlefish-ref-multi-tenancy 16 | - https://source.android.com/setup/create/cuttlefish-ref-multi-tenancy?hl=zh-cn 17 | - https://source.android.com/setup/create/cuttlefish-ref-multi-tenancy?hl=es-419 18 | - https://source.android.com/setup/create/cuttlefish-ref-multi-tenancy?hl=ja 19 | - https://source.android.com/setup/create/cuttlefish-ref-multi-tenancy?hl=ko 20 | - https://source.android.com/setup/create/cuttlefish-ref-multi-tenancy?hl=pt-br 21 | - https://source.android.com/setup/build/adb 22 | - https://source.android.com/setup/build/adb?hl=ja 23 | - https://source.android.com/setup/build/adb?hl=ko 24 | - https://source.android.com/setup/build/adb?hl=pt-br 25 | - https://source.android.com/setup/build/adb?hl=zh-cn 26 | - https://source.android.com/setup/build/adb?hl=es-419 27 | - https://source.android.com/setup/community 28 | - https://source.android.com/setup/community?hl=zh-cn 29 | - https://source.android.com/setup/community?hl=pt-br 30 | - https://source.android.com/setup/community?hl=ja 31 | - https://source.android.com/setup/community?hl=ko 32 | - https://source.android.com/setup/community?hl=es-419 33 | - https://source.android.com/setup/start/licenses 34 | - https://source.android.com/setup/start/licenses?hl=zh-cn 35 | - https://source.android.com/setup/start/licenses?hl=pt-br 36 | - https://source.android.com/setup/start/licenses?hl=ja 37 | - https://source.android.com/setup/start/licenses?hl=ko 38 | - https://source.android.com/setup/start/licenses?hl=es-419 39 | - https://source.android.com/setup/start/licenses?hl=ar 40 | - https://source.android.com/setup/start/licenses?hl=fr 41 | - https://source.android.com/setup/start/licenses?hl=vi 42 | - https://source.android.com/setup/start/licenses?hl=bn 43 | - https://source.android.com/setup/start/licenses?hl=fa 44 | - https://source.android.com/setup/start/licenses?hl=pl 45 | - https://source.android.com/setup/start/licenses?hl=hi 46 | - https://source.android.com/setup/start/licenses?hl=ru 47 | - https://source.android.com/setup/start/licenses?hl=id 48 | - https://source.android.com/setup/start/licenses?hl=tr 49 | - https://source.android.com/setup/start/licenses?hl=it 50 | - https://source.android.com/setup/start/licenses?hl=de 51 | - https://source.android.com/setup/start/licenses?hl=zh-tw 52 | - https://source.android.com/setup/start/licenses?hl=th 53 | - https://source.android.com/setup/start/licenses?hl=he 54 | - https://source.android.com/setup/build/gsi 55 | - https://source.android.com/setup/build/gsi?hl=zh-cn 56 | - https://source.android.com/setup/build/gsi?hl=pt-br 57 | - https://source.android.com/setup/build/gsi?hl=ko 58 | - https://source.android.com/setup/build/gsi?hl=ja 59 | - https://source.android.com/setup/build/gsi?hl=es-419 60 | - https://source.android.com/setup/start/codelines 61 | - https://source.android.com/setup/start/codelines?hl=zh-cn 62 | - https://source.android.com/setup/start/codelines?hl=pt-br 63 | - https://source.android.com/setup/start/codelines?hl=ja 64 | - https://source.android.com/setup/start/codelines?hl=ko 65 | - https://source.android.com/setup/start/codelines?hl=es-419 66 | - https://source.android.com/setup/contribute/submit-patches 67 | - https://source.android.com/setup/contribute/submit-patches?hl=zh-cn 68 | - https://source.android.com/setup/contribute/submit-patches?hl=pt-br 69 | - https://source.android.com/setup/contribute/submit-patches?hl=ko 70 | - https://source.android.com/setup/contribute/submit-patches?hl=ja 71 | - https://source.android.com/setup/contribute/submit-patches?hl=es-419 72 | - https://source.android.com/setup/start/android-11-release 73 | - https://source.android.com/setup/start/android-10-release 74 | - https://source.android.com/setup/start/android-10-release?hl=pt-br 75 | - https://source.android.com/setup/start/android-10-release?hl=zh-cn 76 | - https://source.android.com/setup/start/android-10-release?hl=es-419 77 | - https://source.android.com/setup/start/android-10-release?hl=ko 78 | - https://source.android.com/setup/start/android-10-release?hl=ja 79 | - https://source.android.com/setup/develop/new-device 80 | - https://source.android.com/setup/develop/new-device?hl=zh-cn 81 | - https://source.android.com/setup/develop/new-device?hl=pt-br 82 | - https://source.android.com/setup/develop/new-device?hl=ko 83 | - https://source.android.com/setup/develop/new-device?hl=ja 84 | - https://source.android.com/setup/develop/new-device?hl=es-419 85 | - https://source.android.com/setup/contribute/code-style 86 | - https://source.android.com/setup/contribute/code-style?hl=zh-cn 87 | - https://source.android.com/setup/contribute/code-style?hl=pt-br 88 | - https://source.android.com/setup/contribute/code-style?hl=ko 89 | - https://source.android.com/setup/contribute/code-style?hl=ja 90 | - https://source.android.com/setup/contribute/code-style?hl=es-419 91 | - https://source.android.com/setup/build/building-kernels 92 | - https://source.android.com/setup/build/building-kernels?hl=zh-cn 93 | - https://source.android.com/setup/build/building-kernels?hl=pt-br 94 | - https://source.android.com/setup/build/building-kernels?hl=ko 95 | - https://source.android.com/setup/build/building-kernels?hl=ja 96 | - https://source.android.com/setup/build/building-kernels?hl=es-419 97 | - https://source.android.com/setup/start/brands 98 | - https://source.android.com/setup/start/brands?hl=zh-cn 99 | - https://source.android.com/setup/start/brands?hl=pt-br 100 | - https://source.android.com/setup/start/brands?hl=ja 101 | - https://source.android.com/setup/start/brands?hl=ko 102 | - https://source.android.com/setup/start/brands?hl=es-419 103 | - https://source.android.com/setup/start/p-release-notes 104 | - https://source.android.com/setup/start/p-release-notes?hl=zh-cn 105 | - https://source.android.com/setup/start/p-release-notes?hl=pt-br 106 | - https://source.android.com/setup/start/p-release-notes?hl=ko 107 | - https://source.android.com/setup/start/p-release-notes?hl=es-419 108 | - https://source.android.com/setup/start/p-release-notes?hl=ja 109 | - https://source.android.com/setup/contribute/flash 110 | - https://source.android.com/setup/contribute/flash?hl=ja 111 | - https://source.android.com/setup/contribute/flash?hl=ko 112 | - https://source.android.com/setup/contribute/flash?hl=es-419 113 | - https://source.android.com/setup/contribute/flash?hl=pt-br 114 | - https://source.android.com/setup/contribute/flash?hl=zh-cn 115 | - https://source.android.com/setup/create/cuttlefish-ref-webrtc 116 | - https://source.android.com/setup/create/cuttlefish-ref-webrtc?hl=zh-cn 117 | - https://source.android.com/setup/create/cuttlefish-ref-webrtc?hl=es-419 118 | - https://source.android.com/setup/create/cuttlefish-ref-webrtc?hl=ja 119 | - https://source.android.com/setup/create/cuttlefish-ref-webrtc?hl=ko 120 | - https://source.android.com/setup/create/cuttlefish-ref-webrtc?hl=pt-br 121 | - https://source.android.com/setup/build/jack 122 | - https://source.android.com/setup/build/jack?hl=zh-cn 123 | - https://source.android.com/setup/build/jack?hl=pt-br 124 | - https://source.android.com/setup/build/jack?hl=ko 125 | - https://source.android.com/setup/build/jack?hl=ja 126 | - https://source.android.com/setup/build/jack?hl=es-419 127 | - https://source.android.com/setup/create/avd 128 | - https://source.android.com/setup/create/avd?hl=pt-br 129 | - https://source.android.com/setup/create/avd?hl=zh-cn 130 | - https://source.android.com/setup/create/avd?hl=ko 131 | - https://source.android.com/setup/create/avd?hl=ja 132 | - https://source.android.com/setup/create/avd?hl=es-419 133 | - https://source.android.com/setup/build/running 134 | - https://source.android.com/setup/build/running?hl=zh-cn 135 | - https://source.android.com/setup/build/running?hl=pt-br 136 | - https://source.android.com/setup/build/running?hl=ko 137 | - https://source.android.com/setup/build/running?hl=ja 138 | - https://source.android.com/setup/build/running?hl=es-419 139 | - https://source.android.com/setup/develop/64-bit-builds 140 | - https://source.android.com/setup/develop/64-bit-builds?hl=zh-cn 141 | - https://source.android.com/setup/develop/64-bit-builds?hl=pt-br 142 | - https://source.android.com/setup/develop/64-bit-builds?hl=ko 143 | - https://source.android.com/setup/develop/64-bit-builds?hl=ja 144 | - https://source.android.com/setup/develop/64-bit-builds?hl=es-419 145 | - https://source.android.com/setup/contribute/code-search 146 | - https://source.android.com/setup/contribute/code-search?hl=pt-br 147 | - https://source.android.com/setup/contribute/code-search?hl=ko 148 | - https://source.android.com/setup/contribute/code-search?hl=zh-cn 149 | - https://source.android.com/setup/contribute/code-search?hl=es-419 150 | - https://source.android.com/setup/contribute/code-search?hl=ja 151 | - https://source.android.com/setup/contribute/report-bugs 152 | - https://source.android.com/setup/contribute/report-bugs?hl=zh-cn 153 | - https://source.android.com/setup/contribute/report-bugs?hl=pt-br 154 | - https://source.android.com/setup/contribute/report-bugs?hl=ko 155 | - https://source.android.com/setup/contribute/report-bugs?hl=ja 156 | - https://source.android.com/setup/contribute/report-bugs?hl=es-419 157 | - https://source.android.com/setup/contribute/life-of-a-bug 158 | - https://source.android.com/setup/contribute/life-of-a-bug?hl=zh-cn 159 | - https://source.android.com/setup/contribute/life-of-a-bug?hl=pt-br 160 | - https://source.android.com/setup/contribute/life-of-a-bug?hl=ko 161 | - https://source.android.com/setup/contribute/life-of-a-bug?hl=ja 162 | - https://source.android.com/setup/contribute/life-of-a-bug?hl=es-419 163 | - https://source.android.com/setup/start/roles 164 | - https://source.android.com/setup/start/roles?hl=zh-cn 165 | - https://source.android.com/setup/start/roles?hl=pt-br 166 | - https://source.android.com/setup/start/roles?hl=ja 167 | - https://source.android.com/setup/start/roles?hl=ko 168 | - https://source.android.com/setup/start/roles?hl=es-419 169 | - https://source.android.com/setup 170 | - https://source.android.com/setup?hl=zh-cn 171 | - https://source.android.com/setup?hl=pt-br 172 | - https://source.android.com/setup?hl=ja 173 | - https://source.android.com/setup?hl=ko 174 | - https://source.android.com/setup?hl=es-419 175 | - https://source.android.com/setup/build/downloading 176 | - https://source.android.com/setup/build/downloading?hl=zh-cn 177 | - https://source.android.com/setup/build/downloading?hl=pt-br 178 | - https://source.android.com/setup/build/downloading?hl=ko 179 | - https://source.android.com/setup/build/downloading?hl=ja 180 | - https://source.android.com/setup/build/downloading?hl=es-419 181 | - https://source.android.com/setup/contribute 182 | - https://source.android.com/setup/contribute?hl=zh-cn 183 | - https://source.android.com/setup/contribute?hl=pt-br 184 | - https://source.android.com/setup/contribute?hl=ko 185 | - https://source.android.com/setup/contribute?hl=ja 186 | - https://source.android.com/setup/contribute?hl=es-419 187 | - https://source.android.com/setup/contribute/read-bug-reports 188 | - https://source.android.com/setup/contribute/read-bug-reports?hl=zh-cn 189 | - https://source.android.com/setup/contribute/read-bug-reports?hl=pt-br 190 | - https://source.android.com/setup/contribute/read-bug-reports?hl=ko 191 | - https://source.android.com/setup/contribute/read-bug-reports?hl=ja 192 | - https://source.android.com/setup/contribute/read-bug-reports?hl=es-419 193 | - https://source.android.com/setup/build/devices 194 | - https://source.android.com/setup/build/devices?hl=ko 195 | - https://source.android.com/setup/build/devices?hl=pt-br 196 | - https://source.android.com/setup/build/devices?hl=zh-cn 197 | - https://source.android.com/setup/build/devices?hl=es-419 198 | - https://source.android.com/setup/build/devices?hl=ja 199 | - https://source.android.com/setup/develop/repo 200 | - https://source.android.com/setup/develop/repo?hl=zh-cn 201 | - https://source.android.com/setup/develop/repo?hl=pt-br 202 | - https://source.android.com/setup/develop/repo?hl=ko 203 | - https://source.android.com/setup/develop/repo?hl=ja 204 | - https://source.android.com/setup/develop/repo?hl=es-419 205 | - https://source.android.com/setup/build/older-versions 206 | - https://source.android.com/setup/build/older-versions?hl=pt-br 207 | - https://source.android.com/setup/build/older-versions?hl=zh-cn 208 | - https://source.android.com/setup/build/older-versions?hl=ko 209 | - https://source.android.com/setup/build/older-versions?hl=ja 210 | - https://source.android.com/setup/build/older-versions?hl=es-419 211 | - https://source.android.com/setup/create/cuttlefish 212 | - https://source.android.com/setup/create/cuttlefish?hl=zh-cn 213 | - https://source.android.com/setup/create/cuttlefish?hl=pt-br 214 | - https://source.android.com/setup/create/cuttlefish?hl=ko 215 | - https://source.android.com/setup/create/cuttlefish?hl=ja 216 | - https://source.android.com/setup/create/cuttlefish?hl=es-419 217 | - https://source.android.com/setup/start/site-updates 218 | - https://source.android.com/setup/start/site-updates?hl=zh-cn 219 | - https://source.android.com/setup/start/site-updates?hl=pt-br 220 | - https://source.android.com/setup/start/site-updates?hl=ja 221 | - https://source.android.com/setup/start/site-updates?hl=ko 222 | - https://source.android.com/setup/start/site-updates?hl=es-419 223 | - https://source.android.com/setup/contribute/source-editor 224 | - https://source.android.com/setup/contribute/source-editor?hl=es-419 225 | - https://source.android.com/setup/contribute/source-editor?hl=zh-cn 226 | - https://source.android.com/setup/contribute/source-editor?hl=pt-br 227 | - https://source.android.com/setup/contribute/source-editor?hl=ko 228 | - https://source.android.com/setup/contribute/source-editor?hl=ja 229 | - https://source.android.com/setup/build/known-issues 230 | - https://source.android.com/setup/build/known-issues?hl=zh-cn 231 | - https://source.android.com/setup/build/known-issues?hl=pt-br 232 | - https://source.android.com/setup/build/known-issues?hl=ko 233 | - https://source.android.com/setup/build/known-issues?hl=ja 234 | - https://source.android.com/setup/build/known-issues?hl=es-419 235 | - https://source.android.com/setup/build/dashboard 236 | - https://source.android.com/setup/build/dashboard?hl=zh-cn 237 | - https://source.android.com/setup/build/dashboard?hl=pt-br 238 | - https://source.android.com/setup/build/dashboard?hl=ko 239 | - https://source.android.com/setup/build/dashboard?hl=ja 240 | - https://source.android.com/setup/build/dashboard?hl=es-419 241 | - https://source.android.com/setup/build/initializing 242 | - https://source.android.com/setup/build/initializing?hl=zh-cn 243 | - https://source.android.com/setup/build/initializing?hl=pt-br 244 | - https://source.android.com/setup/build/initializing?hl=ko 245 | - https://source.android.com/setup/build/initializing?hl=ja 246 | - https://source.android.com/setup/build/initializing?hl=es-419 247 | - https://source.android.com/setup/contribute/life-of-a-patch 248 | - https://source.android.com/setup/contribute/life-of-a-patch?hl=zh-cn 249 | - https://source.android.com/setup/contribute/life-of-a-patch?hl=pt-br 250 | - https://source.android.com/setup/contribute/life-of-a-patch?hl=ko 251 | - https://source.android.com/setup/contribute/life-of-a-patch?hl=ja 252 | - https://source.android.com/setup/contribute/life-of-a-patch?hl=es-419 253 | - https://source.android.com/setup/build/building-kernels-deprecated 254 | - https://source.android.com/setup/build/building-kernels-deprecated?hl=pt-br 255 | - https://source.android.com/setup/build/building-kernels-deprecated?hl=zh-cn 256 | - https://source.android.com/setup/build/building-kernels-deprecated?hl=ko 257 | - https://source.android.com/setup/build/building-kernels-deprecated?hl=es-419 258 | - https://source.android.com/setup/build/building-kernels-deprecated?hl=ja 259 | - https://source.android.com/setup/create/cuttlefish-ref-gpu 260 | - https://source.android.com/setup/create/cuttlefish-ref-gpu?hl=zh-cn 261 | - https://source.android.com/setup/create/cuttlefish-ref-gpu?hl=es-419 262 | - https://source.android.com/setup/create/cuttlefish-ref-gpu?hl=ja 263 | - https://source.android.com/setup/create/cuttlefish-ref-gpu?hl=ko 264 | - https://source.android.com/setup/create/cuttlefish-ref-gpu?hl=pt-br 265 | - https://source.android.com/setup/develop 266 | - https://source.android.com/setup/develop?hl=zh-cn 267 | - https://source.android.com/setup/develop?hl=pt-br 268 | - https://source.android.com/setup/develop?hl=ko 269 | - https://source.android.com/setup/develop?hl=ja 270 | - https://source.android.com/setup/develop?hl=es-419 271 | - https://source.android.com/setup/start 272 | - https://source.android.com/setup/start?hl=ko 273 | - https://source.android.com/setup/start?hl=es-419 274 | - https://source.android.com/setup/start?hl=ja 275 | - https://source.android.com/setup/start?hl=pt-br 276 | - https://source.android.com/setup/start?hl=zh-cn 277 | - https://source.android.com/setup/start/faqs 278 | - https://source.android.com/setup/start/faqs?hl=zh-cn 279 | - https://source.android.com/setup/start/faqs?hl=pt-br 280 | - https://source.android.com/setup/start/faqs?hl=ja 281 | - https://source.android.com/setup/start/faqs?hl=ko 282 | - https://source.android.com/setup/start/faqs?hl=es-419 283 | - https://source.android.com/setup/create/cuttlefish-cts 284 | - https://source.android.com/setup/create/cuttlefish-cts?hl=ja 285 | - https://source.android.com/setup/create/cuttlefish-cts?hl=ko 286 | - https://source.android.com/setup/create/cuttlefish-cts?hl=pt-br 287 | - https://source.android.com/setup/create/cuttlefish-cts?hl=zh-cn 288 | - https://source.android.com/setup/create/cuttlefish-cts?hl=es-419 289 | - https://source.android.com/setup/build 290 | - https://source.android.com/setup/build?hl=pt-br 291 | - https://source.android.com/setup/build?hl=zh-cn 292 | - https://source.android.com/setup/build?hl=ko 293 | - https://source.android.com/setup/build?hl=ja 294 | - https://source.android.com/setup/build?hl=es-419 295 | - https://source.android.com/setup/start/build-numbers 296 | - https://source.android.com/setup/start/build-numbers?hl=zh-cn 297 | - https://source.android.com/setup/start/build-numbers?hl=pt-br 298 | - https://source.android.com/setup/start/build-numbers?hl=ja 299 | - https://source.android.com/setup/start/build-numbers?hl=ko 300 | - https://source.android.com/setup/start/build-numbers?hl=es-419 301 | - https://source.android.com/setup/build/requirements 302 | - https://source.android.com/setup/build/requirements?hl=zh-cn 303 | - https://source.android.com/setup/build/requirements?hl=pt-br 304 | - https://source.android.com/setup/build/requirements?hl=ko 305 | - https://source.android.com/setup/build/requirements?hl=ja 306 | - https://source.android.com/setup/build/requirements?hl=es-419 307 | - https://source.android.com/setup/contribute/view-patches 308 | - https://source.android.com/setup/contribute/view-patches?hl=zh-cn 309 | - https://source.android.com/setup/contribute/view-patches?hl=pt-br 310 | - https://source.android.com/setup/contribute/view-patches?hl=ko 311 | - https://source.android.com/setup/contribute/view-patches?hl=ja 312 | - https://source.android.com/setup/contribute/view-patches?hl=es-419 313 | - https://source.android.com/setup/contribute/respectful-code 314 | - https://source.android.com/setup/contribute/respectful-code?hl=es-419 315 | - https://source.android.com/setup/contribute/respectful-code?hl=ko 316 | - https://source.android.com/setup/contribute/respectful-code?hl=zh-cn 317 | - https://source.android.com/setup/contribute/respectful-code?hl=ja 318 | - https://source.android.com/setup/contribute/respectful-code?hl=pt-br 319 | - https://source.android.com/setup/contribute/respectful-code?hl=ar 320 | - https://source.android.com/setup/contribute/respectful-code?hl=fr 321 | - https://source.android.com/setup/contribute/respectful-code?hl=vi 322 | - https://source.android.com/setup/contribute/respectful-code?hl=bn 323 | - https://source.android.com/setup/contribute/respectful-code?hl=fa 324 | - https://source.android.com/setup/contribute/respectful-code?hl=pl 325 | - https://source.android.com/setup/contribute/respectful-code?hl=hi 326 | - https://source.android.com/setup/contribute/respectful-code?hl=ru 327 | - https://source.android.com/setup/contribute/respectful-code?hl=id 328 | - https://source.android.com/setup/contribute/respectful-code?hl=tr 329 | - https://source.android.com/setup/contribute/respectful-code?hl=it 330 | - https://source.android.com/setup/contribute/respectful-code?hl=de 331 | - https://source.android.com/setup/contribute/respectful-code?hl=zh-tw 332 | - https://source.android.com/setup/contribute/respectful-code?hl=th 333 | - https://source.android.com/setup/contribute/respectful-code?hl=he -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |

Android Sitemap


3 | 4 |

5 | :eyeglasses: Every link ever to Android Developer site. 6 |

7 |
8 | 9 |

10 | Android Language Badge 11 | androiddevnotes GitHub badge 12 |

13 | 14 |
15 |

16 | android sitemap banner 17 |


18 | 19 | **Android Sitemap** aims to be your starting point to find every link pointing to Android Developer sites: [Android Developers](https://developer.android.com/) and [Android Open Source Project](https://source.android.com/). 20 | 21 | The repository was created to see the full scope of Android documentation guides and reference APIs. Some gems like [API diff](sdk.md), [Android Open Source Project reference APIs](source-reference.md) were discovered in the process which I find very interesting. 22 | 23 | The repository contains only links and no meta information like Title, Description for now as there are 50000+ links. 24 | 25 | The content is generated from [Android Developer Sitemap](https://developer.android.com/sitemap.xml) and [Android Source Sitemap.](https://source.android.com/sitemap.xml) 26 | 27 | ## Contents 28 | 29 | - [**Android Developers**](#android-developers) 30 | 31 | - [SM](#sm) 32 | - [About](#about) 33 | - [Cars](#cars) 34 | - [Docs](#docs) 35 | - [NDK](#ndk) 36 | - [Series](#series) 37 | - [Community Guidelines](#community-guidelines) 38 | - [Distribute](#distribute) 39 | - [Codelabs](#codelabs) 40 | - [android11](#android11) 41 | - [Chrome OS](#chrome-os) 42 | - [Newsletter](#newsletter) 43 | - [Android Dev Summit](#android-dev-summit) 44 | - [Courses](#courses) 45 | - [News](#news) 46 | - [Privacy](#privacy) 47 | - [Things](#things) 48 | - [Kotlin](#kotlin) 49 | - [Security](#security) 50 | - [Machine Learning](#machine-learning) 51 | - [Work](#work) 52 | - [gamegenrereports](#gamegenrereports) 53 | - [Training](#training) 54 | - [Wear](#wear) 55 | - [Modern Android Development](#modern-android-development) 56 | - [Topic](#topic) 57 | - [Subscribe](#subscribe) 58 | - [Jetpack](#jetpack) 59 | - [Design](#design) 60 | - [Platform](#platform) 61 | - [TV](#tv) 62 | - [SDK](#sdk) 63 | - [Helpful Innovation](#helpful-innovation) 64 | - [Podcasts](#podcasts) 65 | - [Stories](#stories) 66 | - [11weeksofandroid](#11weeksofandroid) 67 | - [Games](#games) 68 | - [Reference](#reference) 69 | - [Guide](#guide) 70 | - [Studio](#studio) 71 | - [Google Play](#google-play) 72 | - [Google](#google) 73 | - [Samples](#samples) 74 | - [Teach](#teach) 75 | - [Quality](#quality) 76 | 77 | - [**Android Open Source Project**](#android-open-source-project) 78 | 79 | - [SM](#sm-1) 80 | - [Compatibility](#compatibility) 81 | - [Devices](#devices) 82 | - [Setup](#setup) 83 | - [Security](#security-1) 84 | - [Reference](#reference-1) 85 | 86 | :memo: [**Contributing**](#memo-contributing) 87 | 88 | :seedling: [**Contributors**](#seedling-contributors) 89 | 90 | 91 | # Android Developers 92 | 93 | https://developer.android.com - Android Developers. The official site for Android developers. Provides the Android SDK and documentation for app developers and designers. 94 | 95 | ## [SM](sm.md) 96 | 97 | - About: Support, legal. 98 | 99 | - Link Count: 10 100 | 101 | - [**See all links**](sm.md) 102 | 103 | ## [About](about.md) 104 | 105 | - About: Android platform versions, releases. 106 | 107 | - Link Count: 421 108 | 109 | - [**See all links**](about.md) 110 | 111 | ## [Cars](cars.md) 112 | 113 | - About: Android for Cars. 114 | 115 | - Build apps that help users connect on the road through Android Automotive OS and Android Auto. Users who have a vehicle with Android Automotive OS can install your app onto their vehicle's infotainment system. Android Auto lets users connect their phone (Android 5.0 or higher) to a compatible vehicle to display a driver-optimized version of your app directly on the console. 116 | 117 | - Link Count: 7 118 | 119 | - [**See all links**](cars.md) 120 | 121 | ## [Docs](docs.md) 122 | 123 | - About: Documentation for app developers. 124 | 125 | - Whether you're building for Android handsets, Wear OS by Google, Android TV, Android Auto, or Android Things, this section provides the guides and API reference you need. 126 | 127 | - Link Count: 55 128 | 129 | - [**See all links**](docs.md) 130 | 131 | ## [NDK](ndk.md) 132 | 133 | - About: Android NDK guides, references, samples, downloads. 134 | 135 | - The Android NDK is a toolset that lets you implement parts of your app in native code, using languages such as C and C++. For certain types of apps, this can help you reuse code libraries written in those languages. 136 | 137 | - Link Count: 486 138 | 139 | - [**See all links**](ndk.md) 140 | 141 | ## [Series](series.md) 142 | 143 | - About: Android series like [MAD Skills](https://developer.android.com/series/mad-skills), [Now in Android](https://developer.android.com/series/now-in-android) 144 | 145 | - The Android NDK is a toolset that lets you implement parts of your app in native code, using languages such as C and C++. For certain types of apps, this can help you reuse code libraries written in those languages. 146 | 147 | - Link Count: 2 148 | 149 | - [**See all links**](series.md) 150 | 151 | ## [Community Guidelines](community-guidelines.md) 152 | 153 | - About: Google Community Guidelines and Anti-Harassment Policy for In-Person and Virtual Events 154 | 155 | - Link Count: 7 156 | 157 | - [**See all links**](community-guidelines.md) 158 | 159 | ## [Distribute](distribute.md) 160 | 161 | - About: Google Play distribution. 162 | 163 | - With the ability to publish rapidly to over 2 billion active Android devices, Google Play helps you grow a global audience for your apps and games and earn revenue. 164 | 165 | - Link Count: 595 166 | 167 | - [**See all links**](distribute.md) 168 | 169 | ## [Codelabs](codelabs.md) 170 | 171 | - About: Google Codelabs. 172 | 173 | - Google Developers Codelabs provide a guided, tutorial, hands-on coding experience. Most codelabs will step you through the process of building a small application, or adding a new feature to an existing application. They cover a wide range of topics such as Android Wear, Google Compute Engine, Project Tango, and Google APIs on iOS. 174 | 175 | - Link Count: 215 176 | 177 | - [**See all links**](codelabs.md) 178 | 179 | ## [android11](android11.md) 180 | 181 | - About: Android 11. 182 | 183 | - We've got all the important announcements you need for the beta launch here. Check out all the new features in the newest release of Android by downloading the Android 11 beta. Keep the conversation going using #Android11. 184 | 185 | - Link Count: 14 186 | 187 | - [**See all links**](android11.md) 188 | 189 | ## [Chrome OS](chrome-os.md) 190 | 191 | - About: Chrome OS devices. 192 | 193 | - You can distribute your Android apps to Google Chrome OS devices, such as Chromebooks, through Google Play Store. 194 | 195 | - Link Count: 8 196 | 197 | - [**See all links**](chrome-os.md) 198 | 199 | ## [Newsletter](newsletter.md) 200 | 201 | - About: Developer Newsletters. 202 | 203 | - The latest developer news and tips to help you succeed with Google Play, Android, and games. 204 | 205 | - Link Count: 52 206 | 207 | - [**See all links**](newsletter.md) 208 | 209 | ## [Android Dev Summit](android-dev-summit.md) 210 | 211 | - About: Android Dev Summit. 212 | 213 | - Link Count: 14 214 | 215 | - [**See all links**](android-dev-summit.md) 216 | 217 | ## [Courses](courses.md) 218 | 219 | - About: Android Courses. 220 | 221 | - Find the training option that's right for you. 222 | 223 | - Link Count: 87 224 | 225 | - [**See all links**](courses.md) 226 | 227 | ## [News](news.md) 228 | 229 | - About: News. 230 | 231 | - Keep up to date with what's going on in the Android universe: every source; one place. 232 | 233 | - Link Count: 7 234 | 235 | - [**See all links**](news.md) 236 | 237 | ## [Privacy](privacy.md) 238 | 239 | - About: Build privacy-friendly apps. 240 | 241 | - Android is focused on helping users take advantage of the latest innovations, while making sure users' security and privacy are always a top priority. 242 | 243 | We've added various improvements to protect user privacy over a number of Android releases. These improvements have implications on specific app behaviors or how data may be processed. This page includes best practices and resources to help developers design and implement privacy-friendly apps. 244 | 245 | - Link Count: 14 246 | 247 | - [**See all links**](privacy.md) 248 | 249 | ## [Things](things.md) 250 | 251 | - About: Android Things. 252 | 253 | - Android Things lets you experiment with building smart, connected device applications. 254 | 255 | - Link Count: 62 256 | 257 | - [**See all links**](things.md) 258 | 259 | ## [Kotlin](kotlin.md) 260 | 261 | - About: Develop Android apps with Kotlin. 262 | 263 | - Write better Android apps faster with Kotlin. Kotlin is a modern statically typed programming language used by over 60% of professional Android developers that helps boost productivity, developer satisfaction, and code safety. 264 | 265 | - Link Count: 178 266 | 267 | - [**See all links**](kotlin.md) 268 | 269 | ## [Security](security.md) 270 | 271 | - About: Implement security by design for your apps. 272 | 273 | - Our goal is to make Android the safest mobile platform in the world. That's why we consistently invest in technologies that bolster the security of the platform, its apps, and the global Android ecosystem. 274 | 275 | It's a responsibility we share with you, as developers, to keep users safe and secure. 276 | 277 | - Link Count: 2 278 | 279 | - [**See all links**](security.md) 280 | 281 | ## [Machine Learning](ml.md) 282 | 283 | - About: Build smarter apps with machine learning. 284 | 285 | - Machine learning (ML) is a programming technique that provides your apps the ability to automatically learn and improve from experience without being explicitly programmed to do so. This is especially well-suited for apps that utilize unstructured data such as images and text, or problems with large number of parameters such as predicting the winning sports team. 286 | 287 | Android supports a wide variety of machine learning tools and methods: The ML design guides, Google's turnkey machine learning SDK ML Kit, TF Hub for finding pre-built cutting edge models, TF Lite Model Maker to train an existing model with your own data, and ML Kit custom models and Android Studio for integrating these models into your app. The choice is yours. 288 | 289 | - Link Count: 7 290 | 291 | - [**See all links**](ml.md) 292 | 293 | ## [Work](work.md) 294 | 295 | - About: Android for enterprise. 296 | 297 | - Android provides organizations with a secure and flexible mobility platform—combining devices, apps, and management. 298 | 299 | - Link Count: 43 300 | 301 | - [**See all links**](work.md) 302 | 303 | ## [gamegenrereports](gamegenrereports.md) 304 | 305 | - About: The 4X Strategy report. 306 | 307 | - Though it has a high learning curve for new players, the 4X strategy genre remains one of the most monetized game genres across Google Play. Read this report for suggestions on how to capture the high potential of this market. 308 | 309 | - Link Count: 1 310 | 311 | - [**See all links**](gamegenrereports.md) 312 | 313 | ## [Training](training.md) 314 | 315 | - About: Android Training. 316 | 317 | - Link Count: 2706 318 | 319 | - [**See all links**](training.md) 320 | 321 | ## [Wear](wear.md) 322 | 323 | - About: Wear OS by Google. 324 | 325 | - Make every minute matter with Wear OS by Google. Smartwatches that keep you connected to your health, the people and info you care about, and your Google Assistant — all from your wrist. 326 | 327 | - Link Count: 8 328 | 329 | - [**See all links**](wear.md) 330 | 331 | ## [Modern Android Development](modern-android-development.md) 332 | 333 | - About: Use the latest technologies of Modern Android Development to create better applications more easily. 334 | 335 | - Link Count: 7 336 | 337 | - [**See all links**](modern-android-development.md) 338 | 339 | ## [Topic](topic.md) 340 | 341 | - About: Android Topics. 342 | 343 | - Link Count: 947 344 | 345 | - [**See all links**](topic.md) 346 | 347 | ## [Subscribe](subscribe.md) 348 | 349 | - About: Subscribe to Android developers updates. 350 | 351 | - Link Count: 1 352 | 353 | - [**See all links**](subscribe.md) 354 | 355 | ## [Jetpack](jetpack.md) 356 | 357 | - About: Android Jetpack. 358 | 359 | - Jetpack is a suite of libraries to help developers follow best practices, reduce boilerplate code, and write code that works consistently across Android versions and devices so that developers can focus on the code they care about. 360 | 361 | - Link Count: 813 362 | 363 | - [**See all links**](jetpack.md) 364 | 365 | ## [Design](design.md) 366 | 367 | - About: Design for Android. 368 | 369 | - Android users expect your app to look and behave in a way that's consistent with the platform. Not only should you follow material design guidelines for visual and navigation patterns, but you should also follow quality guidelines for compatibility, performance, security, and more. 370 | 371 | - Link Count: 7 372 | 373 | - [**See all links**](design.md) 374 | 375 | ## [Platform](platform.md) 376 | 377 | - About: Android Platform. 378 | 379 | - Link Count: 7 380 | 381 | - [**See all links**](platform.md) 382 | 383 | ## [TV](tv.md) 384 | 385 | - About: Android TV. 386 | 387 | - Build apps that let users experience your app's immersive content on the big screen. Users can discover your content recommendations on the home screen, and the leanback library provides APIs to help you build a great use experience for a remote control. 388 | 389 | - Link Count: 11 390 | 391 | - [**See all links**](tv.md) 392 | 393 | ## [SDK](sdk.md) 394 | 395 | - About: API diff. 396 | 397 | - JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared. 398 | 399 | - Link Count: 13620 400 | 401 | - [**See all links**](sdk.md) 402 | 403 | ## [Helpful Innovation](helpful-innovation.md) 404 | 405 | - About: Android Developer Challenge, Helpful Innovations. 406 | 407 | - Link Count: 1 408 | 409 | - [**See all links**](helpful-innovation.md) 410 | 411 | ## [Podcasts](podcasts.md) 412 | 413 | - About: Apps, Games, & Insights Podcast. 414 | 415 | - For developers, business decision makers, and enthusiasts in the apps and games industry the Apps, Games, & Insights podcast series brings the latest insights, stories, and discussion from industry experts. Episodes cover topics from responsible engagement, through advice from mergers and acquisitions and venture capital experts, to how to build quality apps with Firebase and go from PC to mobile gaming. Also hear discussions on hot topics such as privacy, accessibility, product inclusivity, and around critical areas such as app-based learning and pivoting in times of crisis, and raising awareness of climate change in gaming, and much more. Stay tuned and follow us for the latest episodes. 416 | 417 | - Link Count: 15 418 | 419 | - [**See all links**](podcasts.md) 420 | 421 | ## [Stories](stories.md) 422 | 423 | - About: Developer stories. 424 | 425 | - How developers are finding success with Android, Google Play, and Jetpack. 426 | 427 | - Link Count: 449 428 | 429 | - [**See all links**](stories.md) 430 | 431 | ## [11weeksofandroid](11weeksofandroid.md) 432 | 433 | - About: 11 Weeks of Android. 434 | 435 | - Link Count: 1 436 | 437 | - [**See all links**](11weeksofandroid.md) 438 | 439 | ## [Games](games.md) 440 | 441 | - About: Build Games for Android. 442 | 443 | - Learn how to build amazing mobile games that can reach more than 2 billion people who use Android devices. Find resources and tools under 3 categories: Develop, Optimize, Launch and Iterate to amplify your success at every stage of development and build a sustainable, profitable business. 444 | 445 | - Link Count: 479 446 | 447 | - [**See all links**](games.md) 448 | 449 | ## [Reference](reference.md) 450 | 451 | - About: Android API reference. 452 | 453 | - Start building your Android app with the Android Platform APIs. They are available in Kotlin and Java. 454 | 455 | - Link Count: 16695 456 | 457 | - [**See all links**](reference.md) 458 | 459 | ## [Guide](guide.md) 460 | 461 | - About: Developer Guides. 462 | 463 | - Welcome to the Android developer guides. These documents teach you how to build Android apps using APIs in the Android framework and other libraries. 464 | 465 | - Link Count: 2188 466 | 467 | - [**See all links**](guide.md) 468 | 469 | ## [Studio](studio.md) 470 | 471 | - About: Android Studio / Android SDK. 472 | 473 | - Android Studio provides the fastest tools for building apps on every type of Android device. 474 | 475 | - Link Count: 1007 476 | 477 | - [**See all links**](studio.md) 478 | 479 | ## [Google Play](google-play.md) 480 | 481 | - About: Google Play guides and resources. 482 | 483 | - Link Count: 63 484 | 485 | - [**See all links**](google-play.md) 486 | 487 | ## [Google](google.md) 488 | 489 | - About: Google Play services, billing, licensing, App security improvement program, publishing, Filters on Google Play, Google Play Developer API, Google Play Install Referrer, Google Play Distribution 490 | 491 | - Link Count: 238 492 | 493 | - [**See all links**](google.md) 494 | 495 | ## [Samples](samples.md) 496 | 497 | - About: Android Sample apps. 498 | 499 | - Link Count: 7 500 | 501 | - [**See all links**](samples.md) 502 | 503 | ## [Teach](teach.md) 504 | 505 | - About: Android Development Resources for Educators. 506 | 507 | - Link Count: 1 508 | 509 | - [**See all links**](teach.md) 510 | 511 | ## [Quality](quality.md) 512 | 513 | - About: Build high-quality apps. 514 | 515 | - Link Count: 1 516 | 517 | - [**See all links**](teach.md) 518 | 519 |
520 | 521 | # Android Open Source Project 522 | 523 | https://source.android.com - Android Open Source Project. Android unites the world! Use the open Android Open Source Project operating system to power your device. 524 | 525 | ## [SM](source-sm.md) 526 | 527 | - About: Miscellaneous links. 528 | 529 | - Link Count: 48 530 | 531 | - [**See all links**](source-sm.md) 532 | 533 | ## [Compatibility](compatibility.md) 534 | 535 | - About: Design an Android Device. 536 | 537 | - Being open source, Android offers a near-infinite combination of hardware and software for you to develop devices undreamt by even the operating system's creators. 538 | 539 | Still, for your users to have a coherent experience as they adopt additional Android devices, consider following established standards while designing and customizing your implementation. 540 | 541 | - Link Count: 581 542 | 543 | - [**See all links**](compatibility.md) 544 | 545 | ## [Devices](devices.md) 546 | 547 | - About: Develop an Android Device. 548 | 549 | - As an open source operating system, Android offers device and chip manufacturers [hardware abstraction layers (HALs)](https://source.android.com/devices/architecture) to be implemented as interfaces for common mobile OS functions. 550 | 551 | These HALs now come in the even more portable and persistent [HAL interface definition language (HIDL)](https://source.android.com/devices/architecture/hidl). HIDL enables the framework to be replaced without rebuilding the HALs. 552 | 553 | - Link Count: 2160 554 | 555 | - [**See all links**](devices.md) 556 | 557 | ## [Setup](setup.md) 558 | 559 | - About: Set up for Android Development. 560 | 561 | - Android is an open source software stack created for a wide array of devices with different form factors. Android's primary purpose is to create an open software platform available for carriers, OEMs, and developers to make their innovative ideas a reality and to introduce a successful, real-world product that improves the mobile experience for users. 562 | 563 | Android is designed so that there's no central point of failure, where one industry player restricts or controls the innovations of another. The result is a full, production-quality consumer product with source code open for customization and porting. 564 | 565 | - Link Count: 331 566 | 567 | - [**See all links**](setup.md) 568 | 569 | ## [Security](source-security.md) 570 | 571 | - About: Secure an Android Device. 572 | 573 | - Android incorporates industry-leading security features and works with developers and device implementers to keep the Android platform and ecosystem safe. A robust security model is essential to enable a vigorous ecosystem of apps and devices built on and around the Android platform and supported by cloud services. As a result, through its entire development lifecycle, Android has been subject to a rigorous security program. 574 | 575 | - Link Count: 1002 576 | 577 | - [**See all links**](source-security.md) 578 | 579 | ## [Reference](source-reference.md) 580 | 581 | - About: Reference. 582 | 583 | - Link Count: 22557 584 | 585 | - [**See all links**](source-reference.md) 586 | 587 |
588 | 589 | ## :memo: Contributing 590 | 591 | See [contributing.md](contributing.md) 592 | 593 | ## :seedling: Contributors 594 | 595 | Thank you to all the contributors! 596 | 597 | 598 | 599 | 600 | 601 |
viveksharma2382000
602 | 603 | ## :computer: Find us on 604 | 605 |
606 | GitHub / Discord / Twitter / Instagram / YouTube / Medium 607 |

608 | androiddevnotes logo 609 |
-------------------------------------------------------------------------------- /stories.md: -------------------------------------------------------------------------------- 1 | ## [Stories](https://developer.android.com/stories/sitemap.xml) 2 | 3 | - https://developer.android.com/stories/apps/adobe-app-bundle 4 | - https://developer.android.com/stories/games/onesoft 5 | - https://developer.android.com/stories/games/onesoft?hl=es_419 6 | - https://developer.android.com/stories/games/onesoft?hl=id 7 | - https://developer.android.com/stories/games/onesoft?hl=ja 8 | - https://developer.android.com/stories/games/onesoft?hl=ko 9 | - https://developer.android.com/stories/games/onesoft?hl=zh_cn 10 | - https://developer.android.com/stories/games/onesoft?hl=pt_br 11 | - https://developer.android.com/stories/instant-apps/playtika 12 | - https://developer.android.com/stories/apps/lifull 13 | - https://developer.android.com/stories/apps/lifull?hl=zh-cn 14 | - https://developer.android.com/stories/apps/lifull?hl=ja 15 | - https://developer.android.com/stories/apps/lifull?hl=ko 16 | - https://developer.android.com/stories/apps/lifull?hl=pt-br 17 | - https://developer.android.com/stories/apps/lifull?hl=es-419 18 | - https://developer.android.com/stories/apps/lifull?hl=id 19 | - https://developer.android.com/stories/instant-apps 20 | - https://developer.android.com/stories/instant-apps/evino 21 | - https://developer.android.com/stories/instant-apps/hollar 22 | - https://developer.android.com/stories/instant-apps/viki 23 | - https://developer.android.com/stories/games/g4a-indian-rummy 24 | - https://developer.android.com/stories/games/g4a-indian-rummy?hl=es_419 25 | - https://developer.android.com/stories/games/g4a-indian-rummy?hl=id 26 | - https://developer.android.com/stories/games/g4a-indian-rummy?hl=ja 27 | - https://developer.android.com/stories/games/g4a-indian-rummy?hl=ko 28 | - https://developer.android.com/stories/games/g4a-indian-rummy?hl=zh_cn 29 | - https://developer.android.com/stories/games/g4a-indian-rummy?hl=pt_br 30 | - https://developer.android.com/stories/apps/el-mundo 31 | - https://developer.android.com/stories/apps/el-mundo?hl=es_419 32 | - https://developer.android.com/stories/apps/el-mundo?hl=id 33 | - https://developer.android.com/stories/apps/el-mundo?hl=ja 34 | - https://developer.android.com/stories/apps/el-mundo?hl=ko 35 | - https://developer.android.com/stories/apps/el-mundo?hl=zh_cn 36 | - https://developer.android.com/stories/apps/el-mundo?hl=pt_br 37 | - https://developer.android.com/stories/apps/truecaller 38 | - https://developer.android.com/stories/games/upbeat-games 39 | - https://developer.android.com/stories/games/upbeat-games?hl=es_419 40 | - https://developer.android.com/stories/games/upbeat-games?hl=id 41 | - https://developer.android.com/stories/games/upbeat-games?hl=ja 42 | - https://developer.android.com/stories/games/upbeat-games?hl=ko 43 | - https://developer.android.com/stories/games/upbeat-games?hl=zh_cn 44 | - https://developer.android.com/stories/games/upbeat-games?hl=pt_br 45 | - https://developer.android.com/stories/apps/concepts 46 | - https://developer.android.com/stories/apps/twitter 47 | - https://developer.android.com/stories/games/doctor-who-legacy 48 | - https://developer.android.com/stories/games/doctor-who-legacy?hl=es_419 49 | - https://developer.android.com/stories/games/doctor-who-legacy?hl=id 50 | - https://developer.android.com/stories/games/doctor-who-legacy?hl=ja 51 | - https://developer.android.com/stories/games/doctor-who-legacy?hl=ko 52 | - https://developer.android.com/stories/games/doctor-who-legacy?hl=zh_cn 53 | - https://developer.android.com/stories/games/doctor-who-legacy?hl=pt_br 54 | - https://developer.android.com/stories/games/rvappstudios-zombie 55 | - https://developer.android.com/stories/games/rvappstudios-zombie?hl=es_419 56 | - https://developer.android.com/stories/games/rvappstudios-zombie?hl=id 57 | - https://developer.android.com/stories/games/rvappstudios-zombie?hl=ja 58 | - https://developer.android.com/stories/games/rvappstudios-zombie?hl=ko 59 | - https://developer.android.com/stories/games/rvappstudios-zombie?hl=zh_cn 60 | - https://developer.android.com/stories/games/rvappstudios-zombie?hl=pt_br 61 | - https://developer.android.com/stories/games/hotheadgames-firefight 62 | - https://developer.android.com/stories/games/hotheadgames-firefight?hl=es_419 63 | - https://developer.android.com/stories/games/hotheadgames-firefight?hl=id 64 | - https://developer.android.com/stories/games/hotheadgames-firefight?hl=ja 65 | - https://developer.android.com/stories/games/hotheadgames-firefight?hl=ko 66 | - https://developer.android.com/stories/games/hotheadgames-firefight?hl=zh_cn 67 | - https://developer.android.com/stories/games/hotheadgames-firefight?hl=pt_br 68 | - https://developer.android.com/stories/games/gameloft-pad 69 | - https://developer.android.com/stories/apps/vlc-android-tv 70 | - https://developer.android.com/stories/apps/tokopedia 71 | - https://developer.android.com/stories/games/happy-adda 72 | - https://developer.android.com/stories/games/happy-adda?hl=es_419 73 | - https://developer.android.com/stories/games/happy-adda?hl=id 74 | - https://developer.android.com/stories/games/happy-adda?hl=ja 75 | - https://developer.android.com/stories/games/happy-adda?hl=ko 76 | - https://developer.android.com/stories/games/happy-adda?hl=zh_cn 77 | - https://developer.android.com/stories/games/happy-adda?hl=pt_br 78 | - https://developer.android.com/stories/games/playlab-puzzles 79 | - https://developer.android.com/stories/games/playlab-puzzles?hl=es_419 80 | - https://developer.android.com/stories/games/playlab-puzzles?hl=id 81 | - https://developer.android.com/stories/games/playlab-puzzles?hl=ja 82 | - https://developer.android.com/stories/games/playlab-puzzles?hl=ko 83 | - https://developer.android.com/stories/games/playlab-puzzles?hl=zh_cn 84 | - https://developer.android.com/stories/games/playlab-puzzles?hl=pt_br 85 | - https://developer.android.com/stories/games/happy-labs-experiment 86 | - https://developer.android.com/stories/games/happy-labs-experiment?hl=es_419 87 | - https://developer.android.com/stories/games/happy-labs-experiment?hl=id 88 | - https://developer.android.com/stories/games/happy-labs-experiment?hl=ja 89 | - https://developer.android.com/stories/games/happy-labs-experiment?hl=ko 90 | - https://developer.android.com/stories/games/happy-labs-experiment?hl=zh_cn 91 | - https://developer.android.com/stories/games/happy-labs-experiment?hl=pt_br 92 | - https://developer.android.com/stories/apps/aftenposten 93 | - https://developer.android.com/stories/apps/aftenposten?hl=es_419 94 | - https://developer.android.com/stories/apps/aftenposten?hl=id 95 | - https://developer.android.com/stories/apps/aftenposten?hl=ja 96 | - https://developer.android.com/stories/apps/aftenposten?hl=ko 97 | - https://developer.android.com/stories/apps/aftenposten?hl=zh_cn 98 | - https://developer.android.com/stories/apps/aftenposten?hl=pt_br 99 | - https://developer.android.com/stories/apps/djay2 100 | - https://developer.android.com/stories/games/gram-games 101 | - https://developer.android.com/stories/apps/tinder 102 | - https://developer.android.com/stories/apps/tinder?hl=es_419 103 | - https://developer.android.com/stories/apps/tinder?hl=id 104 | - https://developer.android.com/stories/apps/tinder?hl=ja 105 | - https://developer.android.com/stories/apps/tinder?hl=ko 106 | - https://developer.android.com/stories/apps/tinder?hl=zh_cn 107 | - https://developer.android.com/stories/apps/tinder?hl=pt_br 108 | - https://developer.android.com/stories/instant-apps/wego 109 | - https://developer.android.com/stories/apps/hike 110 | - https://developer.android.com/stories/apps/hike?hl=es_419 111 | - https://developer.android.com/stories/apps/hike?hl=id 112 | - https://developer.android.com/stories/apps/hike?hl=ja 113 | - https://developer.android.com/stories/apps/hike?hl=ko 114 | - https://developer.android.com/stories/apps/hike?hl=zh_cn 115 | - https://developer.android.com/stories/apps/hike?hl=pt_br 116 | - https://developer.android.com/stories/games/glu-tap-baseball 117 | - https://developer.android.com/stories/games/glu-tap-baseball?hl=es_419 118 | - https://developer.android.com/stories/games/glu-tap-baseball?hl=id 119 | - https://developer.android.com/stories/games/glu-tap-baseball?hl=ja 120 | - https://developer.android.com/stories/games/glu-tap-baseball?hl=ko 121 | - https://developer.android.com/stories/games/glu-tap-baseball?hl=zh_cn 122 | - https://developer.android.com/stories/games/glu-tap-baseball?hl=pt_br 123 | - https://developer.android.com/stories/games/panzerdog 124 | - https://developer.android.com/stories/games/tiny-co 125 | - https://developer.android.com/stories/games/tiny-co?hl=es_419 126 | - https://developer.android.com/stories/games/tiny-co?hl=id 127 | - https://developer.android.com/stories/games/tiny-co?hl=ja 128 | - https://developer.android.com/stories/games/tiny-co?hl=ko 129 | - https://developer.android.com/stories/games/tiny-co?hl=zh_cn 130 | - https://developer.android.com/stories/games/tiny-co?hl=pt_br 131 | - https://developer.android.com/stories/games/gameloft-asphalt8 132 | - https://developer.android.com/stories/games/gameloft-asphalt8?hl=es_419 133 | - https://developer.android.com/stories/games/gameloft-asphalt8?hl=id 134 | - https://developer.android.com/stories/games/gameloft-asphalt8?hl=ja 135 | - https://developer.android.com/stories/games/gameloft-asphalt8?hl=ko 136 | - https://developer.android.com/stories/games/gameloft-asphalt8?hl=zh_cn 137 | - https://developer.android.com/stories/games/gameloft-asphalt8?hl=pt_br 138 | - https://developer.android.com/stories/games/war-robots 139 | - https://developer.android.com/stories/games/tapps 140 | - https://developer.android.com/stories/games/tapps?hl=es_419 141 | - https://developer.android.com/stories/games/tapps?hl=id 142 | - https://developer.android.com/stories/games/tapps?hl=ja 143 | - https://developer.android.com/stories/games/tapps?hl=ko 144 | - https://developer.android.com/stories/games/tapps?hl=zh_cn 145 | - https://developer.android.com/stories/games/tapps?hl=pt_br 146 | - https://developer.android.com/stories/instant-apps/realtor-com 147 | - https://developer.android.com/stories/apps/matching-agent 148 | - https://developer.android.com/stories/apps/matching-agent?hl=zh-cn 149 | - https://developer.android.com/stories/apps/matching-agent?hl=ja 150 | - https://developer.android.com/stories/apps/matching-agent?hl=ko 151 | - https://developer.android.com/stories/apps/matching-agent?hl=pt-br 152 | - https://developer.android.com/stories/apps/matching-agent?hl=es-419 153 | - https://developer.android.com/stories/apps/matching-agent?hl=id 154 | - https://developer.android.com/stories/apps/infinite-painter 155 | - https://developer.android.com/stories/apps/infinite-painter?hl=es_419 156 | - https://developer.android.com/stories/apps/infinite-painter?hl=id 157 | - https://developer.android.com/stories/apps/infinite-painter?hl=ja 158 | - https://developer.android.com/stories/apps/infinite-painter?hl=ko 159 | - https://developer.android.com/stories/apps/infinite-painter?hl=zh_cn 160 | - https://developer.android.com/stories/apps/infinite-painter?hl=pt_br 161 | - https://developer.android.com/stories/games/concrete-bowling 162 | - https://developer.android.com/stories/games/concrete-bowling?hl=es_419 163 | - https://developer.android.com/stories/games/concrete-bowling?hl=id 164 | - https://developer.android.com/stories/games/concrete-bowling?hl=ja 165 | - https://developer.android.com/stories/games/concrete-bowling?hl=ko 166 | - https://developer.android.com/stories/games/concrete-bowling?hl=zh_cn 167 | - https://developer.android.com/stories/games/concrete-bowling?hl=pt_br 168 | - https://developer.android.com/stories/apps/sayhi 169 | - https://developer.android.com/stories/apps/sayhi?hl=es_419 170 | - https://developer.android.com/stories/apps/sayhi?hl=id 171 | - https://developer.android.com/stories/apps/sayhi?hl=ja 172 | - https://developer.android.com/stories/apps/sayhi?hl=ko 173 | - https://developer.android.com/stories/apps/sayhi?hl=zh_cn 174 | - https://developer.android.com/stories/apps/sayhi?hl=pt_br 175 | - https://developer.android.com/stories/instant-apps/ultimate-guitar 176 | - https://developer.android.com/stories/apps/economist-espresso 177 | - https://developer.android.com/stories/apps/economist-espresso?hl=es_419 178 | - https://developer.android.com/stories/apps/economist-espresso?hl=id 179 | - https://developer.android.com/stories/apps/economist-espresso?hl=ja 180 | - https://developer.android.com/stories/apps/economist-espresso?hl=ko 181 | - https://developer.android.com/stories/apps/economist-espresso?hl=zh_cn 182 | - https://developer.android.com/stories/apps/economist-espresso?hl=pt_br 183 | - https://developer.android.com/stories/games/rv-appstudios-pad 184 | - https://developer.android.com/stories/instant-apps/mz-game-studio 185 | - https://developer.android.com/stories/instant-apps/mighty-battles 186 | - https://developer.android.com/stories/instant-apps/dotloop 187 | - https://developer.android.com/stories/instant-apps/words-with-friends-2 188 | - https://developer.android.com/stories/games/glu-dh 189 | - https://developer.android.com/stories/games/glu-dh?hl=es_419 190 | - https://developer.android.com/stories/games/glu-dh?hl=id 191 | - https://developer.android.com/stories/games/glu-dh?hl=ja 192 | - https://developer.android.com/stories/games/glu-dh?hl=ko 193 | - https://developer.android.com/stories/games/glu-dh?hl=zh_cn 194 | - https://developer.android.com/stories/games/glu-dh?hl=pt_br 195 | - https://developer.android.com/stories/games/nexon-faith 196 | - https://developer.android.com/stories/apps/expressen-sports 197 | - https://developer.android.com/stories/apps/expressen-sports?hl=es_419 198 | - https://developer.android.com/stories/apps/expressen-sports?hl=id 199 | - https://developer.android.com/stories/apps/expressen-sports?hl=ja 200 | - https://developer.android.com/stories/apps/expressen-sports?hl=ko 201 | - https://developer.android.com/stories/apps/expressen-sports?hl=zh_cn 202 | - https://developer.android.com/stories/apps/expressen-sports?hl=pt_br 203 | - https://developer.android.com/stories/instant-apps/galaxy-attack 204 | - https://developer.android.com/stories/games/gameloft 205 | - https://developer.android.com/stories/games/hashcube 206 | - https://developer.android.com/stories/games/hashcube?hl=es_419 207 | - https://developer.android.com/stories/games/hashcube?hl=id 208 | - https://developer.android.com/stories/games/hashcube?hl=ja 209 | - https://developer.android.com/stories/games/hashcube?hl=ko 210 | - https://developer.android.com/stories/games/hashcube?hl=zh_cn 211 | - https://developer.android.com/stories/games/hashcube?hl=pt_br 212 | - https://developer.android.com/stories/instant-apps/panda-pop 213 | - https://developer.android.com/stories/apps/remember-the-milk 214 | - https://developer.android.com/stories/apps/remember-the-milk?hl=es_419 215 | - https://developer.android.com/stories/apps/remember-the-milk?hl=id 216 | - https://developer.android.com/stories/apps/remember-the-milk?hl=ja 217 | - https://developer.android.com/stories/apps/remember-the-milk?hl=ko 218 | - https://developer.android.com/stories/apps/remember-the-milk?hl=zh_cn 219 | - https://developer.android.com/stories/apps/remember-the-milk?hl=pt_br 220 | - https://developer.android.com/stories/apps/roblox 221 | - https://developer.android.com/stories/apps/roblox?hl=es_419 222 | - https://developer.android.com/stories/apps/roblox?hl=id 223 | - https://developer.android.com/stories/apps/roblox?hl=ja 224 | - https://developer.android.com/stories/apps/roblox?hl=ko 225 | - https://developer.android.com/stories/apps/roblox?hl=zh_cn 226 | - https://developer.android.com/stories/apps/roblox?hl=pt_br 227 | - https://developer.android.com/stories/games/leos-fortune 228 | - https://developer.android.com/stories/games/leos-fortune?hl=es_419 229 | - https://developer.android.com/stories/games/leos-fortune?hl=id 230 | - https://developer.android.com/stories/games/leos-fortune?hl=ja 231 | - https://developer.android.com/stories/games/leos-fortune?hl=ko 232 | - https://developer.android.com/stories/games/leos-fortune?hl=zh_cn 233 | - https://developer.android.com/stories/games/leos-fortune?hl=pt_br 234 | - https://developer.android.com/stories/instant-apps/magma-mobile 235 | - https://developer.android.com/stories/games/dots 236 | - https://developer.android.com/stories/games/dots?hl=es_419 237 | - https://developer.android.com/stories/games/dots?hl=id 238 | - https://developer.android.com/stories/games/dots?hl=ja 239 | - https://developer.android.com/stories/games/dots?hl=ko 240 | - https://developer.android.com/stories/games/dots?hl=zh_cn 241 | - https://developer.android.com/stories/games/dots?hl=pt_br 242 | - https://developer.android.com/stories/games/indie-latam 243 | - https://developer.android.com/stories/games/indie-latam?hl=es_419 244 | - https://developer.android.com/stories/games/indie-latam?hl=id 245 | - https://developer.android.com/stories/games/indie-latam?hl=ja 246 | - https://developer.android.com/stories/games/indie-latam?hl=ko 247 | - https://developer.android.com/stories/games/indie-latam?hl=zh_cn 248 | - https://developer.android.com/stories/games/indie-latam?hl=pt_br 249 | - https://developer.android.com/stories/apps/redbus 250 | - https://developer.android.com/stories/instant-apps/king 251 | - https://developer.android.com/stories/apps/ingresso 252 | - https://developer.android.com/stories/games/cdpr 253 | - https://developer.android.com/stories/apps/iheartradio 254 | - https://developer.android.com/stories/apps/iheartradio?hl=es_419 255 | - https://developer.android.com/stories/apps/iheartradio?hl=id 256 | - https://developer.android.com/stories/apps/iheartradio?hl=ja 257 | - https://developer.android.com/stories/apps/iheartradio?hl=ko 258 | - https://developer.android.com/stories/apps/iheartradio?hl=zh_cn 259 | - https://developer.android.com/stories/apps/iheartradio?hl=pt_br 260 | - https://developer.android.com/stories/apps/rakuten-edy 261 | - https://developer.android.com/stories/apps/rakuten-edy?hl=es_419 262 | - https://developer.android.com/stories/apps/rakuten-edy?hl=id 263 | - https://developer.android.com/stories/apps/rakuten-edy?hl=ja 264 | - https://developer.android.com/stories/apps/rakuten-edy?hl=ko 265 | - https://developer.android.com/stories/apps/rakuten-edy?hl=zh_cn 266 | - https://developer.android.com/stories/apps/rakuten-edy?hl=pt_br 267 | - https://developer.android.com/stories/apps/duolingo 268 | - https://developer.android.com/stories/apps 269 | - https://developer.android.com/stories/apps?hl=id 270 | - https://developer.android.com/stories/apps?hl=es_419 271 | - https://developer.android.com/stories/apps?hl=ja 272 | - https://developer.android.com/stories/apps?hl=ko 273 | - https://developer.android.com/stories/apps?hl=zh_cn 274 | - https://developer.android.com/stories/apps?hl=pt_br 275 | - https://developer.android.com/stories/instant-apps/vimeo 276 | - https://developer.android.com/stories/apps/vlc 277 | - https://developer.android.com/stories/apps/noom-health 278 | - https://developer.android.com/stories/apps/noom-health?hl=es_419 279 | - https://developer.android.com/stories/apps/noom-health?hl=id 280 | - https://developer.android.com/stories/apps/noom-health?hl=ja 281 | - https://developer.android.com/stories/apps/noom-health?hl=ko 282 | - https://developer.android.com/stories/apps/noom-health?hl=zh_cn 283 | - https://developer.android.com/stories/apps/noom-health?hl=pt_br 284 | - https://developer.android.com/stories/apps/lifesum-health 285 | - https://developer.android.com/stories/apps/lifesum-health?hl=es_419 286 | - https://developer.android.com/stories/apps/lifesum-health?hl=id 287 | - https://developer.android.com/stories/apps/lifesum-health?hl=ja 288 | - https://developer.android.com/stories/apps/lifesum-health?hl=ko 289 | - https://developer.android.com/stories/apps/lifesum-health?hl=zh_cn 290 | - https://developer.android.com/stories/apps/lifesum-health?hl=pt_br 291 | - https://developer.android.com/stories/games 292 | - https://developer.android.com/stories/games?hl=id 293 | - https://developer.android.com/stories/games?hl=es_419 294 | - https://developer.android.com/stories/games?hl=ja 295 | - https://developer.android.com/stories/games?hl=ko 296 | - https://developer.android.com/stories/games?hl=zh_cn 297 | - https://developer.android.com/stories/games?hl=pt_br 298 | - https://developer.android.com/stories/apps/zillow 299 | - https://developer.android.com/stories/apps/zillow?hl=es_419 300 | - https://developer.android.com/stories/apps/zillow?hl=id 301 | - https://developer.android.com/stories/apps/zillow?hl=ja 302 | - https://developer.android.com/stories/apps/zillow?hl=ko 303 | - https://developer.android.com/stories/apps/zillow?hl=zh_cn 304 | - https://developer.android.com/stories/apps/zillow?hl=pt_br 305 | - https://developer.android.com/stories/games/kongregate-global-assault 306 | - https://developer.android.com/stories/games/kongregate-global-assault?hl=es_419 307 | - https://developer.android.com/stories/games/kongregate-global-assault?hl=id 308 | - https://developer.android.com/stories/games/kongregate-global-assault?hl=ja 309 | - https://developer.android.com/stories/games/kongregate-global-assault?hl=ko 310 | - https://developer.android.com/stories/games/kongregate-global-assault?hl=zh_cn 311 | - https://developer.android.com/stories/games/kongregate-global-assault?hl=pt_br 312 | - https://developer.android.com/stories/apps/evernote 313 | - https://developer.android.com/stories/apps/evernote?hl=es_419 314 | - https://developer.android.com/stories/apps/evernote?hl=id 315 | - https://developer.android.com/stories/apps/evernote?hl=ja 316 | - https://developer.android.com/stories/apps/evernote?hl=ko 317 | - https://developer.android.com/stories/apps/evernote?hl=zh_cn 318 | - https://developer.android.com/stories/apps/evernote?hl=pt_br 319 | - https://developer.android.com/stories/instant-apps/naukri 320 | - https://developer.android.com/stories/apps/condenast-shopping 321 | - https://developer.android.com/stories/apps/condenast-shopping?hl=es_419 322 | - https://developer.android.com/stories/apps/condenast-shopping?hl=id 323 | - https://developer.android.com/stories/apps/condenast-shopping?hl=ja 324 | - https://developer.android.com/stories/apps/condenast-shopping?hl=ko 325 | - https://developer.android.com/stories/apps/condenast-shopping?hl=zh_cn 326 | - https://developer.android.com/stories/apps/condenast-shopping?hl=pt_br 327 | - https://developer.android.com/stories/games/amanotes 328 | - https://developer.android.com/stories/games/amanotes?hl=es_419 329 | - https://developer.android.com/stories/games/amanotes?hl=id 330 | - https://developer.android.com/stories/games/amanotes?hl=ja 331 | - https://developer.android.com/stories/games/amanotes?hl=ko 332 | - https://developer.android.com/stories/games/amanotes?hl=zh_cn 333 | - https://developer.android.com/stories/games/amanotes?hl=pt_br 334 | - https://developer.android.com/stories/apps/cornershop 335 | - https://developer.android.com/stories/apps/anghami 336 | - https://developer.android.com/stories/apps/anghami?hl=es_419 337 | - https://developer.android.com/stories/apps/anghami?hl=id 338 | - https://developer.android.com/stories/apps/anghami?hl=ja 339 | - https://developer.android.com/stories/apps/anghami?hl=ko 340 | - https://developer.android.com/stories/apps/anghami?hl=zh_cn 341 | - https://developer.android.com/stories/apps/anghami?hl=pt_br 342 | - https://developer.android.com/stories/games/noodlecake-super-stickman 343 | - https://developer.android.com/stories/games/noodlecake-super-stickman?hl=es_419 344 | - https://developer.android.com/stories/games/noodlecake-super-stickman?hl=id 345 | - https://developer.android.com/stories/games/noodlecake-super-stickman?hl=ja 346 | - https://developer.android.com/stories/games/noodlecake-super-stickman?hl=ko 347 | - https://developer.android.com/stories/games/noodlecake-super-stickman?hl=zh_cn 348 | - https://developer.android.com/stories/games/noodlecake-super-stickman?hl=pt_br 349 | - https://developer.android.com/stories/apps/monzo-camerax 350 | - https://developer.android.com/stories 351 | - https://developer.android.com/stories?hl=id 352 | - https://developer.android.com/stories?hl=es_419 353 | - https://developer.android.com/stories?hl=ja 354 | - https://developer.android.com/stories?hl=ko 355 | - https://developer.android.com/stories?hl=zh_cn 356 | - https://developer.android.com/stories?hl=pt_br 357 | - https://developer.android.com/stories/games/animoca-star-girl 358 | - https://developer.android.com/stories/games/animoca-star-girl?hl=es_419 359 | - https://developer.android.com/stories/games/animoca-star-girl?hl=id 360 | - https://developer.android.com/stories/games/animoca-star-girl?hl=ja 361 | - https://developer.android.com/stories/games/animoca-star-girl?hl=ko 362 | - https://developer.android.com/stories/games/animoca-star-girl?hl=zh_cn 363 | - https://developer.android.com/stories/games/animoca-star-girl?hl=pt_br 364 | - https://developer.android.com/stories/apps/spiegel-online 365 | - https://developer.android.com/stories/apps/spiegel-online?hl=es_419 366 | - https://developer.android.com/stories/apps/spiegel-online?hl=id 367 | - https://developer.android.com/stories/apps/spiegel-online?hl=ja 368 | - https://developer.android.com/stories/apps/spiegel-online?hl=ko 369 | - https://developer.android.com/stories/apps/spiegel-online?hl=zh_cn 370 | - https://developer.android.com/stories/apps/spiegel-online?hl=pt_br 371 | - https://developer.android.com/stories/games/kongregate-adv-cap 372 | - https://developer.android.com/stories/games/kongregate-adv-cap?hl=es_419 373 | - https://developer.android.com/stories/games/kongregate-adv-cap?hl=id 374 | - https://developer.android.com/stories/games/kongregate-adv-cap?hl=ja 375 | - https://developer.android.com/stories/games/kongregate-adv-cap?hl=ko 376 | - https://developer.android.com/stories/games/kongregate-adv-cap?hl=zh_cn 377 | - https://developer.android.com/stories/games/kongregate-adv-cap?hl=pt_br 378 | - https://developer.android.com/stories/instant-apps/marvel-strike-force 379 | - https://developer.android.com/stories/games/glu-eternity-warriors 380 | - https://developer.android.com/stories/games/glu-eternity-warriors?hl=es_419 381 | - https://developer.android.com/stories/games/glu-eternity-warriors?hl=id 382 | - https://developer.android.com/stories/games/glu-eternity-warriors?hl=ja 383 | - https://developer.android.com/stories/games/glu-eternity-warriors?hl=ko 384 | - https://developer.android.com/stories/games/glu-eternity-warriors?hl=zh_cn 385 | - https://developer.android.com/stories/games/glu-eternity-warriors?hl=pt_br 386 | - https://developer.android.com/stories/apps/cringle 387 | - https://developer.android.com/stories/apps/cringle?hl=es_419 388 | - https://developer.android.com/stories/apps/cringle?hl=id 389 | - https://developer.android.com/stories/apps/cringle?hl=ja 390 | - https://developer.android.com/stories/apps/cringle?hl=ko 391 | - https://developer.android.com/stories/apps/cringle?hl=zh_cn 392 | - https://developer.android.com/stories/apps/cringle?hl=pt_br 393 | - https://developer.android.com/stories/apps/alarmy 394 | - https://developer.android.com/stories/instant-apps/nos 395 | - https://developer.android.com/stories/apps/beautyplus 396 | - https://developer.android.com/stories/apps/beautyplus?hl=es_419 397 | - https://developer.android.com/stories/apps/beautyplus?hl=id 398 | - https://developer.android.com/stories/apps/beautyplus?hl=ja 399 | - https://developer.android.com/stories/apps/beautyplus?hl=ko 400 | - https://developer.android.com/stories/apps/beautyplus?hl=zh_cn 401 | - https://developer.android.com/stories/apps/beautyplus?hl=pt_br 402 | - https://developer.android.com/stories/apps/segundamano 403 | - https://developer.android.com/stories/apps/segundamano?hl=es_419 404 | - https://developer.android.com/stories/apps/segundamano?hl=id 405 | - https://developer.android.com/stories/apps/segundamano?hl=ja 406 | - https://developer.android.com/stories/apps/segundamano?hl=ko 407 | - https://developer.android.com/stories/apps/segundamano?hl=zh_cn 408 | - https://developer.android.com/stories/apps/segundamano?hl=pt_br 409 | - https://developer.android.com/stories/apps/squid 410 | - https://developer.android.com/stories/apps/squid?hl=es_419 411 | - https://developer.android.com/stories/apps/squid?hl=id 412 | - https://developer.android.com/stories/apps/squid?hl=ja 413 | - https://developer.android.com/stories/apps/squid?hl=ko 414 | - https://developer.android.com/stories/apps/squid?hl=zh_cn 415 | - https://developer.android.com/stories/apps/squid?hl=pt_br 416 | - https://developer.android.com/stories/apps/tamedia 417 | - https://developer.android.com/stories/apps/tamedia?hl=es_419 418 | - https://developer.android.com/stories/apps/tamedia?hl=id 419 | - https://developer.android.com/stories/apps/tamedia?hl=ja 420 | - https://developer.android.com/stories/apps/tamedia?hl=ko 421 | - https://developer.android.com/stories/apps/tamedia?hl=zh_cn 422 | - https://developer.android.com/stories/apps/tamedia?hl=pt_br 423 | - https://developer.android.com/stories/apps/google-home 424 | - https://developer.android.com/stories/apps/google-home?hl=ko 425 | - https://developer.android.com/stories/apps/google-home?hl=pt-br 426 | - https://developer.android.com/stories/apps/google-home?hl=id 427 | - https://developer.android.com/stories/apps/google-home?hl=zh-cn 428 | - https://developer.android.com/stories/apps/google-home?hl=ja 429 | - https://developer.android.com/stories/apps/google-home?hl=es-419 430 | - https://developer.android.com/stories/games/etermax 431 | - https://developer.android.com/stories/apps/intuit-mint 432 | - https://developer.android.com/stories/apps/intuit-mint?hl=es_419 433 | - https://developer.android.com/stories/apps/intuit-mint?hl=id 434 | - https://developer.android.com/stories/apps/intuit-mint?hl=ja 435 | - https://developer.android.com/stories/apps/intuit-mint?hl=ko 436 | - https://developer.android.com/stories/apps/intuit-mint?hl=zh_cn 437 | - https://developer.android.com/stories/apps/intuit-mint?hl=pt_br 438 | - https://developer.android.com/stories/apps/mikan 439 | - https://developer.android.com/stories/apps/mikan?hl=zh-cn 440 | - https://developer.android.com/stories/apps/mikan?hl=ja 441 | - https://developer.android.com/stories/apps/mikan?hl=ko 442 | - https://developer.android.com/stories/apps/mikan?hl=pt-br 443 | - https://developer.android.com/stories/apps/mikan?hl=es-419 444 | - https://developer.android.com/stories/apps/mikan?hl=id 445 | - https://developer.android.com/stories/apps/duolingo-kotlin 446 | - https://developer.android.com/stories/apps/duolingo-kotlin?hl=ko 447 | - https://developer.android.com/stories/apps/duolingo-kotlin?hl=pt-br 448 | - https://developer.android.com/stories/apps/duolingo-kotlin?hl=id 449 | - https://developer.android.com/stories/apps/duolingo-kotlin?hl=zh-cn 450 | - https://developer.android.com/stories/apps/duolingo-kotlin?hl=ja 451 | - https://developer.android.com/stories/apps/duolingo-kotlin?hl=es-419 -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- 1 | - https://developer.android.com/about/versions/10/migration 2 | - https://developer.android.com/about/versions/10/migration?hl=zh_cn 3 | - https://developer.android.com/about/versions/10/migration?hl=es_419 4 | - https://developer.android.com/about/versions/10/migration?hl=id 5 | - https://developer.android.com/about/versions/10/migration?hl=ja 6 | - https://developer.android.com/about/versions/10/migration?hl=ko 7 | - https://developer.android.com/about/versions/10/migration?hl=pt_br 8 | - https://developer.android.com/about/dashboards 9 | - https://developer.android.com/about/dashboards?hl=zh_cn 10 | - https://developer.android.com/about/dashboards?hl=es_419 11 | - https://developer.android.com/about/dashboards?hl=id 12 | - https://developer.android.com/about/dashboards?hl=ja 13 | - https://developer.android.com/about/dashboards?hl=ko 14 | - https://developer.android.com/about/dashboards?hl=pt_br 15 | - https://developer.android.com/about/versions/lollipop 16 | - https://developer.android.com/about/versions/lollipop?hl=zh-cn 17 | - https://developer.android.com/about/versions/lollipop?hl=es-419 18 | - https://developer.android.com/about/versions/lollipop?hl=id 19 | - https://developer.android.com/about/versions/lollipop?hl=ja 20 | - https://developer.android.com/about/versions/lollipop?hl=ko 21 | - https://developer.android.com/about/versions/lollipop?hl=pt-br 22 | - https://developer.android.com/about/versions/pie 23 | - https://developer.android.com/about/versions/pie?hl=zh_cn 24 | - https://developer.android.com/about/versions/pie?hl=es_419 25 | - https://developer.android.com/about/versions/pie?hl=id 26 | - https://developer.android.com/about/versions/pie?hl=ja 27 | - https://developer.android.com/about/versions/pie?hl=ko 28 | - https://developer.android.com/about/versions/pie?hl=pt_br 29 | - https://developer.android.com/about/versions/10/setup-sdk 30 | - https://developer.android.com/about/versions/10/setup-sdk?hl=zh_cn 31 | - https://developer.android.com/about/versions/10/setup-sdk?hl=es_419 32 | - https://developer.android.com/about/versions/10/setup-sdk?hl=id 33 | - https://developer.android.com/about/versions/10/setup-sdk?hl=ja 34 | - https://developer.android.com/about/versions/10/setup-sdk?hl=ko 35 | - https://developer.android.com/about/versions/10/setup-sdk?hl=pt_br 36 | - https://developer.android.com/about/versions/11/privacy/foreground-services 37 | - https://developer.android.com/about/versions/11/privacy/foreground-services?hl=zh-cn 38 | - https://developer.android.com/about/versions/11/privacy/foreground-services?hl=pt-br 39 | - https://developer.android.com/about/versions/11/privacy/foreground-services?hl=ko 40 | - https://developer.android.com/about/versions/11/privacy/foreground-services?hl=ja 41 | - https://developer.android.com/about/versions/11/privacy/foreground-services?hl=es-419 42 | - https://developer.android.com/about/versions/11/privacy/foreground-services?hl=id 43 | - https://developer.android.com/about/versions/11 44 | - https://developer.android.com/about/versions/11?hl=zh-cn 45 | - https://developer.android.com/about/versions/11?hl=pt-br 46 | - https://developer.android.com/about/versions/11?hl=ko 47 | - https://developer.android.com/about/versions/11?hl=ja 48 | - https://developer.android.com/about/versions/11?hl=es-419 49 | - https://developer.android.com/about/versions/11?hl=id 50 | - https://developer.android.com/about/versions/oreo/background 51 | - https://developer.android.com/about/versions/oreo/background?hl=zh_cn 52 | - https://developer.android.com/about/versions/oreo/background?hl=es_419 53 | - https://developer.android.com/about/versions/oreo/background?hl=id 54 | - https://developer.android.com/about/versions/oreo/background?hl=ja 55 | - https://developer.android.com/about/versions/oreo/background?hl=ko 56 | - https://developer.android.com/about/versions/oreo/background?hl=pt_br 57 | - https://developer.android.com/about/versions/11/privacy/storage 58 | - https://developer.android.com/about/versions/11/privacy/storage?hl=zh-cn 59 | - https://developer.android.com/about/versions/11/privacy/storage?hl=pt-br 60 | - https://developer.android.com/about/versions/11/privacy/storage?hl=ko 61 | - https://developer.android.com/about/versions/11/privacy/storage?hl=ja 62 | - https://developer.android.com/about/versions/11/privacy/storage?hl=es-419 63 | - https://developer.android.com/about/versions/11/privacy/storage?hl=id 64 | - https://developer.android.com/about/versions/pie/android-9.0 65 | - https://developer.android.com/about/versions/pie/android-9.0?hl=zh_cn 66 | - https://developer.android.com/about/versions/pie/android-9.0?hl=es_419 67 | - https://developer.android.com/about/versions/pie/android-9.0?hl=id 68 | - https://developer.android.com/about/versions/pie/android-9.0?hl=ja 69 | - https://developer.android.com/about/versions/pie/android-9.0?hl=ko 70 | - https://developer.android.com/about/versions/pie/android-9.0?hl=pt_br 71 | - https://developer.android.com/about/versions/11/privacy/data-access-auditing 72 | - https://developer.android.com/about/versions/11/privacy/data-access-auditing?hl=zh-cn 73 | - https://developer.android.com/about/versions/11/privacy/data-access-auditing?hl=pt-br 74 | - https://developer.android.com/about/versions/11/privacy/data-access-auditing?hl=ko 75 | - https://developer.android.com/about/versions/11/privacy/data-access-auditing?hl=ja 76 | - https://developer.android.com/about/versions/11/privacy/data-access-auditing?hl=es-419 77 | - https://developer.android.com/about/versions/11/privacy/data-access-auditing?hl=id 78 | - https://developer.android.com/about/versions/pie/android-9.0-changes-all 79 | - https://developer.android.com/about/versions/pie/android-9.0-changes-all?hl=zh_cn 80 | - https://developer.android.com/about/versions/pie/android-9.0-changes-all?hl=es_419 81 | - https://developer.android.com/about/versions/pie/android-9.0-changes-all?hl=id 82 | - https://developer.android.com/about/versions/pie/android-9.0-changes-all?hl=ja 83 | - https://developer.android.com/about/versions/pie/android-9.0-changes-all?hl=ko 84 | - https://developer.android.com/about/versions/pie/android-9.0-changes-all?hl=pt_br 85 | - https://developer.android.com/about/versions/oreo/android-8.1 86 | - https://developer.android.com/about/versions/oreo/android-8.1?hl=zh_cn 87 | - https://developer.android.com/about/versions/oreo/android-8.1?hl=es_419 88 | - https://developer.android.com/about/versions/oreo/android-8.1?hl=id 89 | - https://developer.android.com/about/versions/oreo/android-8.1?hl=ja 90 | - https://developer.android.com/about/versions/oreo/android-8.1?hl=ko 91 | - https://developer.android.com/about/versions/oreo/android-8.1?hl=pt_br 92 | - https://developer.android.com/about/versions/11/migration 93 | - https://developer.android.com/about/versions/11/migration?hl=zh-cn 94 | - https://developer.android.com/about/versions/11/migration?hl=pt-br 95 | - https://developer.android.com/about/versions/11/migration?hl=ko 96 | - https://developer.android.com/about/versions/11/migration?hl=ja 97 | - https://developer.android.com/about/versions/11/migration?hl=es-419 98 | - https://developer.android.com/about/versions/11/migration?hl=id 99 | - https://developer.android.com/about/versions/nougat/android-7.0-samples 100 | - https://developer.android.com/about/versions/nougat/android-7.0-samples?hl=zh-cn 101 | - https://developer.android.com/about/versions/nougat/android-7.0-samples?hl=es-419 102 | - https://developer.android.com/about/versions/nougat/android-7.0-samples?hl=id 103 | - https://developer.android.com/about/versions/nougat/android-7.0-samples?hl=ja 104 | - https://developer.android.com/about/versions/nougat/android-7.0-samples?hl=ko 105 | - https://developer.android.com/about/versions/nougat/android-7.0-samples?hl=pt-br 106 | - https://developer.android.com/about/versions/jelly-bean 107 | - https://developer.android.com/about/versions/jelly-bean?hl=zh_cn 108 | - https://developer.android.com/about/versions/jelly-bean?hl=es_419 109 | - https://developer.android.com/about/versions/jelly-bean?hl=id 110 | - https://developer.android.com/about/versions/jelly-bean?hl=ja 111 | - https://developer.android.com/about/versions/jelly-bean?hl=ko 112 | - https://developer.android.com/about/versions/jelly-bean?hl=pt_br 113 | - https://developer.android.com/about/versions/10 114 | - https://developer.android.com/about/versions/10?hl=zh_cn 115 | - https://developer.android.com/about/versions/10?hl=es_419 116 | - https://developer.android.com/about/versions/10?hl=id 117 | - https://developer.android.com/about/versions/10?hl=ja 118 | - https://developer.android.com/about/versions/10?hl=ko 119 | - https://developer.android.com/about/versions/10?hl=pt_br 120 | - https://developer.android.com/about/versions/oreo/android-8.0-migration 121 | - https://developer.android.com/about/versions/oreo/android-8.0-migration?hl=zh_cn 122 | - https://developer.android.com/about/versions/oreo/android-8.0-migration?hl=es_419 123 | - https://developer.android.com/about/versions/oreo/android-8.0-migration?hl=id 124 | - https://developer.android.com/about/versions/oreo/android-8.0-migration?hl=ja 125 | - https://developer.android.com/about/versions/oreo/android-8.0-migration?hl=ko 126 | - https://developer.android.com/about/versions/oreo/android-8.0-migration?hl=pt_br 127 | - https://developer.android.com/about/versions/oreo/android-8.0-changes 128 | - https://developer.android.com/about/versions/oreo/android-8.0-changes?hl=zh_cn 129 | - https://developer.android.com/about/versions/oreo/android-8.0-changes?hl=es_419 130 | - https://developer.android.com/about/versions/oreo/android-8.0-changes?hl=id 131 | - https://developer.android.com/about/versions/oreo/android-8.0-changes?hl=ja 132 | - https://developer.android.com/about/versions/oreo/android-8.0-changes?hl=ko 133 | - https://developer.android.com/about/versions/oreo/android-8.0-changes?hl=pt_br 134 | - https://developer.android.com/about/versions/11/features/5g 135 | - https://developer.android.com/about/versions/11/features/5g?hl=zh-cn 136 | - https://developer.android.com/about/versions/11/features/5g?hl=pt-br 137 | - https://developer.android.com/about/versions/11/features/5g?hl=ko 138 | - https://developer.android.com/about/versions/11/features/5g?hl=ja 139 | - https://developer.android.com/about/versions/11/features/5g?hl=es-419 140 | - https://developer.android.com/about/versions/11/features/5g?hl=id 141 | - https://developer.android.com/about/versions/nougat/android-7.0-changes 142 | - https://developer.android.com/about/versions/nougat/android-7.0-changes?hl=zh-cn 143 | - https://developer.android.com/about/versions/nougat/android-7.0-changes?hl=es-419 144 | - https://developer.android.com/about/versions/nougat/android-7.0-changes?hl=id 145 | - https://developer.android.com/about/versions/nougat/android-7.0-changes?hl=ja 146 | - https://developer.android.com/about/versions/nougat/android-7.0-changes?hl=ko 147 | - https://developer.android.com/about/versions/nougat/android-7.0-changes?hl=pt-br 148 | - https://developer.android.com/about/versions/oreo/background-location-limits 149 | - https://developer.android.com/about/versions/oreo/background-location-limits?hl=zh_cn 150 | - https://developer.android.com/about/versions/oreo/background-location-limits?hl=es_419 151 | - https://developer.android.com/about/versions/oreo/background-location-limits?hl=id 152 | - https://developer.android.com/about/versions/oreo/background-location-limits?hl=ja 153 | - https://developer.android.com/about/versions/oreo/background-location-limits?hl=ko 154 | - https://developer.android.com/about/versions/oreo/background-location-limits?hl=pt_br 155 | - https://developer.android.com/about/versions/11/behavior-changes-all 156 | - https://developer.android.com/about/versions/11/behavior-changes-all?hl=zh-cn 157 | - https://developer.android.com/about/versions/11/behavior-changes-all?hl=pt-br 158 | - https://developer.android.com/about/versions/11/behavior-changes-all?hl=ko 159 | - https://developer.android.com/about/versions/11/behavior-changes-all?hl=ja 160 | - https://developer.android.com/about/versions/11/behavior-changes-all?hl=es-419 161 | - https://developer.android.com/about/versions/11/behavior-changes-all?hl=id 162 | - https://developer.android.com/about/versions/android-3.1-highlights 163 | - https://developer.android.com/about/versions/11/behavior-changes-11 164 | - https://developer.android.com/about/versions/11/behavior-changes-11?hl=zh-cn 165 | - https://developer.android.com/about/versions/11/behavior-changes-11?hl=pt-br 166 | - https://developer.android.com/about/versions/11/behavior-changes-11?hl=ko 167 | - https://developer.android.com/about/versions/11/behavior-changes-11?hl=ja 168 | - https://developer.android.com/about/versions/11/behavior-changes-11?hl=es-419 169 | - https://developer.android.com/about/versions/11/behavior-changes-11?hl=id 170 | - https://developer.android.com/about/versions/11/features/captive-portal 171 | - https://developer.android.com/about/versions/11/features/captive-portal?hl=zh-cn 172 | - https://developer.android.com/about/versions/11/features/captive-portal?hl=pt-br 173 | - https://developer.android.com/about/versions/11/features/captive-portal?hl=ko 174 | - https://developer.android.com/about/versions/11/features/captive-portal?hl=ja 175 | - https://developer.android.com/about/versions/11/features/captive-portal?hl=es-419 176 | - https://developer.android.com/about/versions/11/features/captive-portal?hl=id 177 | - https://developer.android.com/about/versions/11/get 178 | - https://developer.android.com/about/versions/11/get?hl=zh-cn 179 | - https://developer.android.com/about/versions/11/get?hl=pt-br 180 | - https://developer.android.com/about/versions/11/get?hl=ko 181 | - https://developer.android.com/about/versions/11/get?hl=ja 182 | - https://developer.android.com/about/versions/11/get?hl=es-419 183 | - https://developer.android.com/about/versions/11/get?hl=id 184 | - https://developer.android.com/about/versions/pie/power 185 | - https://developer.android.com/about/versions/pie/power?hl=zh_cn 186 | - https://developer.android.com/about/versions/pie/power?hl=es_419 187 | - https://developer.android.com/about/versions/pie/power?hl=id 188 | - https://developer.android.com/about/versions/pie/power?hl=ja 189 | - https://developer.android.com/about/versions/pie/power?hl=ko 190 | - https://developer.android.com/about/versions/pie/power?hl=pt_br 191 | - https://developer.android.com/about/versions/11/privacy/package-visibility 192 | - https://developer.android.com/about/versions/11/privacy/package-visibility?hl=zh-cn 193 | - https://developer.android.com/about/versions/11/privacy/package-visibility?hl=pt-br 194 | - https://developer.android.com/about/versions/11/privacy/package-visibility?hl=ko 195 | - https://developer.android.com/about/versions/11/privacy/package-visibility?hl=ja 196 | - https://developer.android.com/about/versions/11/privacy/package-visibility?hl=es-419 197 | - https://developer.android.com/about/versions/11/privacy/package-visibility?hl=id 198 | - https://developer.android.com/about/versions/10/non-sdk-q 199 | - https://developer.android.com/about/versions/10/non-sdk-q?hl=zh_cn 200 | - https://developer.android.com/about/versions/10/non-sdk-q?hl=es_419 201 | - https://developer.android.com/about/versions/10/non-sdk-q?hl=id 202 | - https://developer.android.com/about/versions/10/non-sdk-q?hl=ja 203 | - https://developer.android.com/about/versions/10/non-sdk-q?hl=ko 204 | - https://developer.android.com/about/versions/10/non-sdk-q?hl=pt_br 205 | - https://developer.android.com/about/versions/10/highlights 206 | - https://developer.android.com/about/versions/10/highlights?hl=zh_cn 207 | - https://developer.android.com/about/versions/10/highlights?hl=es_419 208 | - https://developer.android.com/about/versions/10/highlights?hl=id 209 | - https://developer.android.com/about/versions/10/highlights?hl=ja 210 | - https://developer.android.com/about/versions/10/highlights?hl=ko 211 | - https://developer.android.com/about/versions/10/highlights?hl=pt_br 212 | - https://developer.android.com/about/versions/10/behavior-changes-10 213 | - https://developer.android.com/about/versions/10/behavior-changes-10?hl=zh_cn 214 | - https://developer.android.com/about/versions/10/behavior-changes-10?hl=es_419 215 | - https://developer.android.com/about/versions/10/behavior-changes-10?hl=id 216 | - https://developer.android.com/about/versions/10/behavior-changes-10?hl=ja 217 | - https://developer.android.com/about/versions/10/behavior-changes-10?hl=ko 218 | - https://developer.android.com/about/versions/10/behavior-changes-10?hl=pt_br 219 | - https://developer.android.com/about/versions/nougat/android-7.1-samples 220 | - https://developer.android.com/about/versions/10/get 221 | - https://developer.android.com/about/versions/10/get?hl=zh_cn 222 | - https://developer.android.com/about/versions/10/get?hl=es_419 223 | - https://developer.android.com/about/versions/10/get?hl=id 224 | - https://developer.android.com/about/versions/10/get?hl=ja 225 | - https://developer.android.com/about/versions/10/get?hl=ko 226 | - https://developer.android.com/about/versions/10/get?hl=pt_br 227 | - https://developer.android.com/about 228 | - https://developer.android.com/about?hl=zh_cn 229 | - https://developer.android.com/about?hl=es_419 230 | - https://developer.android.com/about?hl=id 231 | - https://developer.android.com/about?hl=ja 232 | - https://developer.android.com/about?hl=ko 233 | - https://developer.android.com/about?hl=pt_br 234 | - https://developer.android.com/about/versions/pie/security/ckv-whitepaper 235 | - https://developer.android.com/about/versions/pie/security/ckv-whitepaper?hl=zh_cn 236 | - https://developer.android.com/about/versions/pie/security/ckv-whitepaper?hl=es_419 237 | - https://developer.android.com/about/versions/pie/security/ckv-whitepaper?hl=id 238 | - https://developer.android.com/about/versions/pie/security/ckv-whitepaper?hl=ja 239 | - https://developer.android.com/about/versions/pie/security/ckv-whitepaper?hl=ko 240 | - https://developer.android.com/about/versions/pie/security/ckv-whitepaper?hl=pt_br 241 | - https://developer.android.com/about/versions/11/privacy 242 | - https://developer.android.com/about/versions/11/privacy?hl=zh-cn 243 | - https://developer.android.com/about/versions/11/privacy?hl=pt-br 244 | - https://developer.android.com/about/versions/11/privacy?hl=ko 245 | - https://developer.android.com/about/versions/11/privacy?hl=ja 246 | - https://developer.android.com/about/versions/11/privacy?hl=es-419 247 | - https://developer.android.com/about/versions/11/privacy?hl=id 248 | - https://developer.android.com/about/versions/11/test-changes 249 | - https://developer.android.com/about/versions/11/test-changes?hl=zh-cn 250 | - https://developer.android.com/about/versions/11/test-changes?hl=pt-br 251 | - https://developer.android.com/about/versions/11/test-changes?hl=ko 252 | - https://developer.android.com/about/versions/11/test-changes?hl=ja 253 | - https://developer.android.com/about/versions/11/test-changes?hl=es-419 254 | - https://developer.android.com/about/versions/11/test-changes?hl=id 255 | - https://developer.android.com/about/versions/10/behavior-changes-all 256 | - https://developer.android.com/about/versions/10/behavior-changes-all?hl=zh_cn 257 | - https://developer.android.com/about/versions/10/behavior-changes-all?hl=es_419 258 | - https://developer.android.com/about/versions/10/behavior-changes-all?hl=id 259 | - https://developer.android.com/about/versions/10/behavior-changes-all?hl=ja 260 | - https://developer.android.com/about/versions/10/behavior-changes-all?hl=ko 261 | - https://developer.android.com/about/versions/10/behavior-changes-all?hl=pt_br 262 | - https://developer.android.com/about/versions/11/privacy/location 263 | - https://developer.android.com/about/versions/11/privacy/location?hl=zh-cn 264 | - https://developer.android.com/about/versions/11/privacy/location?hl=pt-br 265 | - https://developer.android.com/about/versions/11/privacy/location?hl=ko 266 | - https://developer.android.com/about/versions/11/privacy/location?hl=ja 267 | - https://developer.android.com/about/versions/11/privacy/location?hl=es-419 268 | - https://developer.android.com/about/versions/11/privacy/location?hl=id 269 | - https://developer.android.com/about/versions/marshmallow 270 | - https://developer.android.com/about/versions/marshmallow?hl=zh_cn 271 | - https://developer.android.com/about/versions/marshmallow?hl=es_419 272 | - https://developer.android.com/about/versions/marshmallow?hl=id 273 | - https://developer.android.com/about/versions/marshmallow?hl=ja 274 | - https://developer.android.com/about/versions/marshmallow?hl=ko 275 | - https://developer.android.com/about/versions/marshmallow?hl=pt_br 276 | - https://developer.android.com/about/versions/10/features 277 | - https://developer.android.com/about/versions/10/features?hl=zh_cn 278 | - https://developer.android.com/about/versions/10/features?hl=es_419 279 | - https://developer.android.com/about/versions/10/features?hl=id 280 | - https://developer.android.com/about/versions/10/features?hl=ja 281 | - https://developer.android.com/about/versions/10/features?hl=ko 282 | - https://developer.android.com/about/versions/10/features?hl=pt_br 283 | - https://developer.android.com/about/versions/11/features 284 | - https://developer.android.com/about/versions/11/features?hl=zh-cn 285 | - https://developer.android.com/about/versions/11/features?hl=pt-br 286 | - https://developer.android.com/about/versions/11/features?hl=ko 287 | - https://developer.android.com/about/versions/11/features?hl=ja 288 | - https://developer.android.com/about/versions/11/features?hl=es-419 289 | - https://developer.android.com/about/versions/11/features?hl=id 290 | - https://developer.android.com/about/versions/pie/android-9.0-changes-28 291 | - https://developer.android.com/about/versions/pie/android-9.0-changes-28?hl=zh_cn 292 | - https://developer.android.com/about/versions/pie/android-9.0-changes-28?hl=es_419 293 | - https://developer.android.com/about/versions/pie/android-9.0-changes-28?hl=id 294 | - https://developer.android.com/about/versions/pie/android-9.0-changes-28?hl=ja 295 | - https://developer.android.com/about/versions/pie/android-9.0-changes-28?hl=ko 296 | - https://developer.android.com/about/versions/pie/android-9.0-changes-28?hl=pt_br 297 | - https://developer.android.com/about/versions/10/privacy 298 | - https://developer.android.com/about/versions/10/privacy?hl=zh_cn 299 | - https://developer.android.com/about/versions/10/privacy?hl=es_419 300 | - https://developer.android.com/about/versions/10/privacy?hl=id 301 | - https://developer.android.com/about/versions/10/privacy?hl=ja 302 | - https://developer.android.com/about/versions/10/privacy?hl=ko 303 | - https://developer.android.com/about/versions/10/privacy?hl=pt_br 304 | - https://developer.android.com/about/versions/11/privacy/mac-address 305 | - https://developer.android.com/about/versions/11/privacy/mac-address?hl=zh-cn 306 | - https://developer.android.com/about/versions/11/privacy/mac-address?hl=pt-br 307 | - https://developer.android.com/about/versions/11/privacy/mac-address?hl=ko 308 | - https://developer.android.com/about/versions/11/privacy/mac-address?hl=ja 309 | - https://developer.android.com/about/versions/11/privacy/mac-address?hl=es-419 310 | - https://developer.android.com/about/versions/11/privacy/mac-address?hl=id 311 | - https://developer.android.com/about/versions/kitkat 312 | - https://developer.android.com/about/versions/kitkat?hl=zh_cn 313 | - https://developer.android.com/about/versions/kitkat?hl=es_419 314 | - https://developer.android.com/about/versions/kitkat?hl=id 315 | - https://developer.android.com/about/versions/kitkat?hl=ja 316 | - https://developer.android.com/about/versions/kitkat?hl=ko 317 | - https://developer.android.com/about/versions/kitkat?hl=pt_br 318 | - https://developer.android.com/about/versions/android-3.0-highlights 319 | - https://developer.android.com/about/versions/nougat/android-7.0 320 | - https://developer.android.com/about/versions/nougat/android-7.0?hl=zh-cn 321 | - https://developer.android.com/about/versions/nougat/android-7.0?hl=es-419 322 | - https://developer.android.com/about/versions/nougat/android-7.0?hl=id 323 | - https://developer.android.com/about/versions/nougat/android-7.0?hl=ja 324 | - https://developer.android.com/about/versions/nougat/android-7.0?hl=ko 325 | - https://developer.android.com/about/versions/nougat/android-7.0?hl=pt-br 326 | - https://developer.android.com/about/versions/android-2.3-highlights 327 | - https://developer.android.com/about/versions/11/setup-sdk 328 | - https://developer.android.com/about/versions/11/setup-sdk?hl=zh-cn 329 | - https://developer.android.com/about/versions/11/setup-sdk?hl=pt-br 330 | - https://developer.android.com/about/versions/11/setup-sdk?hl=ko 331 | - https://developer.android.com/about/versions/11/setup-sdk?hl=ja 332 | - https://developer.android.com/about/versions/11/setup-sdk?hl=es-419 333 | - https://developer.android.com/about/versions/11/setup-sdk?hl=id 334 | - https://developer.android.com/about/versions/10/privacy/changes 335 | - https://developer.android.com/about/versions/10/privacy/changes?hl=zh_cn 336 | - https://developer.android.com/about/versions/10/privacy/changes?hl=es_419 337 | - https://developer.android.com/about/versions/10/privacy/changes?hl=id 338 | - https://developer.android.com/about/versions/10/privacy/changes?hl=ja 339 | - https://developer.android.com/about/versions/10/privacy/changes?hl=ko 340 | - https://developer.android.com/about/versions/10/privacy/changes?hl=pt_br 341 | - https://developer.android.com/about/versions/marshmallow/android-6.0-testing 342 | - https://developer.android.com/about/versions/marshmallow/android-6.0-testing?hl=zh_cn 343 | - https://developer.android.com/about/versions/marshmallow/android-6.0-testing?hl=es_419 344 | - https://developer.android.com/about/versions/marshmallow/android-6.0-testing?hl=id 345 | - https://developer.android.com/about/versions/marshmallow/android-6.0-testing?hl=ja 346 | - https://developer.android.com/about/versions/marshmallow/android-6.0-testing?hl=ko 347 | - https://developer.android.com/about/versions/marshmallow/android-6.0-testing?hl=pt_br 348 | - https://developer.android.com/about/versions/11/privacy/permissions 349 | - https://developer.android.com/about/versions/11/privacy/permissions?hl=zh-cn 350 | - https://developer.android.com/about/versions/11/privacy/permissions?hl=pt-br 351 | - https://developer.android.com/about/versions/11/privacy/permissions?hl=ko 352 | - https://developer.android.com/about/versions/11/privacy/permissions?hl=ja 353 | - https://developer.android.com/about/versions/11/privacy/permissions?hl=es-419 354 | - https://developer.android.com/about/versions/11/privacy/permissions?hl=id 355 | - https://developer.android.com/about/versions/oreo/android-8.0-samples 356 | - https://developer.android.com/about/versions/oreo/android-8.0-samples?hl=zh_cn 357 | - https://developer.android.com/about/versions/oreo/android-8.0-samples?hl=es_419 358 | - https://developer.android.com/about/versions/oreo/android-8.0-samples?hl=id 359 | - https://developer.android.com/about/versions/oreo/android-8.0-samples?hl=ja 360 | - https://developer.android.com/about/versions/oreo/android-8.0-samples?hl=ko 361 | - https://developer.android.com/about/versions/oreo/android-8.0-samples?hl=pt_br 362 | - https://developer.android.com/about/versions/11/non-sdk-11 363 | - https://developer.android.com/about/versions/11/non-sdk-11?hl=zh-cn 364 | - https://developer.android.com/about/versions/11/non-sdk-11?hl=pt-br 365 | - https://developer.android.com/about/versions/11/non-sdk-11?hl=ko 366 | - https://developer.android.com/about/versions/11/non-sdk-11?hl=ja 367 | - https://developer.android.com/about/versions/11/non-sdk-11?hl=es-419 368 | - https://developer.android.com/about/versions/11/non-sdk-11?hl=id 369 | - https://developer.android.com/about/versions/11/reference/broadcast-intents-30 370 | - https://developer.android.com/about/versions/oreo 371 | - https://developer.android.com/about/versions/oreo?hl=zh_cn 372 | - https://developer.android.com/about/versions/oreo?hl=es_419 373 | - https://developer.android.com/about/versions/oreo?hl=id 374 | - https://developer.android.com/about/versions/oreo?hl=ja 375 | - https://developer.android.com/about/versions/oreo?hl=ko 376 | - https://developer.android.com/about/versions/oreo?hl=pt_br 377 | - https://developer.android.com/about/versions/oreo/android-8.0 378 | - https://developer.android.com/about/versions/oreo/android-8.0?hl=zh_cn 379 | - https://developer.android.com/about/versions/oreo/android-8.0?hl=es_419 380 | - https://developer.android.com/about/versions/oreo/android-8.0?hl=id 381 | - https://developer.android.com/about/versions/oreo/android-8.0?hl=ja 382 | - https://developer.android.com/about/versions/oreo/android-8.0?hl=ko 383 | - https://developer.android.com/about/versions/oreo/android-8.0?hl=pt_br 384 | - https://developer.android.com/about/versions/marshmallow/android-6.0 385 | - https://developer.android.com/about/versions/marshmallow/android-6.0?hl=zh_cn 386 | - https://developer.android.com/about/versions/marshmallow/android-6.0?hl=es_419 387 | - https://developer.android.com/about/versions/marshmallow/android-6.0?hl=id 388 | - https://developer.android.com/about/versions/marshmallow/android-6.0?hl=ja 389 | - https://developer.android.com/about/versions/marshmallow/android-6.0?hl=ko 390 | - https://developer.android.com/about/versions/marshmallow/android-6.0?hl=pt_br 391 | - https://developer.android.com/about/versions/nougat/android-7.1 392 | - https://developer.android.com/about/versions/11/reference/common-intents-30 393 | - https://developer.android.com/about/versions/marshmallow/android-6.0-changes 394 | - https://developer.android.com/about/versions/marshmallow/android-6.0-changes?hl=zh_cn 395 | - https://developer.android.com/about/versions/marshmallow/android-6.0-changes?hl=es_419 396 | - https://developer.android.com/about/versions/marshmallow/android-6.0-changes?hl=id 397 | - https://developer.android.com/about/versions/marshmallow/android-6.0-changes?hl=ja 398 | - https://developer.android.com/about/versions/marshmallow/android-6.0-changes?hl=ko 399 | - https://developer.android.com/about/versions/marshmallow/android-6.0-changes?hl=pt_br 400 | - https://developer.android.com/about/versions/marshmallow/android-6.0-samples 401 | - https://developer.android.com/about/versions/marshmallow/android-6.0-samples?hl=zh_cn 402 | - https://developer.android.com/about/versions/marshmallow/android-6.0-samples?hl=es_419 403 | - https://developer.android.com/about/versions/marshmallow/android-6.0-samples?hl=id 404 | - https://developer.android.com/about/versions/marshmallow/android-6.0-samples?hl=ja 405 | - https://developer.android.com/about/versions/marshmallow/android-6.0-samples?hl=ko 406 | - https://developer.android.com/about/versions/marshmallow/android-6.0-samples?hl=pt_br 407 | - https://developer.android.com/about/versions/pie/android-9.0-migration 408 | - https://developer.android.com/about/versions/pie/android-9.0-migration?hl=zh_cn 409 | - https://developer.android.com/about/versions/pie/android-9.0-migration?hl=es_419 410 | - https://developer.android.com/about/versions/pie/android-9.0-migration?hl=id 411 | - https://developer.android.com/about/versions/pie/android-9.0-migration?hl=ja 412 | - https://developer.android.com/about/versions/pie/android-9.0-migration?hl=ko 413 | - https://developer.android.com/about/versions/pie/android-9.0-migration?hl=pt_br 414 | - https://developer.android.com/about/versions/nougat 415 | - https://developer.android.com/about/versions/nougat?hl=zh-cn 416 | - https://developer.android.com/about/versions/nougat?hl=es-419 417 | - https://developer.android.com/about/versions/nougat?hl=id 418 | - https://developer.android.com/about/versions/nougat?hl=ja 419 | - https://developer.android.com/about/versions/nougat?hl=ko 420 | - https://developer.android.com/about/versions/nougat?hl=pt-br 421 | - https://developer.android.com/about/versions/android-4.0-highlights 422 | -------------------------------------------------------------------------------- /ndk.md: -------------------------------------------------------------------------------- 1 | ## [NDK](https://developer.android.com/ndk/sitemap.xml) 2 | 3 | - https://developer.android.com/ndk/reference/group/memory 4 | - https://developer.android.com/ndk/guides/concepts 5 | - https://developer.android.com/ndk/guides/concepts?hl=es_419 6 | - https://developer.android.com/ndk/guides/concepts?hl=id 7 | - https://developer.android.com/ndk/guides/concepts?hl=ja 8 | - https://developer.android.com/ndk/guides/concepts?hl=zh_cn 9 | - https://developer.android.com/ndk/guides/concepts?hl=ko 10 | - https://developer.android.com/ndk/guides/concepts?hl=pt_br 11 | - https://developer.android.com/ndk/guides/audio/midi 12 | - https://developer.android.com/ndk/guides/audio/midi?hl=es_419 13 | - https://developer.android.com/ndk/guides/audio/midi?hl=id 14 | - https://developer.android.com/ndk/guides/audio/midi?hl=ja 15 | - https://developer.android.com/ndk/guides/audio/midi?hl=zh_cn 16 | - https://developer.android.com/ndk/guides/audio/midi?hl=ko 17 | - https://developer.android.com/ndk/guides/audio/midi?hl=pt_br 18 | - https://developer.android.com/ndk/reference/group/libdl 19 | - https://developer.android.com/ndk/reference/struct/a-native-window-buffer 20 | - https://developer.android.com/ndk/guides/audio/opensl 21 | - https://developer.android.com/ndk/guides/audio/opensl?hl=id 22 | - https://developer.android.com/ndk/guides/audio/opensl?hl=es_419 23 | - https://developer.android.com/ndk/guides/audio/opensl?hl=ja 24 | - https://developer.android.com/ndk/guides/audio/opensl?hl=zh_cn 25 | - https://developer.android.com/ndk/guides/audio/opensl?hl=ko 26 | - https://developer.android.com/ndk/guides/audio/opensl?hl=pt_br 27 | - https://developer.android.com/ndk/reference/group/networking 28 | - https://developer.android.com/ndk/reference/struct/a-dynamic-sensor-event 29 | - https://developer.android.com/ndk/guides 30 | - https://developer.android.com/ndk/guides?hl=id 31 | - https://developer.android.com/ndk/guides?hl=es_419 32 | - https://developer.android.com/ndk/guides?hl=ja 33 | - https://developer.android.com/ndk/guides?hl=zh_cn 34 | - https://developer.android.com/ndk/guides?hl=ko 35 | - https://developer.android.com/ndk/guides?hl=pt_br 36 | - https://developer.android.com/ndk/guides/cpp-support 37 | - https://developer.android.com/ndk/guides/cpp-support?hl=es_419 38 | - https://developer.android.com/ndk/guides/cpp-support?hl=id 39 | - https://developer.android.com/ndk/guides/cpp-support?hl=ja 40 | - https://developer.android.com/ndk/guides/cpp-support?hl=zh_cn 41 | - https://developer.android.com/ndk/guides/cpp-support?hl=ko 42 | - https://developer.android.com/ndk/guides/cpp-support?hl=pt_br 43 | - https://developer.android.com/ndk/guides/audio/audio-latency 44 | - https://developer.android.com/ndk/guides/audio/audio-latency?hl=es_419 45 | - https://developer.android.com/ndk/guides/audio/audio-latency?hl=id 46 | - https://developer.android.com/ndk/guides/audio/audio-latency?hl=ja 47 | - https://developer.android.com/ndk/guides/audio/audio-latency?hl=zh_cn 48 | - https://developer.android.com/ndk/guides/audio/audio-latency?hl=ko 49 | - https://developer.android.com/ndk/guides/audio/audio-latency?hl=pt_br 50 | - https://developer.android.com/ndk/reference/struct/a-image-crop-rect 51 | - https://developer.android.com/ndk/reference/group/logging 52 | - https://developer.android.com/ndk/guides/audio/sampling-audio 53 | - https://developer.android.com/ndk/guides/audio/sampling-audio?hl=es_419 54 | - https://developer.android.com/ndk/guides/audio/sampling-audio?hl=id 55 | - https://developer.android.com/ndk/guides/audio/sampling-audio?hl=ja 56 | - https://developer.android.com/ndk/guides/audio/sampling-audio?hl=zh_cn 57 | - https://developer.android.com/ndk/guides/audio/sampling-audio?hl=ko 58 | - https://developer.android.com/ndk/guides/audio/sampling-audio?hl=pt_br 59 | - https://developer.android.com/ndk/reference/group/storage 60 | - https://developer.android.com/ndk/reference/struct/a-logical-camera-capture-failure 61 | - https://developer.android.com/ndk/guides/asan 62 | - https://developer.android.com/ndk/guides/asan?hl=es_419 63 | - https://developer.android.com/ndk/guides/asan?hl=id 64 | - https://developer.android.com/ndk/guides/asan?hl=ja 65 | - https://developer.android.com/ndk/guides/asan?hl=zh_cn 66 | - https://developer.android.com/ndk/guides/asan?hl=ko 67 | - https://developer.android.com/ndk/guides/asan?hl=pt_br 68 | - https://developer.android.com/ndk/guides/audio/opensl/android-extensions 69 | - https://developer.android.com/ndk/guides/audio/opensl/android-extensions?hl=es_419 70 | - https://developer.android.com/ndk/guides/audio/opensl/android-extensions?hl=id 71 | - https://developer.android.com/ndk/guides/audio/opensl/android-extensions?hl=ja 72 | - https://developer.android.com/ndk/guides/audio/opensl/android-extensions?hl=zh_cn 73 | - https://developer.android.com/ndk/guides/audio/opensl/android-extensions?hl=ko 74 | - https://developer.android.com/ndk/guides/audio/opensl/android-extensions?hl=pt_br 75 | - https://developer.android.com/ndk/reference/group/input 76 | - https://developer.android.com/ndk/reference/struct/a-media-codec-on-async-notify-callback 77 | - https://developer.android.com/ndk/guides/sample 78 | - https://developer.android.com/ndk/guides/sample?hl=es_419 79 | - https://developer.android.com/ndk/guides/sample?hl=id 80 | - https://developer.android.com/ndk/guides/sample?hl=ja 81 | - https://developer.android.com/ndk/guides/sample?hl=zh_cn 82 | - https://developer.android.com/ndk/guides/sample?hl=ko 83 | - https://developer.android.com/ndk/guides/sample?hl=pt_br 84 | - https://developer.android.com/ndk/reference/struct/a-camera-metadata-entry 85 | - https://developer.android.com/ndk/reference/struct/a-native-activity-callbacks 86 | - https://developer.android.com/ndk/guides/hwasan 87 | - https://developer.android.com/ndk/guides/hwasan?hl=ja 88 | - https://developer.android.com/ndk/guides/hwasan?hl=id 89 | - https://developer.android.com/ndk/guides/hwasan?hl=ko 90 | - https://developer.android.com/ndk/guides/hwasan?hl=pt-br 91 | - https://developer.android.com/ndk/guides/hwasan?hl=es-419 92 | - https://developer.android.com/ndk/guides/hwasan?hl=zh-cn 93 | - https://developer.android.com/ndk/guides/image-decoder 94 | - https://developer.android.com/ndk/guides/image-decoder?hl=ja 95 | - https://developer.android.com/ndk/guides/image-decoder?hl=id 96 | - https://developer.android.com/ndk/guides/image-decoder?hl=ko 97 | - https://developer.android.com/ndk/guides/image-decoder?hl=pt-br 98 | - https://developer.android.com/ndk/guides/image-decoder?hl=es-419 99 | - https://developer.android.com/ndk/guides/image-decoder?hl=zh-cn 100 | - https://developer.android.com/ndk/reference/structcryptoinfo/pattern-t 101 | - https://developer.android.com/ndk/reference/group/choreographer 102 | - https://developer.android.com/ndk/guides/graphics/getting-started 103 | - https://developer.android.com/ndk/guides/graphics/getting-started?hl=es_419 104 | - https://developer.android.com/ndk/guides/graphics/getting-started?hl=id 105 | - https://developer.android.com/ndk/guides/graphics/getting-started?hl=ja 106 | - https://developer.android.com/ndk/guides/graphics/getting-started?hl=zh_cn 107 | - https://developer.android.com/ndk/guides/graphics/getting-started?hl=ko 108 | - https://developer.android.com/ndk/guides/graphics/getting-started?hl=pt_br 109 | - https://developer.android.com/ndk/reference/group/thermal 110 | - https://developer.android.com/ndk/guides/wrap-script 111 | - https://developer.android.com/ndk/guides/wrap-script?hl=es_419 112 | - https://developer.android.com/ndk/guides/wrap-script?hl=id 113 | - https://developer.android.com/ndk/guides/wrap-script?hl=ja 114 | - https://developer.android.com/ndk/guides/wrap-script?hl=zh_cn 115 | - https://developer.android.com/ndk/guides/wrap-script?hl=ko 116 | - https://developer.android.com/ndk/guides/wrap-script?hl=pt_br 117 | - https://developer.android.com/ndk/reference/group/neural-networks 118 | - https://developer.android.com/ndk/guides/other_build_systems 119 | - https://developer.android.com/ndk/guides/other_build_systems?hl=es_419 120 | - https://developer.android.com/ndk/guides/other_build_systems?hl=id 121 | - https://developer.android.com/ndk/guides/other_build_systems?hl=ja 122 | - https://developer.android.com/ndk/guides/other_build_systems?hl=zh_cn 123 | - https://developer.android.com/ndk/guides/other_build_systems?hl=ko 124 | - https://developer.android.com/ndk/guides/other_build_systems?hl=pt_br 125 | - https://developer.android.com/ndk/reference/group/asset 126 | - https://developer.android.com/ndk/reference/struct/a-media-codec-buffer-info 127 | - https://developer.android.com/ndk/guides/cpu-arm-neon 128 | - https://developer.android.com/ndk/guides/cpu-arm-neon?hl=es_419 129 | - https://developer.android.com/ndk/guides/cpu-arm-neon?hl=id 130 | - https://developer.android.com/ndk/guides/cpu-arm-neon?hl=ja 131 | - https://developer.android.com/ndk/guides/cpu-arm-neon?hl=zh_cn 132 | - https://developer.android.com/ndk/guides/cpu-arm-neon?hl=ko 133 | - https://developer.android.com/ndk/guides/cpu-arm-neon?hl=pt_br 134 | - https://developer.android.com/ndk/guides/sdk-versions 135 | - https://developer.android.com/ndk/reference/group/midi 136 | - https://developer.android.com/ndk/reference/struct/a-native-activity 137 | - https://developer.android.com/ndk/downloads 138 | - https://developer.android.com/ndk/downloads?hl=id 139 | - https://developer.android.com/ndk/downloads?hl=es_419 140 | - https://developer.android.com/ndk/downloads?hl=ja 141 | - https://developer.android.com/ndk/downloads?hl=zh_cn 142 | - https://developer.android.com/ndk/downloads?hl=ko 143 | - https://developer.android.com/ndk/downloads?hl=pt_br 144 | - https://developer.android.com/ndk/guides/build 145 | - https://developer.android.com/ndk/guides/build?hl=es_419 146 | - https://developer.android.com/ndk/guides/build?hl=id 147 | - https://developer.android.com/ndk/guides/build?hl=ja 148 | - https://developer.android.com/ndk/guides/build?hl=zh_cn 149 | - https://developer.android.com/ndk/guides/build?hl=ko 150 | - https://developer.android.com/ndk/guides/build?hl=pt_br 151 | - https://developer.android.com/ndk/reference/namespacendk 152 | - https://developer.android.com/ndk/reference/group/bitmap 153 | - https://developer.android.com/ndk/guides/gwp-asan 154 | - https://developer.android.com/ndk/guides/gwp-asan?hl=es-419 155 | - https://developer.android.com/ndk/guides/gwp-asan?hl=id 156 | - https://developer.android.com/ndk/guides/gwp-asan?hl=ja 157 | - https://developer.android.com/ndk/guides/gwp-asan?hl=ko 158 | - https://developer.android.com/ndk/guides/gwp-asan?hl=pt-br 159 | - https://developer.android.com/ndk/guides/gwp-asan?hl=zh-cn 160 | - https://developer.android.com/ndk/reference/struct/android-bitmap-info 161 | - https://developer.android.com/ndk/guides/standalone_toolchain 162 | - https://developer.android.com/ndk/guides/standalone_toolchain?hl=es_419 163 | - https://developer.android.com/ndk/guides/standalone_toolchain?hl=id 164 | - https://developer.android.com/ndk/guides/standalone_toolchain?hl=ja 165 | - https://developer.android.com/ndk/guides/standalone_toolchain?hl=zh_cn 166 | - https://developer.android.com/ndk/guides/standalone_toolchain?hl=ko 167 | - https://developer.android.com/ndk/guides/standalone_toolchain?hl=pt_br 168 | - https://developer.android.com/ndk/reference/classndk/1-1-bn-c-interface 169 | - https://developer.android.com/ndk/reference/struct/a-neural-networks-operand-type 170 | - https://developer.android.com/ndk/reference/struct/a-sensor-vector 171 | - https://developer.android.com/ndk/guides/ndk-build 172 | - https://developer.android.com/ndk/guides/ndk-build?hl=es_419 173 | - https://developer.android.com/ndk/guides/ndk-build?hl=id 174 | - https://developer.android.com/ndk/guides/ndk-build?hl=ja 175 | - https://developer.android.com/ndk/guides/ndk-build?hl=zh_cn 176 | - https://developer.android.com/ndk/guides/ndk-build?hl=ko 177 | - https://developer.android.com/ndk/guides/ndk-build?hl=pt_br 178 | - https://developer.android.com/ndk/reference/group/ndk-binder 179 | - https://developer.android.com/ndk/reference/namespacendk/1-1internal 180 | - https://developer.android.com/ndk/guides/audio 181 | - https://developer.android.com/ndk/guides/audio?hl=id 182 | - https://developer.android.com/ndk/guides/audio?hl=es_419 183 | - https://developer.android.com/ndk/guides/audio?hl=ja 184 | - https://developer.android.com/ndk/guides/audio?hl=zh_cn 185 | - https://developer.android.com/ndk/guides/audio?hl=ko 186 | - https://developer.android.com/ndk/guides/audio?hl=pt_br 187 | - https://developer.android.com/ndk/reference/struct/a-sensor-event 188 | - https://developer.android.com/ndk/guides/simpleperf-commands 189 | - https://developer.android.com/ndk/guides/simpleperf-commands?hl=es_419 190 | - https://developer.android.com/ndk/guides/simpleperf-commands?hl=id 191 | - https://developer.android.com/ndk/guides/simpleperf-commands?hl=ja 192 | - https://developer.android.com/ndk/guides/simpleperf-commands?hl=zh_cn 193 | - https://developer.android.com/ndk/guides/simpleperf-commands?hl=ko 194 | - https://developer.android.com/ndk/guides/simpleperf-commands?hl=pt_br 195 | - https://developer.android.com/ndk/reference/classndk/1-1-bp-c-interface 196 | - https://developer.android.com/ndk/reference/deprecated/deprecated 197 | - https://developer.android.com/ndk/reference/group/image-decoder 198 | - https://developer.android.com/ndk/reference/group/media 199 | - https://developer.android.com/ndk/guides/arch 200 | - https://developer.android.com/ndk/guides/arch?hl=es_419 201 | - https://developer.android.com/ndk/guides/arch?hl=id 202 | - https://developer.android.com/ndk/guides/arch?hl=ja 203 | - https://developer.android.com/ndk/guides/arch?hl=zh_cn 204 | - https://developer.android.com/ndk/guides/arch?hl=ko 205 | - https://developer.android.com/ndk/guides/arch?hl=pt_br 206 | - https://developer.android.com/ndk/guides/graphics/validation-layer 207 | - https://developer.android.com/ndk/guides/graphics/validation-layer?hl=es_419 208 | - https://developer.android.com/ndk/guides/graphics/validation-layer?hl=id 209 | - https://developer.android.com/ndk/guides/graphics/validation-layer?hl=ja 210 | - https://developer.android.com/ndk/guides/graphics/validation-layer?hl=zh_cn 211 | - https://developer.android.com/ndk/guides/graphics/validation-layer?hl=ko 212 | - https://developer.android.com/ndk/guides/graphics/validation-layer?hl=pt_br 213 | - https://developer.android.com/ndk/reference/struct/a-neural-networks-symm-per-channel-quant-params 214 | - https://developer.android.com/ndk/reference/group/a-hardware-buffer 215 | - https://developer.android.com/ndk/reference/structndk/1-1enum-range 216 | - https://developer.android.com/ndk/reference/struct/a-hardware-buffer-plane 217 | - https://developer.android.com/ndk/reference/group/configuration 218 | - https://developer.android.com/ndk/guides/application_mk 219 | - https://developer.android.com/ndk/guides/application_mk?hl=es_419 220 | - https://developer.android.com/ndk/guides/application_mk?hl=id 221 | - https://developer.android.com/ndk/guides/application_mk?hl=ja 222 | - https://developer.android.com/ndk/guides/application_mk?hl=zh_cn 223 | - https://developer.android.com/ndk/guides/application_mk?hl=ko 224 | - https://developer.android.com/ndk/guides/application_mk?hl=pt_br 225 | - https://developer.android.com/ndk/reference/structandroid/dlextinfo 226 | - https://developer.android.com/ndk/guides/audio/opensl/getting-started 227 | - https://developer.android.com/ndk/guides/audio/opensl/getting-started?hl=es_419 228 | - https://developer.android.com/ndk/guides/audio/opensl/getting-started?hl=id 229 | - https://developer.android.com/ndk/guides/audio/opensl/getting-started?hl=ja 230 | - https://developer.android.com/ndk/guides/audio/opensl/getting-started?hl=zh_cn 231 | - https://developer.android.com/ndk/guides/audio/opensl/getting-started?hl=ko 232 | - https://developer.android.com/ndk/guides/audio/opensl/getting-started?hl=pt_br 233 | - https://developer.android.com/ndk/guides/ndk-gdb 234 | - https://developer.android.com/ndk/guides/ndk-gdb?hl=es_419 235 | - https://developer.android.com/ndk/guides/ndk-gdb?hl=id 236 | - https://developer.android.com/ndk/guides/ndk-gdb?hl=ja 237 | - https://developer.android.com/ndk/guides/ndk-gdb?hl=zh_cn 238 | - https://developer.android.com/ndk/guides/ndk-gdb?hl=ko 239 | - https://developer.android.com/ndk/guides/ndk-gdb?hl=pt_br 240 | - https://developer.android.com/ndk/reference/group/camera 241 | - https://developer.android.com/ndk/samples/sample_teapot 242 | - https://developer.android.com/ndk/samples/sample_teapot?hl=es_419 243 | - https://developer.android.com/ndk/samples/sample_teapot?hl=id 244 | - https://developer.android.com/ndk/samples/sample_teapot?hl=ja 245 | - https://developer.android.com/ndk/samples/sample_teapot?hl=zh_cn 246 | - https://developer.android.com/ndk/samples/sample_teapot?hl=ko 247 | - https://developer.android.com/ndk/samples/sample_teapot?hl=pt_br 248 | - https://developer.android.com/ndk/reference/struct/a-media-drm-key-value-pair 249 | - https://developer.android.com/ndk/reference/classndk/1-1-scoped-a-parcel 250 | - https://developer.android.com/ndk/reference/classndk/1-1-scoped-a-status 251 | - https://developer.android.com/ndk/guides/graphics/extensions 252 | - https://developer.android.com/ndk/guides/graphics/extensions?hl=es_419 253 | - https://developer.android.com/ndk/guides/graphics/extensions?hl=id 254 | - https://developer.android.com/ndk/guides/graphics/extensions?hl=ja 255 | - https://developer.android.com/ndk/guides/graphics/extensions?hl=ko 256 | - https://developer.android.com/ndk/guides/graphics/extensions?hl=pt_br 257 | - https://developer.android.com/ndk/guides/graphics/extensions?hl=zh_cn 258 | - https://developer.android.com/ndk/reference/struct/pssh-entry 259 | - https://developer.android.com/ndk/reference/group/looper 260 | - https://developer.android.com/ndk/guides/audio/aaudio/aaudio 261 | - https://developer.android.com/ndk/guides/audio/aaudio/aaudio?hl=pt_br 262 | - https://developer.android.com/ndk/guides/audio/aaudio/aaudio?hl=id 263 | - https://developer.android.com/ndk/guides/audio/aaudio/aaudio?hl=es_419 264 | - https://developer.android.com/ndk/guides/audio/aaudio/aaudio?hl=ko 265 | - https://developer.android.com/ndk/guides/audio/aaudio/aaudio?hl=zh_cn 266 | - https://developer.android.com/ndk/guides/audio/aaudio/aaudio?hl=ja 267 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-for-android 268 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-for-android?hl=es_419 269 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-for-android?hl=id 270 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-for-android?hl=ja 271 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-for-android?hl=zh_cn 272 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-for-android?hl=ko 273 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-for-android?hl=pt_br 274 | - https://developer.android.com/ndk/samples/walkthroughs 275 | - https://developer.android.com/ndk/samples/walkthroughs?hl=es_419 276 | - https://developer.android.com/ndk/samples/walkthroughs?hl=id 277 | - https://developer.android.com/ndk/samples/walkthroughs?hl=ja 278 | - https://developer.android.com/ndk/samples/walkthroughs?hl=zh_cn 279 | - https://developer.android.com/ndk/samples/walkthroughs?hl=ko 280 | - https://developer.android.com/ndk/samples/walkthroughs?hl=pt_br 281 | - https://developer.android.com/ndk/guides/cmake 282 | - https://developer.android.com/ndk/guides/cmake?hl=es_419 283 | - https://developer.android.com/ndk/guides/cmake?hl=id 284 | - https://developer.android.com/ndk/guides/cmake?hl=ja 285 | - https://developer.android.com/ndk/guides/cmake?hl=zh_cn 286 | - https://developer.android.com/ndk/guides/cmake?hl=ko 287 | - https://developer.android.com/ndk/guides/cmake?hl=pt_br 288 | - https://developer.android.com/ndk/reference/classndk/1-1-scoped-a-i-binder-weak 289 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-prog-notes 290 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-prog-notes?hl=es_419 291 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-prog-notes?hl=id 292 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-prog-notes?hl=ja 293 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-prog-notes?hl=zh_cn 294 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-prog-notes?hl=ko 295 | - https://developer.android.com/ndk/guides/audio/opensl/opensl-prog-notes?hl=pt_br 296 | - https://developer.android.com/ndk/reference/struct/a-hdr-metadata-cta861-3 297 | - https://developer.android.com/ndk/reference/struct/a-camera-capture-session-logical-camera-capture-callbacks 298 | - https://developer.android.com/ndk/samples/sample_hellojni 299 | - https://developer.android.com/ndk/samples/sample_hellojni?hl=es_419 300 | - https://developer.android.com/ndk/samples/sample_hellojni?hl=id 301 | - https://developer.android.com/ndk/samples/sample_hellojni?hl=ja 302 | - https://developer.android.com/ndk/samples/sample_hellojni?hl=zh_cn 303 | - https://developer.android.com/ndk/samples/sample_hellojni?hl=ko 304 | - https://developer.android.com/ndk/samples/sample_hellojni?hl=pt_br 305 | - https://developer.android.com/ndk/guides/simpleperf 306 | - https://developer.android.com/ndk/guides/simpleperf?hl=es_419 307 | - https://developer.android.com/ndk/guides/simpleperf?hl=id 308 | - https://developer.android.com/ndk/guides/simpleperf?hl=ja 309 | - https://developer.android.com/ndk/guides/simpleperf?hl=zh_cn 310 | - https://developer.android.com/ndk/guides/simpleperf?hl=ko 311 | - https://developer.android.com/ndk/guides/simpleperf?hl=pt_br 312 | - https://developer.android.com/ndk/guides/graphics/shader-compilers 313 | - https://developer.android.com/ndk/guides/graphics/shader-compilers?hl=es_419 314 | - https://developer.android.com/ndk/guides/graphics/shader-compilers?hl=id 315 | - https://developer.android.com/ndk/guides/graphics/shader-compilers?hl=ja 316 | - https://developer.android.com/ndk/guides/graphics/shader-compilers?hl=zh_cn 317 | - https://developer.android.com/ndk/guides/graphics/shader-compilers?hl=ko 318 | - https://developer.android.com/ndk/guides/graphics/shader-compilers?hl=pt_br 319 | - https://developer.android.com/ndk/reference/structndk/1-1internal-1-1invalid-type 320 | - https://developer.android.com/ndk/guides/debug 321 | - https://developer.android.com/ndk/guides/debug?hl=es_419 322 | - https://developer.android.com/ndk/guides/debug?hl=id 323 | - https://developer.android.com/ndk/guides/debug?hl=ja 324 | - https://developer.android.com/ndk/guides/debug?hl=zh_cn 325 | - https://developer.android.com/ndk/guides/debug?hl=ko 326 | - https://developer.android.com/ndk/guides/debug?hl=pt_br 327 | - https://developer.android.com/ndk/reference/struct/a-camera-metadata-rational 328 | - https://developer.android.com/ndk/reference/struct/a-additional-info-event 329 | - https://developer.android.com/ndk 330 | - https://developer.android.com/ndk?hl=id 331 | - https://developer.android.com/ndk?hl=es_419 332 | - https://developer.android.com/ndk?hl=ja 333 | - https://developer.android.com/ndk?hl=zh_cn 334 | - https://developer.android.com/ndk?hl=ko 335 | - https://developer.android.com/ndk?hl=pt_br 336 | - https://developer.android.com/ndk/reference/struct/a-media-drm-byte-array 337 | - https://developer.android.com/ndk/reference/struct/a-image-reader-buffer-removed-listener 338 | - https://developer.android.com/ndk/reference/struct/a-meta-data-event 339 | - https://developer.android.com/ndk/reference/struct/a-camera-device-state-callbacks 340 | - https://developer.android.com/ndk/guides/audio/additional-resources 341 | - https://developer.android.com/ndk/guides/audio/additional-resources?hl=pt_br 342 | - https://developer.android.com/ndk/guides/audio/additional-resources?hl=id 343 | - https://developer.android.com/ndk/guides/audio/additional-resources?hl=es_419 344 | - https://developer.android.com/ndk/guides/audio/additional-resources?hl=ko 345 | - https://developer.android.com/ndk/guides/audio/additional-resources?hl=zh_cn 346 | - https://developer.android.com/ndk/guides/audio/additional-resources?hl=ja 347 | - https://developer.android.com/ndk/reference/group/native-activity 348 | - https://developer.android.com/ndk/guides/android_mk 349 | - https://developer.android.com/ndk/guides/android_mk?hl=es_419 350 | - https://developer.android.com/ndk/guides/android_mk?hl=id 351 | - https://developer.android.com/ndk/guides/android_mk?hl=ja 352 | - https://developer.android.com/ndk/guides/android_mk?hl=zh_cn 353 | - https://developer.android.com/ndk/guides/android_mk?hl=ko 354 | - https://developer.android.com/ndk/guides/android_mk?hl=pt_br 355 | - https://developer.android.com/ndk/reference/struct/a-hardware-buffer-planes 356 | - https://developer.android.com/ndk/guides/rootless-debug-gles 357 | - https://developer.android.com/ndk/guides/rootless-debug-gles?hl=es_419 358 | - https://developer.android.com/ndk/guides/rootless-debug-gles?hl=id 359 | - https://developer.android.com/ndk/guides/rootless-debug-gles?hl=ja 360 | - https://developer.android.com/ndk/guides/rootless-debug-gles?hl=zh_cn 361 | - https://developer.android.com/ndk/guides/rootless-debug-gles?hl=ko 362 | - https://developer.android.com/ndk/guides/rootless-debug-gles?hl=pt_br 363 | - https://developer.android.com/ndk/reference/group/sensor 364 | - https://developer.android.com/ndk/reference/group/a-native-window 365 | - https://developer.android.com/ndk/reference/struct/android-log-message 366 | - https://developer.android.com/ndk/guides/ndk-stack 367 | - https://developer.android.com/ndk/guides/ndk-stack?hl=es_419 368 | - https://developer.android.com/ndk/guides/ndk-stack?hl=id 369 | - https://developer.android.com/ndk/guides/ndk-stack?hl=ja 370 | - https://developer.android.com/ndk/guides/ndk-stack?hl=zh_cn 371 | - https://developer.android.com/ndk/guides/ndk-stack?hl=ko 372 | - https://developer.android.com/ndk/guides/ndk-stack?hl=pt_br 373 | - https://developer.android.com/ndk/reference/group/surface-texture 374 | - https://developer.android.com/ndk/reference/classndk/1-1-scoped-a-i-binder-death-recipient 375 | - https://developer.android.com/ndk/guides/prebuilts 376 | - https://developer.android.com/ndk/guides/prebuilts?hl=es_419 377 | - https://developer.android.com/ndk/guides/prebuilts?hl=id 378 | - https://developer.android.com/ndk/guides/prebuilts?hl=ja 379 | - https://developer.android.com/ndk/guides/prebuilts?hl=zh_cn 380 | - https://developer.android.com/ndk/guides/prebuilts?hl=ko 381 | - https://developer.android.com/ndk/guides/prebuilts?hl=pt_br 382 | - https://developer.android.com/ndk/reference/struct/a-rect 383 | - https://developer.android.com/ndk/reference/group/tracing 384 | - https://developer.android.com/ndk/reference/struct/a-hdr-metadata-smpte2086 385 | - https://developer.android.com/ndk/guides/cpu-features 386 | - https://developer.android.com/ndk/guides/cpu-features?hl=es_419 387 | - https://developer.android.com/ndk/guides/cpu-features?hl=id 388 | - https://developer.android.com/ndk/guides/cpu-features?hl=ja 389 | - https://developer.android.com/ndk/guides/cpu-features?hl=zh_cn 390 | - https://developer.android.com/ndk/guides/cpu-features?hl=ko 391 | - https://developer.android.com/ndk/guides/cpu-features?hl=pt_br 392 | - https://developer.android.com/ndk/guides/graphics/design-notes 393 | - https://developer.android.com/ndk/guides/graphics/design-notes?hl=es_419 394 | - https://developer.android.com/ndk/guides/graphics/design-notes?hl=id 395 | - https://developer.android.com/ndk/guides/graphics/design-notes?hl=ja 396 | - https://developer.android.com/ndk/guides/graphics/design-notes?hl=zh_cn 397 | - https://developer.android.com/ndk/guides/graphics/design-notes?hl=ko 398 | - https://developer.android.com/ndk/guides/graphics/design-notes?hl=pt_br 399 | - https://developer.android.com/ndk/reference/struct/a-camera-manager-extended-availability-listener 400 | - https://developer.android.com/ndk/reference/classndk/1-1-scoped-file-descriptor 401 | - https://developer.android.com/ndk/reference/group/sync 402 | - https://developer.android.com/ndk/reference/struct/a-camera-metadata-const-entry 403 | - https://developer.android.com/ndk/reference/group/apilevels 404 | - https://developer.android.com/ndk/reference/group/audio 405 | - https://developer.android.com/ndk/reference/classndk/1-1-sp-a-i-binder 406 | - https://developer.android.com/ndk/reference/struct/pssh-info 407 | - https://developer.android.com/ndk/reference/namespacendk/1-1impl 408 | - https://developer.android.com/ndk/samples 409 | - https://developer.android.com/ndk/samples?hl=id 410 | - https://developer.android.com/ndk/samples?hl=es_419 411 | - https://developer.android.com/ndk/samples?hl=ja 412 | - https://developer.android.com/ndk/samples?hl=zh_cn 413 | - https://developer.android.com/ndk/samples?hl=ko 414 | - https://developer.android.com/ndk/samples?hl=pt_br 415 | - https://developer.android.com/ndk/reference/struct/a-uncalibrated-event 416 | - https://developer.android.com/ndk/reference 417 | - https://developer.android.com/ndk/reference/classndk/1-1-i-c-interface 418 | - https://developer.android.com/ndk/reference/struct/a-heart-rate-event 419 | - https://developer.android.com/ndk/reference/struct/a-color-xy 420 | - https://developer.android.com/ndk/downloads/older_releases 421 | - https://developer.android.com/ndk/downloads/older_releases?hl=es_419 422 | - https://developer.android.com/ndk/downloads/older_releases?hl=id 423 | - https://developer.android.com/ndk/downloads/older_releases?hl=ja 424 | - https://developer.android.com/ndk/downloads/older_releases?hl=zh_cn 425 | - https://developer.android.com/ndk/downloads/older_releases?hl=ko 426 | - https://developer.android.com/ndk/downloads/older_releases?hl=pt_br 427 | - https://developer.android.com/ndk/reference/struct/a-camera-capture-session-state-callbacks 428 | - https://developer.android.com/ndk/guides/libs 429 | - https://developer.android.com/ndk/guides/libs?hl=es_419 430 | - https://developer.android.com/ndk/guides/libs?hl=id 431 | - https://developer.android.com/ndk/guides/libs?hl=ja 432 | - https://developer.android.com/ndk/guides/libs?hl=zh_cn 433 | - https://developer.android.com/ndk/guides/libs?hl=ko 434 | - https://developer.android.com/ndk/guides/libs?hl=pt_br 435 | - https://developer.android.com/ndk/reference/struct/a-camera-manager-availability-listener 436 | - https://developer.android.com/ndk/reference/struct/a-image-reader-image-listener 437 | - https://developer.android.com/ndk/reference/struct/a-hardware-buffer-desc 438 | - https://developer.android.com/ndk/samples/sample_na 439 | - https://developer.android.com/ndk/samples/sample_na?hl=es_419 440 | - https://developer.android.com/ndk/samples/sample_na?hl=id 441 | - https://developer.android.com/ndk/samples/sample_na?hl=ja 442 | - https://developer.android.com/ndk/samples/sample_na?hl=zh_cn 443 | - https://developer.android.com/ndk/samples/sample_na?hl=ko 444 | - https://developer.android.com/ndk/samples/sample_na?hl=pt_br 445 | - https://developer.android.com/ndk/guides/graphics 446 | - https://developer.android.com/ndk/guides/graphics?hl=es_419 447 | - https://developer.android.com/ndk/guides/graphics?hl=id 448 | - https://developer.android.com/ndk/guides/graphics?hl=ja 449 | - https://developer.android.com/ndk/guides/graphics?hl=zh_cn 450 | - https://developer.android.com/ndk/guides/graphics?hl=ko 451 | - https://developer.android.com/ndk/guides/graphics?hl=pt_br 452 | - https://developer.android.com/ndk/reference/classndk/1-1impl-1-1-scoped-a-resource 453 | - https://developer.android.com/ndk/guides/stable_apis 454 | - https://developer.android.com/ndk/guides/stable_apis?hl=es_419 455 | - https://developer.android.com/ndk/guides/stable_apis?hl=id 456 | - https://developer.android.com/ndk/guides/stable_apis?hl=ja 457 | - https://developer.android.com/ndk/guides/stable_apis?hl=zh_cn 458 | - https://developer.android.com/ndk/guides/stable_apis?hl=ko 459 | - https://developer.android.com/ndk/guides/stable_apis?hl=pt_br 460 | - https://developer.android.com/ndk/reference/struct/android-logger-data 461 | - https://developer.android.com/ndk/downloads/revision_history 462 | - https://developer.android.com/ndk/downloads/revision_history?hl=pt-br 463 | - https://developer.android.com/ndk/downloads/revision_history?hl=zh-cn 464 | - https://developer.android.com/ndk/downloads/revision_history?hl=ko 465 | - https://developer.android.com/ndk/downloads/revision_history?hl=es-419 466 | - https://developer.android.com/ndk/downloads/revision_history?hl=id 467 | - https://developer.android.com/ndk/downloads/revision_history?hl=ja 468 | - https://developer.android.com/ndk/reference/struct/a-camera-id-list 469 | - https://developer.android.com/ndk/guides/neuralnetworks 470 | - https://developer.android.com/ndk/guides/neuralnetworks?hl=id 471 | - https://developer.android.com/ndk/guides/neuralnetworks?hl=es_419 472 | - https://developer.android.com/ndk/guides/neuralnetworks?hl=ja 473 | - https://developer.android.com/ndk/guides/neuralnetworks?hl=zh_cn 474 | - https://developer.android.com/ndk/guides/neuralnetworks?hl=ko 475 | - https://developer.android.com/ndk/guides/neuralnetworks?hl=pt_br 476 | - https://developer.android.com/ndk/reference/classndk/1-1-shared-ref-base 477 | - https://developer.android.com/ndk/guides/abis 478 | - https://developer.android.com/ndk/guides/abis?hl=es_419 479 | - https://developer.android.com/ndk/guides/abis?hl=id 480 | - https://developer.android.com/ndk/guides/abis?hl=ja 481 | - https://developer.android.com/ndk/guides/abis?hl=zh_cn 482 | - https://developer.android.com/ndk/guides/abis?hl=ko 483 | - https://developer.android.com/ndk/guides/abis?hl=pt_br 484 | - https://developer.android.com/ndk/reference/struct/a-camera-capture-failure 485 | - https://developer.android.com/ndk/reference/group/font 486 | - https://developer.android.com/ndk/reference/struct/a-media-drm-key-status 487 | - https://developer.android.com/ndk/reference/group/file-descriptor 488 | - https://developer.android.com/ndk/reference/struct/a-camera-capture-session-capture-callbacks 489 | --------------------------------------------------------------------------------