Skip to content

Commit

Permalink
An attempt to use ThreadPoster through MavenCentral() in sample app
Browse files Browse the repository at this point in the history
  • Loading branch information
techyourchance committed Apr 7, 2021
1 parent ebd45ac commit 9bf5e2f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 2 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,18 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files

classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
}
}

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

Expand Down
8 changes: 7 additions & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,15 @@ android {
}

dependencies {
implementation project(path: ':threadposter')
implementation fileTree(dir: 'libs', include: ['*.jar'])

implementation 'com.techyourchance:threadposter:1.0.0'

// Tried this as well
// implementation ("com.techyourchance:threadposter:1.0.0@aar") {
// transitive = true
// }

implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"

testImplementation "junit:junit:${rootProject.ext.junitVersion}"
Expand Down

0 comments on commit 9bf5e2f

Please sign in to comment.