Minimal Project Tree
Prerequisites: Android SDK, JDK (mostly)
If you have the Gradle installed, you can manually generate a project by typing gradle init
.
A minimal project tree (in Kotlin) would look like this:
Note
Most of the files are from Gradle, and additionally, if you are using Android Studio or IDEA, you'll have the IDE configuration files. The main source code resides in the "src" folder.
โโโ gradle
โ โโโ wrapper
โ โโโ gradle-wrapper.jar
โ โโโ gradle-wrapper.properties
โโโ gradlew
โโโ gradlew.bat
โโโ settings.gradle.kts
โโโ app
โโโ build.gradle.kts
โโโ src
โโโ main
โ โโโ kotlin
โ โโโ demo
โ โโโ App.kt
โโโ test
โโโ kotlin
โโโ demo
โโโ AppTest.kt