Skip to content

Commit

Permalink
Changes on build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
franmontiel committed Nov 15, 2018
1 parent e1b653a commit a6d99ea
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ allprojects {
repositories {
jcenter()
google()
maven { url 'https://jitpack.io' }
}
}

Expand Down
14 changes: 8 additions & 6 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ android {
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:28.0.0'
compile 'com.android.support.constraint:constraint-layout:1.1.3'
testCompile 'junit:junit:4.12'
compile project(':library')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
implementation project(':library')
// implementation 'com.github.franmontiel:AttributionPresenter:1.0.1'

}

0 comments on commit a6d99ea

Please sign in to comment.