├── .github └── ISSUE_TEMPLATE │ ├── first-android-app---java.md │ └── first-android-app---kotlin.md └── README.md /.github/ISSUE_TEMPLATE/first-android-app---java.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: First Android App - Java 3 | about: Report issues with the Build Your First Android App in Java codelab 4 | title: 'First Android app codelab: ' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the problem** 11 | A clear and concise description of what the problem is. 12 | 13 | **In which step of the codelab can this issue be found?** 14 | Step number. 15 | 16 | **Versions** 17 | 1. What version of Android Studio are you using? 18 | 2. What API level are you targeting? 19 | 20 | **Additional information** 21 | Add any other context about the problem here. 22 | 23 | **codelab:** build-your-first-android-app-java 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/first-android-app---kotlin.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: First Android App - Kotlin 3 | about: Report issues with the Build Your First Android App in Kotlin codelab 4 | title: 'First Android app codelab: ' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the problem** 11 | A clear and concise description of what the problem is. 12 | 13 | **In which step of the codelab can this issue be found?** 14 | Step number. 15 | 16 | **Versions** 17 | 1. What version of Android Studio are you using? 18 | 2. What API level are you targeting? 19 | 20 | **Additional information** 21 | Add any other context about the problem here. 22 | 23 | **codelab:** build-your-first-android-app-kotlin 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # first-android-app 2 | Repository for Build Your First Android App codelabs (Java and Kotlin). There is no code associated with these codelabs; this is a repository for issues only. 3 | --------------------------------------------------------------------------------