Skip to content

Commit

Permalink
- UI Redesign
Browse files Browse the repository at this point in the history
- Added Settings
- Added Cloud Backup
- Currency Support
- Added Notes feature
- Added Card Interface for viewing a record when tapped
- Added "Unpaid" payment mode
- Bug Fixes
  • Loading branch information
Melvin-Abraham committed Jan 15, 2019
1 parent d09ae58 commit c235308
Show file tree
Hide file tree
Showing 46 changed files with 7,275 additions and 1,479 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ build/
ios/.generated/
packages
.flutter-plugins
android/app/google-services.json
.gradle/
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright [2018] [Melvin. L. Abraham]
Copyright 2018 Melvin. L. Abraham

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
17 changes: 17 additions & 0 deletions android/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>android</name>
<comment>Project android created by Buildship.</comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.buildship.core.gradleprojectbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.buildship.core.gradleprojectnature</nature>
</natures>
</projectDescription>
2 changes: 2 additions & 0 deletions android/.settings/org.eclipse.buildship.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
connection.project.dir=
eclipse.preferences.version=1
5 changes: 4 additions & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@ android {
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "1.0"
versionName "2.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}

buildTypes {
Expand All @@ -49,3 +50,5 @@ dependencies {
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}

apply plugin: 'com.google.gms.google-services'
12 changes: 12 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.google.gms:google-services:4.1.0'
}
}

Expand All @@ -22,6 +23,17 @@ subprojects {
}
subprojects {
project.evaluationDependsOn(':app')

// SOURCE: https://stackoverflow.com/questions/49934127/android-dependency-com-android-supportsupport-v4-has-different-version/50508553

project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "27.1.0"
}
}
}
}

task clean(type: Delete) {
Expand Down
Binary file added assets/anim/BrokenHeart.flr
Binary file not shown.
10 changes: 10 additions & 0 deletions assets/changelog/CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 2.0 MAJOR

- Improved overall UX Design
- Added Settings
- Added Cloud Backup Feature
- Tapping on a record now shows expanded details in a card interface
- Included Currency Support
- Added "Unpaid" as a payment mode option
- Adding notes to your expense records is now supported
- Minor Bug Fixes
Binary file added assets/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/[email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file added assets/github-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/google-favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit c235308

Please sign in to comment.