Skip to content

Commit

Permalink
Add keystore.gradle file
Browse files Browse the repository at this point in the history
Update the .gitignore file in the library module
Update kotlin version
Move bintray and maven plugin versions to dependencies.gradle
  • Loading branch information
slavipetrov committed Dec 13, 2017
1 parent 7246df5 commit e2e8545
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ buildscript {
dependencies {
classpath "com.android.tools.build:gradle:$versions.gradlePlugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$versions.bintrayPlugin"
classpath "com.github.dcendents:android-maven-gradle-plugin:$versions.mavenPlugin"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
6 changes: 4 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ ext.versions = [
buildTools : '26.0.2',
publishVersion : '0.0.1',
publishVersionCode: 1,
gradlePlugin : '3.0.0',
gradlePlugin : '3.0.1',
bintrayPlugin : '1.7.3',
mavenPlugin : '1.4.1',

supportLib : '27.0.0',
espresso : '3.0.1',
kotlin : '1.1.51',
kotlin : '1.2.0',
leakCanary : '1.5.4'
]
3 changes: 1 addition & 2 deletions library/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
/build
keystore.gradle
/build
3 changes: 3 additions & 0 deletions library/keystore.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ext {
bintray_key = ""
}

0 comments on commit e2e8545

Please sign in to comment.