Skip to content

Commit

Permalink
Merge pull request #187 from wordpress-mobile/fix/android-studio-4
Browse files Browse the repository at this point in the history
Fix maven dependency error with Android Studio 3.2
  • Loading branch information
Tug authored Oct 24, 2018
2 parents 1c9f563 + 7f3ecc8 commit fc5bb1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def enableProguardInReleaseBuilds = false

android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
buildToolsVersion "28.0.2"

defaultConfig {
applicationId "com.gutenberg"
Expand Down Expand Up @@ -142,18 +142,18 @@ android {

buildscript {
repositories {
jcenter()
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.android.tools.build:gradle:3.1.0'
}
}

repositories {
jcenter()
google()
jcenter()
maven { url "https://jitpack.io" }
}

Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
gradlePluginVersion = '3.0.1'
gradlePluginVersion = '3.1.0'
kotlinVersion = '1.2.31'
supportLibVersion = '27.1.1'
tagSoupVersion = '1.2.2'
Expand All @@ -14,8 +14,8 @@ buildscript {
}

repositories {
jcenter()
google()
jcenter()
}

dependencies {
Expand Down

0 comments on commit fc5bb1b

Please sign in to comment.