-
Notifications
You must be signed in to change notification settings - Fork 131
/
Copy pathbuild.gradle
148 lines (125 loc) · 3.9 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
allprojects {
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
apply plugin: 'com.android.library'
apply plugin: 'jacoco'
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.ConnectSDK'
jacoco {
toolVersion = "0.7.1.201405082137"
}
task jacocoTestReport(type:JacocoReport, dependsOn: "check") {
group = "Reporting"
description = "Generate Jacoco coverage reports"
getClassDirectories().setFrom(
dir: 'build/intermediates/classes/debug',
excludes: ['**/R.class',
'**/R$*.class',
'**/*$ViewInjector*.*',
'**/BuildConfig.*',
'**/Manifest*.*']
)
additionalSourceDirs.from = android.sourceSets.main.java.srcDirs
sourceDirectories.from = android.sourceSets.main.java.srcDirs
executionData.from = 'build/jacoco/testDebug.exec'
reports {
xml.enabled = true
html.enabled = true
}
}
build.dependsOn jacocoTestReport
android {
compileSdkVersion 32
buildToolsVersion '30.0.3'
defaultConfig {
minSdkVersion 24
targetSdkVersion 32
}
packagingOptions {
exclude 'LICENSE.txt'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE'
}
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = [
'src',
'core/src',
'modules/google_cast/src',
'modules/firetv/src',
]
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['core/res']
assets.srcDirs = ['assets']
jniLibs.srcDirs = ['core/jniLibs']
}
test {
java.srcDirs = [
'core/test/src',
'modules/google_cast/test/src',
'modules/firetv/test/src',
]
}
}
buildTypes {
debug {
testCoverageEnabled = true
}
release {
minifyEnabled false
}
}
android {
lintOptions {
abortOnError false
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
useLibrary 'org.apache.http.legacy'
ndkVersion "22.1.7171670"
}
android.testOptions.unitTests.all {
include '**/*Test.class'
}
dependencies {
implementation 'org.java-websocket:Java-WebSocket:1.5.0'
implementation 'javax.jmdns:jmdns:3.4.1'
implementation fileTree(dir: 'modules/firetv/libs', include: '*.jar')
implementation 'androidx.mediarouter:mediarouter:1.2.0'
implementation 'androidx.annotation:annotation:1.0.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.appcompat:appcompat:1.3.1' // 1.4.1 version doesn't support compile sdk 30
implementation 'com.googlecode.plist:dd-plist:1.23'
implementation 'com.nimbusds:srp6a:2.1.0'
implementation 'net.i2p.crypto:eddsa:0.3.0'
implementation 'com.google.android.gms:play-services-cast-framework:9.4.0'
implementation files('core/libs/lgcast-android-lib.jar')
testImplementation 'org.apache.maven:maven-ant-tasks:2.1.3'
testImplementation 'junit:junit:4.12'
testImplementation 'org.robolectric:robolectric:2.4'
testImplementation 'org.mockito:mockito-all:1.10.19'
testImplementation 'org.powermock:powermock-api-mockito:1.6.2'
testImplementation 'xmlunit:xmlunit:1.4'
}
apply from: 'maven-push.gradle'