Initial commit

This commit contains Fragment + ViewModel template from Android Studio
This commit is contained in:
Kirill Kamakin
2021-11-06 22:28:14 +03:00
commit 8bae6205b9
41 changed files with 851 additions and 0 deletions

18
build.gradle Normal file
View File

@@ -0,0 +1,18 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.3"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}