Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
24fc348
featuring bottom nav with a drawer on it
haz1ru Jun 4, 2025
039ef25
hmoe_screens moved to the screens folder
haz1ru Jun 4, 2025
75fef8a
sory my bad.
haz1ru Jun 4, 2025
558a82c
created theme/theme.dart
haz1ru Jun 4, 2025
2a1819f
make changes on theme
haz1ru Jun 4, 2025
095e421
add theme colors to nav bar
haz1ru Jun 4, 2025
866eddf
add theme colors to drawer
haz1ru Jun 4, 2025
66ccddf
change while resolving complicts
haz1ru Jun 6, 2025
3d41916
romed unwated thinggs and change routing
haz1ru Jun 8, 2025
782d739
add a logout button and customized
haz1ru Jun 8, 2025
11291d6
brought logout button to bottom.
haz1ru Jun 8, 2025
565d671
updated analytics button
haz1ru Jun 9, 2025
fddd5be
removed logout button from the
haz1ru Jun 9, 2025
7a295e0
featuring bottom nav with a drawer on it
haz1ru Jun 4, 2025
588dbce
hmoe_screens moved to the screens folder
haz1ru Jun 4, 2025
40abb98
sory my bad.
haz1ru Jun 4, 2025
6121f55
created theme/theme.dart
haz1ru Jun 4, 2025
4db18e9
make changes on theme
haz1ru Jun 4, 2025
d93a1a9
add theme colors to nav bar
haz1ru Jun 4, 2025
bcc2f08
add theme colors to drawer
haz1ru Jun 4, 2025
235fa9b
change while resolving complicts
haz1ru Jun 6, 2025
3fbb2b3
romed unwated thinggs and change routing
haz1ru Jun 8, 2025
1c84d90
add a logout button and customized
haz1ru Jun 8, 2025
1160fcd
brought logout button to bottom.
haz1ru Jun 8, 2025
fe7b3f6
updated analytics button
haz1ru Jun 9, 2025
287c1b4
removed logout button from the
haz1ru Jun 9, 2025
bf0d69d
Merge branch 'feature/navbar-version-2' of https://github.com/Priyank…
haz1ru Jun 9, 2025
4ec9137
featuring bottom nav with a drawer on it
haz1ru Jun 4, 2025
b44f2d8
hmoe_screens moved to the screens folder
haz1ru Jun 4, 2025
2537d12
sory my bad.
haz1ru Jun 4, 2025
17cd792
created theme/theme.dart
haz1ru Jun 4, 2025
56e7064
make changes on theme
haz1ru Jun 4, 2025
d4a9d22
add theme colors to nav bar
haz1ru Jun 4, 2025
8a868d6
add theme colors to drawer
haz1ru Jun 4, 2025
a2c3ea5
change while resolving complicts
haz1ru Jun 6, 2025
32298dc
romed unwated thinggs and change routing
haz1ru Jun 8, 2025
ad61398
add a logout button and customized
haz1ru Jun 8, 2025
0238dfd
brought logout button to bottom.
haz1ru Jun 8, 2025
f44c3e3
updated analytics button
haz1ru Jun 9, 2025
d46c56c
removed logout button from the
haz1ru Jun 9, 2025
b481bd1
featuring bottom nav with a drawer on it
haz1ru Jun 4, 2025
79c7949
hmoe_screens moved to the screens folder
haz1ru Jun 4, 2025
3467026
sory my bad.
haz1ru Jun 4, 2025
577bb11
Merge branch 'feature/navbar-version-2' of https://github.com/Priyank…
haz1ru Jun 9, 2025
2f506c4
changed authentication work flow
haz1ru Jun 11, 2025
3e5a24c
hmoe_screens moved to the screens folder
haz1ru Jun 4, 2025
30a096a
sory my bad.
haz1ru Jun 4, 2025
744a191
featuring bottom nav with a drawer on it
haz1ru Jun 4, 2025
5c4e707
hmoe_screens moved to the screens folder
haz1ru Jun 4, 2025
725f5b3
sory my bad.
haz1ru Jun 4, 2025
0b0c1d4
changed authentication work flow
haz1ru Jun 11, 2025
65ff4b7
Merge branch 'feature/navbar-version-2' of https://github.com/Priyank…
haz1ru Jun 11, 2025
be5072c
resolve the service error
haz1ru Jun 11, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 21 additions & 9 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,21 +1,33 @@
allprojects {
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.8.0")
classpath("com.google.gms:google-services:4.4.0")
}
}

val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get()
rootProject.layout.buildDirectory.value(newBuildDir)
// ✅ Set build directory
val newBuildDir = rootProject.layout.buildDirectory.dir("../../build").get()
rootProject.layout.buildDirectory.set(newBuildDir)

// ✅ Ensure all subprojects (like :app) use proper build directories
subprojects {
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
project.layout.buildDirectory.value(newSubprojectBuildDir)
}
subprojects {
project.evaluationDependsOn(":app")
layout.buildDirectory.set(newBuildDir.dir(name))

// ✅ Add repositories so subprojects can resolve dependencies
repositories {
google()
mavenCentral()
}

// Optional but helps ensure proper evaluation order
evaluationDependsOn(":app")
}

// ✅ Clean task
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}
}
Loading