Skip to content

Commit

Permalink
Did some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mvarnagiris committed Nov 2, 2014
1 parent 79d6107 commit 9181843
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
8 changes: 4 additions & 4 deletions financius/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,8 @@ android {
versionNameSuffix '-debug'
}
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
minifyEnabled true
minifyEnabled false
shrinkResources true
}
}
Expand Down Expand Up @@ -56,8 +55,9 @@ dependencies {
compile 'com.google.android.gms:play-services:6.1.11'
compile 'com.github.castorflex.smoothprogressbar:library:1.0.0'
compile 'com.github.castorflex.smoothprogressbar:library-circular:1.0.0'
compile 'com.squareup.retrofit:retrofit:1.6.0'
compile 'com.squareup.picasso:picasso:2.3.3'
compile 'com.squareup.okhttp:okhttp:2.0.0'
compile 'com.squareup.retrofit:retrofit:1.7.1'
compile 'com.squareup.picasso:picasso:2.3.4'
compile 'com.squareup.dagger:dagger:1.2.2'
provided 'com.squareup.dagger:dagger-compiler:1.2.2'
compile 'org.beanshell:bsh-core:2.0b4'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
package com.code44.finance.utils.analytics;

import com.code44.finance.qualifiers.AppTracker;
import com.google.android.gms.analytics.HitBuilders;
import com.google.android.gms.analytics.Tracker;

public class Analytics {
private final @AppTracker Tracker tracker;
private final Tracker tracker;

public Analytics(@AppTracker Tracker tracker) {
public Analytics(Tracker tracker) {
this.tracker = tracker;
}

Expand Down

0 comments on commit 9181843

Please sign in to comment.