Skip to content

Commit

Permalink
Bump versions and fix gradle warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
SundeepK committed Jun 9, 2018
1 parent 03d5a5b commit 821bff0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions build.gradle
Expand Up @@ -15,6 +15,7 @@ buildscript {

allprojects {
repositories {
google()
jcenter()
}
}
9 changes: 5 additions & 4 deletions library/build.gradle
Expand Up @@ -10,18 +10,19 @@ idea {
}

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


android {
compileSdkVersion 24
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
minSdkVersion 11
targetSdkVersion 24
targetSdkVersion 27
versionCode 1
versionName "1.0"
}
Expand All @@ -35,10 +36,10 @@ android {

dependencies {
api fileTree(include: ['*.jar'], dir: 'libs')
api 'com.android.support:appcompat-v7:24.2.1'
api 'com.android.support:appcompat-v7:27.1.1'
//mockito dependencies
androidTestImplementation 'junit:junit:4.12'
androidTestImplementation 'org.mockito:mockito-core:1.9.0'
androidTestImplementation 'org.mockito:mockito-core:2.15.0'
}

//apply from: 'https://raw.github.com/chrisbanes/gradle-mvn-push/master/gradle-mvn-push.gradle'
10 changes: 5 additions & 5 deletions sample/build.gradle
Expand Up @@ -16,13 +16,13 @@ apply plugin: 'com.android.application'
apply plugin: 'com.facebook.testing.screenshot'

android {
compileSdkVersion 24
compileSdkVersion 27
buildToolsVersion '27.0.3'

defaultConfig {
applicationId "sundeepk.github.com.sample"
minSdkVersion 16
targetSdkVersion 22
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "sundeepk.github.com.sample.TestRunner"
Expand All @@ -41,16 +41,16 @@ configurations.all {

dependencies {
api fileTree(include: ['*.jar'], dir: 'libs')
api 'com.android.support:appcompat-v7:24.2.1'
api 'com.android.support:support-v4:24.2.1'
api 'com.android.support:appcompat-v7:27.1.1'
api 'com.android.support:support-v4:27.1.1'
api project(':library')
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.azimolabs.conditionwatcher:conditionwatcher:0.1'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'com.google.dexmaker:dexmaker-mockito:1.0'
androidTestImplementation 'com.google.dexmaker:dexmaker:1.0'
androidTestImplementation 'org.mockito:mockito-core:1.10.17'
androidTestImplementation 'org.mockito:mockito-core:2.15.0'
androidTestImplementation 'com.android.support:support-annotations:27.1.1'

}

0 comments on commit 821bff0

Please sign in to comment.