Skip to content

Commit

Permalink
working stage with button bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
yashkite committed Nov 5, 2024
1 parent 1c50412 commit f137c4f
Show file tree
Hide file tree
Showing 71 changed files with 1,800 additions and 959 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ This project is based on money management for anyone who likes the **20-30-50 ru


### Built With
- Java / Kotlin
- Java
- XML
- Python

Expand Down
10 changes: 6 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
Expand Down Expand Up @@ -44,16 +43,19 @@ dependencies {
implementation 'com.google.firebase:firebase-auth'
implementation 'com.google.firebase:firebase-firestore'

// Firebase Tasks
implementation 'com.google.android.gms:play-services-tasks:18.2.0'

// Other dependencies
implementation 'com.google.android.gms:play-services-auth:21.2.0'
implementation 'androidx.appcompat:appcompat:1.7.0'
implementation 'com.google.android.material:material:1.12.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.constraintlayout:constraintlayout:2.2.0'
implementation 'com.orhanobut:dialogplus:1.11@aar'

// Fragments
implementation "androidx.fragment:fragment:1.8.4"
implementation "androidx.fragment:fragment-ktx:1.8.4"
implementation "androidx.fragment:fragment:1.8.5"
implementation "androidx.fragment:fragment-ktx:1.8.5"

// Testing
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
Expand Down
26 changes: 13 additions & 13 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@
android:label="@string/app_name"
android:roundIcon="@mipmap/umoneylogo_round"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.DayNight">

<activity
android:name=".MainActivity"
android:exported="false"
android:theme="@style/Theme.AppCompat.DayNight" />

android:theme="@style/Theme.UMoney">



<activity
android:name=".Google_Login"
android:exported="true"
android:theme="@style/Theme.AppCompat.DayNight">
android:name=".ui.splash.SplashActivity"
android:theme="@style/Theme.UMoney.Splash"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity android:name=".AddTransactionActivity" />

<activity android:name=".ui.auth.GoogleLoginActivity" />
<activity android:name=".ui.auth.UserSetupActivity" />
<activity
android:name=".ui.dashboard.DashboardActivity"
android:theme="@style/Theme.UMoney.Dashboard" />
</application>

</manifest>
64 changes: 0 additions & 64 deletions app/src/main/java/com/elececo/umoney/AddTransactionActivity.java

This file was deleted.

15 changes: 0 additions & 15 deletions app/src/main/java/com/elececo/umoney/DashboardFragment.java

This file was deleted.

123 changes: 0 additions & 123 deletions app/src/main/java/com/elececo/umoney/Google_Login.java

This file was deleted.

106 changes: 0 additions & 106 deletions app/src/main/java/com/elececo/umoney/MainActivity.java

This file was deleted.

Loading

0 comments on commit f137c4f

Please sign in to comment.