Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
florent champigny committed Mar 14, 2018
1 parent 94250eb commit 7f2441c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:' + project.supportVersion
compile 'com.android.support:cardview-v7:' + project.supportVersion
implementation 'com.android.support:appcompat-v7:' + project.supportVersion
implementation 'com.android.support:cardview-v7:' + project.supportVersion

compile 'de.hdodenhof:circleimageview:2.1.0'
implementation 'de.hdodenhof:circleimageview:2.1.0'

compile project(':kotlinpleaseanimate')
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation project(':kotlinpleaseanimate')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}
repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion gradle/bintray-android-v1.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
from javadoc.destinationDir
}
artifacts {
archives javadocJar
//archives javadocJar
archives sourcesJar
}

Expand Down
4 changes: 2 additions & 2 deletions kotlinpleaseanimate/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:' + project.supportVersion
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:' + project.supportVersion
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}

ext {
Expand Down
3 changes: 2 additions & 1 deletion publish.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
./gradlew :kotlinpleaseanimate:assembleDebug :kotlinpleaseanimate:install
./gradlew :kotlinpleaseanimate:assembleDebug
./gradlew :kotlinpleaseanimate:install
./gradlew :kotlinpleaseanimate:bintrayUpload

0 comments on commit 7f2441c

Please sign in to comment.