-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathbuild.gradle
146 lines (127 loc) · 4.46 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
import io.sentry.android.gradle.instrumentation.logcat.LogcatLevel
buildscript {
ext.kotlin_version= '1.8.20'
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath('com.mxalbert.gradle:jacoco-android:0.2.1')
}
repositories {
mavenCentral()
}
}
plugins {
id "io.sentry.android.gradle" version "4.14.1"
id 'com.android.application'
id 'kotlin-android'
id 'com.ydq.android.gradle.native-aar.import'
id 'jacoco'
id 'com.mxalbert.gradle.jacoco-android' version '0.2.1'
}
//fullstory {
// org 'QNEN8'
// enabledVariants 'all'
// logLevel 'off'
//}
android {
compileSdkVersion 31
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
defaultConfig {
applicationId "com.example.vu.android"
minSdkVersion 21
targetSdkVersion 29
versionCode System.getenv('VERSION_CODE')?.toInteger() ?: 241226
versionName System.getenv('VERSION_NAME') ?: "24.12.26"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
arguments.add(0, "-DANDROID_STL=c++_static")
}
}
ndk {
abiFilters("x86", "armeabi-v7a", "x86_64", "arm64-v8a")
}
}
externalNativeBuild {
cmake {
setPath("CMakeLists.txt")
}
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig = signingConfigs.debug // to be able to run release mode
buildConfigField("String", "SE", "\"tda\"")
buildConfigField("boolean", "SLOW_PROFILING", "true")
}
debug {
buildConfigField("String", "SE", "\"tda\"")
buildConfigField("boolean", "SLOW_PROFILING", "true")
testCoverageEnabled true
}
}
buildFeatures {
dataBinding true
}
lintOptions {
abortOnError false
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation group: 'androidx.constraintlayout', name: 'constraintlayout', version: '1.1.3'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.navigation:navigation-fragment:2.5.3'
implementation 'androidx.navigation:navigation-ui:2.5.3'
implementation 'com.android.support:support-core-utils:28.0.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.0'
implementation 'junit:junit:4.13.2'
implementation 'com.google.code.gson:gson:2.10.1'
def fragment_version = "1.5.6"
// Java language implementation
implementation "androidx.fragment:fragment:$fragment_version"
// Warning: upgrading the room version beyond 2.0.0 may
// cause errors running automated Saucelabs tests that generate data.
// If you upgrade the room version, ensure you run associated automated
// tests locally and that they pass.
def room_version = "2.0.0"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
testImplementation 'org.jetbrains:annotations:23.0.0'
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit:1.8.0'
testImplementation 'org.robolectric:robolectric:4.10.3'
testImplementation 'org.mockito.kotlin:mockito-kotlin:4.1.0'
testImplementation 'androidx.test:core:1.4.0'
testImplementation 'androidx.test.ext:junit:1.1.3'
testImplementation 'androidx.test:runner:1.4.0'
// JUnit 5 dependencies
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.2'
}
jacoco {
toolVersion = "0.8.10"
}
tasks.withType(Test) {
jacoco.includeNoLocationClasses = true // is this necessary
jacoco.excludes = ['jdk.internal.*'] // is this necessary
}
sentry {
autoUpload = true
uploadNativeSymbols = false
includeNativeSources = false
debug = true
includeSourceContext = true
additionalSourceDirsForSourceContext = ["src/main/java"]
tracingInstrumentation {
enabled = true
logcat {
enabled = true
minLevel = LogcatLevel.VERBOSE
}
}
}