Skip to content

Commit

Permalink
Use latest Android version
Browse files Browse the repository at this point in the history
  • Loading branch information
skoric authored and Ivan Skoric committed Jan 29, 2018
1 parent 365ddd2 commit 3d1a71a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ buildscript {

repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}

dependencies {
Expand All @@ -21,6 +25,10 @@ allprojects {
maven {
url "https://maven.google.com"
}
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}

Expand Down
8 changes: 4 additions & 4 deletions dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ext.versions = [
minSdk : 16,
targetSdk : 23,
compileSdk : 23,
buildTools : '23.0.3',
targetSdk : 27,
compileSdk : 27,
buildTools : '27.0.3',
androidGradlePlugin: '2.2.1',

// Dependencies
supportLibs : '23.1.1',
supportLibs : '27.0.2',
rxJava : '2.1.3',
rxAndroid : '2.0.1',

Expand Down
8 changes: 4 additions & 4 deletions vangogh-sample/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 26
buildToolsVersion "27.0.1"
compileSdkVersion 27
buildToolsVersion "27.0.3"


defaultConfig {
applicationId "com.example.vangogh"
minSdkVersion 15
targetSdkVersion 26
targetSdkVersion 27
versionCode 1
versionName "1.0"

Expand All @@ -27,7 +27,7 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:appcompat-v7:27.0.2'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
androidTestCompile('com.android.support.test.espresso:espresso-core:3.0.1', {
Expand Down

0 comments on commit 3d1a71a

Please sign in to comment.