Skip to content

Commit

Permalink
Added remote dependency to sample module. Changed kotlin version in l…
Browse files Browse the repository at this point in the history
…ibrary module
  • Loading branch information
kirill committed Jan 29, 2019
1 parent f5ecd68 commit b0fa2e9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.3.11'
ext.kotlin_version = '1.3.20'
repositories {
google()
jcenter()
Expand Down
11 changes: 8 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
android {
compileSdkVersion 28


compileSdkVersion 28

defaultConfig {
applicationId "com.yalantis.sample"
Expand All @@ -26,13 +25,19 @@ android {

}

repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

implementation project(':vishnu')
implementation 'com.github.yalantis:VishnuCalendar:v0.0.1-alpha'

testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
Expand Down

0 comments on commit b0fa2e9

Please sign in to comment.