build.gradle
1.95 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import java.text.SimpleDateFormat
plugins {
id 'com.android.application'
}
static def increasedVersionCode() {
return (int) (System.currentTimeMillis() / 1000 / 60)
}
static def buildTime() {
def df = new SimpleDateFormat("MMddHH")
return df.format(new Date())
}
def baseVersion = "3.2.0"
def sdkVersion = "3.2.0.04221312"
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
defaultConfig {
applicationId "com.hhmedic.demo.trtc.meituan"
minSdkVersion 21
targetSdkVersion 30
versionCode increasedVersionCode()
versionName "$baseVersion.${buildTime()}"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildFeatures {
dataBinding = true
}
android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "hh_android_trtc_meituan_demo_${defaultConfig.versionName}.apk"
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'com.squareup.okhttp3:okhttp:3.12.1'
implementation "com.tencent.liteav:LiteAVSDK_TRTC:8.2.9809"
implementation 'com.github.bumptech.glide:glide:4.9.0'
implementation "com.hh-medic.android.sdk:hh_doctor:$sdkVersion"
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}