-
Notifications
You must be signed in to change notification settings - Fork 101
Update deps and stuff #115
Changes from 9 commits
25ba1b8
fa247fe
6ec6c5e
ee73942
e685a08
d499998
91ad7dd
70e19ec
bbe0ee6
df27816
a2839a1
47c4308
5381b66
710f7a5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ buildscript { | |
allprojects { | ||
repositories { | ||
jcenter() | ||
google() | ||
} | ||
tasks.withType(Javadoc) { | ||
options.addStringOption('Xdoclint:none', '-quiet') | ||
|
@@ -24,14 +25,19 @@ ext { | |
VERSION_NAME = "0.8.1-SNAPSHOT" | ||
VERSION_CODE = 6 | ||
MIN_SDK_VERSION = 14 | ||
TARGET_SDK_VERSION = 25 | ||
COMPILE_SDK_VERSION = 25 | ||
BUILD_TOOLS_VERSION = '25.0.2' | ||
TARGET_SDK_VERSION = 26 | ||
COMPILE_SDK_VERSION = 26 | ||
BUILD_TOOLS_VERSION = '26.0.1' | ||
|
||
supportLibraryVersion = '25.2.0' | ||
supportLibraryVersion = '26.0.0' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why not There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Because of #115 (comment) 🙃 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point! |
||
// compositeAndroidVersion should be always the same version as the supportLib version | ||
// Since composite is not up to date we can't use the latest one | ||
compositeAndroidVersion = supportLibraryVersion | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. good 👍 |
||
|
||
bintrayVersion = '0.5.0' | ||
junitVersion = '4.12' | ||
mockitoVersion = '1.10.19' | ||
assertjVersion = '2.5.0' | ||
mockitoVersion = '2.10.0' | ||
assertjVersion = '2.8.0' | ||
atslVersion = '1.0.1' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What does There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. android test support library? I suggest |
||
espressoVersion = '3.0.1' | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why clean? It will delete all build artifacts from the
before_script
assemble
step