Skip to content

Commit 6f20bb3

Browse files
author
achint2093
committed
initial commit
0 parents  commit 6f20bb3

Some content is hidden

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

45 files changed

+1145
-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/codeStyles

Lines changed: 119 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/gradle.xml

Lines changed: 20 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/misc.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/vcs.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.

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: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
plugins {
2+
id("com.android.application")
3+
id("org.jetbrains.kotlin.android")
4+
id("kotlin-kapt")
5+
id("com.google.dagger.hilt.android")
6+
id("androidx.navigation.safeargs")
7+
}
8+
9+
android {
10+
namespace = "com.techuntried.notes"
11+
compileSdk = 34
12+
13+
defaultConfig {
14+
applicationId = "com.techuntried.notes"
15+
minSdk = 23
16+
targetSdk = 34
17+
versionCode = 1
18+
versionName = "1.0"
19+
20+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
21+
vectorDrawables {
22+
useSupportLibrary = true
23+
}
24+
}
25+
26+
buildTypes {
27+
release {
28+
isMinifyEnabled = false
29+
proguardFiles(
30+
getDefaultProguardFile("proguard-android-optimize.txt"),
31+
"proguard-rules.pro"
32+
)
33+
}
34+
}
35+
compileOptions {
36+
sourceCompatibility = JavaVersion.VERSION_1_8
37+
targetCompatibility = JavaVersion.VERSION_1_8
38+
}
39+
kotlinOptions {
40+
jvmTarget = "1.8"
41+
}
42+
buildFeatures {
43+
compose = true
44+
}
45+
composeOptions {
46+
kotlinCompilerExtensionVersion = "1.5.13"
47+
}
48+
packaging {
49+
resources {
50+
excludes += "/META-INF/{AL2.0,LGPL2.1}"
51+
}
52+
}
53+
}
54+
55+
dependencies {
56+
57+
implementation("androidx.core:core-ktx:1.9.0")
58+
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")
59+
implementation("androidx.activity:activity-compose:1.9.0")
60+
implementation(platform("androidx.compose:compose-bom:2023.03.00"))
61+
implementation("androidx.compose.ui:ui")
62+
implementation("androidx.compose.ui:ui-graphics")
63+
implementation("androidx.compose.ui:ui-tooling-preview")
64+
implementation("androidx.compose.material3:material3")
65+
testImplementation("junit:junit:4.13.2")
66+
androidTestImplementation("androidx.test.ext:junit:1.1.5")
67+
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
68+
androidTestImplementation(platform("androidx.compose:compose-bom:2023.03.00"))
69+
androidTestImplementation("androidx.compose.ui:ui-test-junit4")
70+
debugImplementation("androidx.compose.ui:ui-tooling")
71+
debugImplementation("androidx.compose.ui:ui-test-manifest")
72+
73+
//hilt
74+
implementation("com.google.dagger:hilt-android:2.48")
75+
kapt("com.google.dagger:hilt-compiler:2.48")
76+
77+
78+
//room
79+
implementation("androidx.room:room-runtime:2.6.0")
80+
implementation("androidx.room:room-ktx:2.6.0")
81+
kapt("androidx.room:room-compiler:2.6.0")
82+
83+
//navigation compose
84+
implementation("androidx.navigation:navigation-compose:2.7.7")
85+
implementation("androidx.hilt:hilt-navigation-compose:1.2.0")
86+
//compose material
87+
implementation("androidx.compose.material:material:1.6.7")
88+
89+
90+
}
91+
kapt {
92+
correctErrorTypes = true
93+
}

0 commit comments

Comments
 (0)