File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ dependencies {
34
34
implementation ' com.github.JeffMony:ORCodeDemo:v1.5.0'
35
35
implementation ' pub.devrel:easypermissions:2.0.1'
36
36
implementation ' com.github.JeffMony:Laker:1.0.6'
37
- implementation ' com.iqiyi.xcrash :xcrash-android-lib:3.0.0 '
37
+ implementation project( path : ' :xcrash' )
38
38
implementation project(path : ' :playersdk' )
39
39
implementation project(path : ' :exoplayer' )
40
40
}
Original file line number Diff line number Diff line change @@ -2,6 +2,10 @@ plugins {
2
2
id ' com.android.library'
3
3
}
4
4
5
+ ext {
6
+ compile_with_asan = false
7
+ }
8
+
5
9
android {
6
10
namespace ' com.example.xcrash'
7
11
compileSdk 30
@@ -12,6 +16,10 @@ android {
12
16
13
17
externalNativeBuild {
14
18
cmake {
19
+ if (compile_with_asan) {
20
+ arguments " -DANDROID_ARM_MODE=arm"
21
+ arguments " -DUSEASAN=ON"
22
+ }
15
23
abiFilters " armeabi-v7a" , " arm64-v8a"
16
24
}
17
25
}
You can’t perform that action at this time.
0 commit comments