forked from android10/Android-CleanArchitecture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
36 lines (30 loc) · 963 Bytes
/
build.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
apply from: 'buildsystem/ci.gradle'
apply from: 'buildsystem/dependencies.gradle'
buildscript {
def androidGradleVersion = '3.0.0'
def frodoVersion = '0.8.3'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:${androidGradleVersion}"
classpath "com.fernandocejas.frodo:frodo-plugin:${frodoVersion}"
}
}
allprojects {
ext {
androidApplicationId = 'com.fernanependocejas.android10.sample.app'
androidVersionCode = 1
androidVersionName = "1.0"
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
testApplicationId = 'com.fernandocejas.android10.sample.app.test'
}
}
task runUnitTests(dependsOn: [':app:cleanTestDebugUnitTest', ':app:testDebugUnitTest']) {
description 'Run application unit tests.'
}
task runAcceptanceTests(dependsOn: [':app:connectedAndroidTest']) {
description 'Run application acceptance tests.'
}