Skip to content

Commit

Permalink
Merge pull request #3 from aandis/fix-floating-blunder
Browse files Browse the repository at this point in the history
Fix floating blunder
  • Loading branch information
aandis authored Mar 25, 2017
2 parents 4b8a2ef + 64b58c8 commit 2bf23ba
Show file tree
Hide file tree
Showing 43 changed files with 469 additions and 411 deletions.
22 changes: 17 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
local.properties
.DS_Store
/build
/captures
build/
captures
*.dex
*.class
bin/
gen/
out/
proguard/

*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/dictionaries
.idea/libraries
.idea/misc.xml
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

18 changes: 0 additions & 18 deletions .idea/gradle.xml

This file was deleted.

62 changes: 0 additions & 62 deletions .idea/misc.xml

This file was deleted.

1 change: 1 addition & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 0 additions & 19 deletions SmartAccounting.iml

This file was deleted.

Binary file modified app/app-release.apk
Binary file not shown.
135 changes: 0 additions & 135 deletions app/app.iml

This file was deleted.

10 changes: 8 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "help.smartbusiness.smartaccounting"
minSdkVersion 17
targetSdkVersion 23
versionCode 3
versionName "1.0.3"
versionCode 4
versionName "1.1.0"
}
buildTypes {
release {
Expand All @@ -19,6 +19,10 @@ android {
}
}

repositories{
maven { url "https://jitpack.io" }
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
Expand All @@ -33,6 +37,8 @@ dependencies {
compile 'com.github.halysongoncalves:pugnotification:1.8.1'
compile 'com.google.firebase:firebase-crash:9.8.0'
compile 'com.google.firebase:firebase-core:9.8.0'

compile 'com.github.BlacKCaT27:CurrencyEditText:v1.4.4'
}

apply plugin: 'com.google.gms.google-services'
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
android:theme="@style/AppTheme"
android:name=".SmartAccounting">
<activity
android:name=".activities.MainActivity"
android:label="@string/app_name"
Expand Down
Loading

0 comments on commit 2bf23ba

Please sign in to comment.