Skip to content

Commit

Permalink
Upgrades compileSdk, targetSdk, buildTools and gradle versions
Browse files Browse the repository at this point in the history
  • Loading branch information
codinguser committed Nov 9, 2019
1 parent 9b1851a commit 2a62ab8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
11 changes: 6 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ static def gitSha() {


android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
compileSdkVersion 29
buildToolsVersion '29.0.0'
defaultConfig {
applicationId "org.gnucash.android"
testApplicationId 'org.gnucash.android.test'
minSdkVersion 19
targetSdkVersion 27
targetSdkVersion 29
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"
resValue "string", "app_version_name", "${versionName}"
Expand Down Expand Up @@ -147,6 +147,7 @@ android {
}

testOptions {
animationsDisabled true
unitTests {
includeAndroidResources = true
}
Expand Down Expand Up @@ -223,8 +224,8 @@ dependencies {
exclude module: 'httpclient'
}

implementation('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {
transitive = true;
implementation('com.crashlytics.sdk.android:crashlytics:2.10.1@aar') {
transitive = true
}


Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'io.fabric.tools:gradle:1.21.6'
classpath 'com.android.tools.build:gradle:3.5.2'
classpath 'io.fabric.tools:gradle:1.31.2'
classpath 'com.stanfy.spoon:spoon-gradle-plugin:1.2.2'
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Thu Sep 13 12:17:42 CDT 2018
#Sat Nov 09 21:22:07 CET 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.0-all.zip

0 comments on commit 2a62ab8

Please sign in to comment.