Skip to content

Commit

Permalink
Merge pull request #66 from dbachelder/m.release_issues
Browse files Browse the repository at this point in the history
Resolving broken dependencies
  • Loading branch information
Joe Jensen authored Sep 6, 2018
2 parents b3044d2 + 90b0c12 commit 357cb9c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CreditCardEntry/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
Expand All @@ -10,14 +11,16 @@ buildscript {
apply plugin: 'com.android.library'

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

android {
compileSdkVersion 28

defaultConfig {
minSdkVersion 9
minSdkVersion 14
targetSdkVersion 28
}

Expand All @@ -36,5 +39,6 @@ android {
}

dependencies {
compile 'com.android.support:support-v4:25.3.1'
implementation 'com.android.support:support-annotations:27.1.1'
implementation 'com.android.support:support-compat:27.1.1'
}
8 changes: 5 additions & 3 deletions CreditCardEntryDemo/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
Expand All @@ -10,14 +11,16 @@ buildscript {
apply plugin: 'com.android.application'

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

android {
compileSdkVersion 28

defaultConfig {
minSdkVersion 9
minSdkVersion 14
targetSdkVersion 28
}

Expand All @@ -35,6 +38,5 @@ android {
}

dependencies {
compile project(':CreditCardEntry')
compile 'com.android.support:support-v4:25.3.1'
implementation project(':CreditCardEntry')
}

0 comments on commit 357cb9c

Please sign in to comment.