-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (34 loc) · 923 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
36
37
38
39
40
41
buildscript {
repositories {
jcenter()
mavenLocal()
}
dependencies {
// Multi-OS Engine plugin
classpath group: 'org.multi-os-engine.community', name: 'moe-gradle', version: '1.7.+'
}
}
apply plugin: 'moe'
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
repositories {
jcenter()
}
// Exclude all files from Gradle's test runner
test { exclude '**' }
// Setup Multi-OS Engine
moe {
xcode {
project 'xcode/mlkit-test.xcodeproj'
mainTarget 'mlkit-test'
testTarget 'mlkit-test-Test'
// Uncomment and change these settings if you are working with a Xcode workspace
workspace 'xcode/mlkit-test.xcworkspace'
mainScheme 'mlkit-test'
testScheme 'mlkit-test-Test'
}
}
dependencies {
// Compile with 'jar' files in the project's 'lib' directory
compile fileTree(dir: 'lib', include: '*.jar')
}