Skip to content

Commit

Permalink
Especificando versões das bibliotecas
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrofsn committed Jun 19, 2018
1 parent a5693b8 commit 82b4a87
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ android {
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "com.android.support:appcompat-v7:$support_version"
implementation project (":revealpassword")
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.50'
implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
implementation project(":revealpassword")
}
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
buildscript {
ext.kotlin_version = '1.2.50'
ext.support_version = '28.0.0-alpha3'

repositories {
google()
Expand All @@ -9,8 +7,9 @@ buildscript {

dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.2.50"
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

}
}

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

dependencies {
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
compileOnly "com.android.support:appcompat-v7:$support_version"
compileOnly 'org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.50'
compileOnly 'com.android.support:appcompat-v7:28.0.0-alpha3'
}
repositories {
mavenCentral()
Expand Down

0 comments on commit 82b4a87

Please sign in to comment.