liumingming

fix

  1 +HHDoctorSDKMiniDemo
@@ -13,7 +13,9 @@ static def buildTime() { @@ -13,7 +13,9 @@ static def buildTime() {
13 return df.format(new Date()) 13 return df.format(new Date())
14 } 14 }
15 15
16 -def baseVersion = "3.1.0" 16 +def baseVersion = "3.2.0"
  17 +
  18 +def sdkVersion = "3.2.0.04221312"
17 19
18 android { 20 android {
19 compileSdkVersion 30 21 compileSdkVersion 30
@@ -66,9 +68,7 @@ dependencies { @@ -66,9 +68,7 @@ dependencies {
66 implementation "com.tencent.liteav:LiteAVSDK_TRTC:8.2.9809" 68 implementation "com.tencent.liteav:LiteAVSDK_TRTC:8.2.9809"
67 implementation 'com.github.bumptech.glide:glide:4.9.0' 69 implementation 'com.github.bumptech.glide:glide:4.9.0'
68 70
69 -// implementation 'com.hh-medic.android.sdk:hh_doctor_mini_dev:3.1.0.02151924'  
70 -// implementation 'com.hh-medic.android.sdk:hh_doctor:3.1.0.02171016'  
71 - implementation 'com.hh-medic.android.sdk:hh_doctor:3.1.0.03242028' 71 + implementation "com.hh-medic.android.sdk:hh_doctor:$sdkVersion"
72 72
73 73
74 testImplementation 'junit:junit:4.+' 74 testImplementation 'junit:junit:4.+'
1 // Top-level build file where you can add configuration options common to all sub-projects/modules. 1 // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 buildscript { 2 buildscript {
3 repositories { 3 repositories {
  4 + mavenCentral()
4 google() 5 google()
5 - jcenter()  
6 } 6 }
7 dependencies { 7 dependencies {
8 classpath "com.android.tools.build:gradle:4.1.1" 8 classpath "com.android.tools.build:gradle:4.1.1"
@@ -14,9 +14,9 @@ buildscript { @@ -14,9 +14,9 @@ buildscript {
14 14
15 allprojects { 15 allprojects {
16 repositories { 16 repositories {
  17 + mavenCentral()
17 google() 18 google()
18 jcenter() 19 jcenter()
19 - mavenCentral()  
20 } 20 }
21 } 21 }
22 22