-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbuild.gradle
41 lines (33 loc) · 928 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
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
jcenter()
}
dependencies {
classpath "com.github.jengelman.gradle.plugins:shadow:2.0.0"
}
}
apply plugin: 'java'
apply plugin: 'application'
apply plugin: "com.github.johnrengelman.shadow"
mainClassName = 'com.github.piasy.frida_android_tracer.FridaAndroidTracer'
shadowJar {
classifier = null
configurations = [project.configurations.compile]
}
sourceCompatibility = 1.8
repositories {
mavenCentral()
jcenter()
flatDir {
dirs "$rootProject.projectDir/libs"
}
}
dependencies {
// https://mvnrepository.com/artifact/commons-cli/commons-cli
compile group: 'commons-cli', name: 'commons-cli', version: '1.4'
//compile (name:'android', ext:'jar')
//compile group: 'org.robolectric', name: 'android-all', version: '8.0.0_r4-robolectric-0'
}