forked from hap-java/HAP-Java
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (47 loc) · 1.33 KB
/
Copy pathbuild.gradle
File metadata and controls
57 lines (47 loc) · 1.33 KB
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
52
53
54
55
56
57
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
}
}
apply plugin: 'com.android.library'
repositories {
google()
jcenter()
mavenCentral()
}
android {
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs=['src/main/java']
}
}
lintOptions {
abortOnError false
}
defaultConfig {
targetSdkVersion 30
minSdkVersion 24
}
dependencies {
implementation group: 'org.slf4j', name: 'slf4j-android', version: '1.7.25'
implementation group: 'org.jmdns', name: 'jmdns', version: '3.5.4'
implementation group: 'org.bouncycastle', name: 'bcprov-jdk15on', version: '1.60'
implementation 'net.vrallev.ecc:ecc-25519-java:1.0.3'
implementation group: 'org.glassfish', name: 'javax.json', version: '1.0'
implementation 'com.nimbusds:srp6a:2.0.2'
implementation group: 'io.netty', name: 'netty-all', version: '4.0.32.Final'
testImplementation 'junit:junit:4.13.1'
testImplementation 'org.mockito:mockito-all:1.10.19'
}
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
compileSdkVersion 30
buildToolsVersion '30.0.2'
}