forked from facebook/screenshot-tests-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversions.gradle
51 lines (41 loc) · 2.2 KB
/
versions.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// Copyright (c) Facebook, Inc. and its affiliates.
ext {
final screenshotTestVersion = VERSION_NAME
final supportLibraryVersion = '27.1.1'
final dexmakerVersion = "1.4"
final lithoVersion = "0.19.0"
versions = [
kotlin : '1.2.71',
targetSdk : 27,
compileSdk: 27,
minSdk : 14,
]
plugs = [
"agp" : "com.android.tools.build:gradle:3.2.1",
"mavenGradle": "com.github.dcendents:android-maven-gradle-plugin:2.1",
"screenshot" : "com.facebook.testing.screenshot:plugin:$screenshotTestVersion",
"kotlin" : "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}",
"versions" : 'com.github.ben-manes:gradle-versions-plugin:0.20.0'
]
deps = [
supportAppCompat : "com.android.support:appcompat-v7:$supportLibraryVersion",
supportDesign : "com.android.support:design:$supportLibraryVersion",
supportMultidex : "com.android.support:multidex:1.0.1",
kotlinStdlib : "org.jetbrains.kotlin:kotlin-stdlib-jre7:${versions.kotlin}",
lithoCore : "com.facebook.litho:litho-core:$lithoVersion",
lithoWidget : "com.facebook.litho:litho-widget:$lithoVersion",
lithoAnnotations : "com.facebook.litho:litho-annotations:$lithoVersion",
lithoProcessor : "com.facebook.litho:litho-processor:$lithoVersion",
jsr305 : "com.google.code.findbugs:jsr305:3.0.2",
screenshotTestCommon: "com.facebook.testing.screenshot:layout-hierarchy-common:$screenshotTestVersion",
screenshotTestLitho : "com.facebook.testing.screenshot:layout-hierarchy-litho:$screenshotTestVersion",
"dexmaker" : "com.crittercism.dexmaker:dexmaker:$dexmakerVersion",
"dexmakerDx" : "com.crittercism.dexmaker:dexmaker-dx:$dexmakerVersion",
"dexmakerMockito" : "com.crittercism.dexmaker:dexmaker-mockito:$dexmakerVersion",
"espresso" : "com.android.support.test.espresso:espresso-core:3.0.2",
"androidTestRules" : "com.android.support.test:rules:1.0.2",
"junit" : "junit:junit:4.12",
"mockito" : "org.mockito:mockito-core:1.10.19",
"hamcrest" : "org.hamcrest:hamcrest-core:1.3",
]
}