Skip to content
This repository has been archived by the owner on Mar 17, 2022. It is now read-only.

Commit

Permalink
Minor edit to Gradle config
Browse files Browse the repository at this point in the history
  • Loading branch information
rmtheis committed Apr 19, 2018
1 parent 3436f01 commit 4661d8e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 13 deletions.
6 changes: 0 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@ allprojects {
group = 'com.rmtheis'
version = '8.0.0'

project.ext {
compileSdkVersion=27
buildToolsVersion='27.0.3'
androidSupportVersion='27.0.2'
}

repositories {
google()
jcenter()
Expand Down
4 changes: 2 additions & 2 deletions eyes-two/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

android {
compileSdkVersion project.ext.compileSdkVersion
buildToolsVersion project.ext.buildToolsVersion
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 9
Expand Down
4 changes: 2 additions & 2 deletions tess-two-test/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion project.ext.compileSdkVersion
buildToolsVersion project.ext.buildToolsVersion
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 9
Expand Down
6 changes: 3 additions & 3 deletions tess-two/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())

android {
compileSdkVersion project.ext.compileSdkVersion
buildToolsVersion project.ext.buildToolsVersion
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 9
Expand Down Expand Up @@ -61,7 +61,7 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.android.support:support-annotations:$project.ext.androidSupportVersion"
implementation "com.android.support:support-annotations:27.0.2"
}


Expand Down

0 comments on commit 4661d8e

Please sign in to comment.