Skip to content

Commit 180ceed

Browse files
author
Avadh H. Kachhadiya
committed
first commit
0 parents  commit 180ceed

File tree

69 files changed

+1616
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+1616
-0
lines changed

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
local.properties

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/deploymentTargetDropDown.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 19 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/migrations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle.kts

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
plugins {
2+
id("com.android.application")
3+
id("org.jetbrains.kotlin.android")
4+
id("kotlin-kapt")
5+
}
6+
7+
android {
8+
namespace = "com.example.roomhandson"
9+
compileSdk = 34
10+
11+
defaultConfig {
12+
applicationId = "com.example.roomhandson"
13+
minSdk = 24
14+
targetSdk = 34
15+
versionCode = 1
16+
versionName = "1.0"
17+
18+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
19+
}
20+
21+
buildFeatures {
22+
viewBinding = true
23+
}
24+
buildTypes {
25+
release {
26+
isMinifyEnabled = false
27+
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
28+
}
29+
}
30+
compileOptions {
31+
sourceCompatibility = JavaVersion.VERSION_1_8
32+
targetCompatibility = JavaVersion.VERSION_1_8
33+
}
34+
kotlinOptions {
35+
jvmTarget = "1.8"
36+
}
37+
}
38+
39+
dependencies {
40+
41+
implementation("androidx.core:core-ktx:1.12.0")
42+
implementation("androidx.appcompat:appcompat:1.6.1")
43+
implementation("com.google.android.material:material:1.11.0")
44+
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
45+
testImplementation("junit:junit:4.13.2")
46+
androidTestImplementation("androidx.test.ext:junit:1.1.5")
47+
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
48+
49+
implementation("androidx.lifecycle:lifecycle-livedata-ktx:2.7.0")
50+
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0")
51+
implementation("androidx.activity:activity-ktx:1.8.2")
52+
implementation("androidx.fragment:fragment-ktx:1.6.2")
53+
54+
// Room DB
55+
kapt("androidx.room:room-compiler:2.6.1")
56+
implementation("androidx.room:room-ktx:2.6.1")
57+
implementation("androidx.room:room-runtime:2.6.1")
58+
}

0 commit comments

Comments
 (0)