Skip to content

Commit

Permalink
Fix formatting of build.gradle.
Browse files Browse the repository at this point in the history
Otherwise Android Studio keeps changing the formating with each
modification.
  • Loading branch information
rivaldi8 committed Mar 19, 2015
1 parent d63bc6d commit bdf9bdc
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,13 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "org.gnucash.android"
minSdkVersion 9
targetSdkVersion 19
versionCode 48
versionName "1.6.x"
}

buildTypes {
release {
minifyEnabled false
Expand All @@ -21,7 +19,6 @@ android {
debuggable true
}
}

lintOptions {
abortOnError false
}
Expand All @@ -39,16 +36,14 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile ('com.android.support:support-v4:21.0.+',
'com.actionbarsherlock:actionbarsherlock:4.4.0@aar',
compile('com.android.support:support-v4:21.0.+',
'com.actionbarsherlock:actionbarsherlock:4.4.0@aar',
'com.viewpagerindicator:library:2.4.1@aar',
'com.doomonafireball.betterpickers:library:1.5.2',
'com.commonsware.cwac:merge:1.1.+',
'org.quanqi:mpandroidchart:1.7.4', //TODO: Upgrade only when we support Android API 14 and over)
'joda-time:joda-time:2.7'
)

androidTestCompile ('com.jayway.android.robotium:robotium-solo:5.2.1',
'com.squareup:fest-android:1.0.6')

androidTestCompile('com.jayway.android.robotium:robotium-solo:5.2.1',
'com.squareup:fest-android:1.0.6')
}

0 comments on commit bdf9bdc

Please sign in to comment.