From dadbf7a3fd20a8e0dc7e0601f30a2f696cc9fc6e Mon Sep 17 00:00:00 2001
From: Administrator <123>
Date: Thu, 11 Nov 2021 02:40:05 +0000
Subject: [PATCH] 完成登录接口接入demo

---
 app/build.gradle |   36 +++++++++++++++++++++++++++++++++++-
 1 files changed, 35 insertions(+), 1 deletions(-)

diff --git a/app/build.gradle b/app/build.gradle
index 26eb9ec..b604268 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -16,8 +16,18 @@
     }
 
     buildTypes {
+        debug{
+            minifyEnabled false
+            buildConfigField 'String','HOST_IP_ADDR','"http://192.168.100.82:8080/"'
+            buildConfigField 'String','ENVIRONMENT','"release"'
+            resValue "string", "app_name", "趣为帮扶测试"
+            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+        }
         release {
             minifyEnabled false
+            buildConfigField 'String','HOST_IP_ADDR','"http://192.168.100.82:8080/"'
+            buildConfigField 'String','ENVIRONMENT','"release"'
+            resValue "string", "app_name", "趣为帮扶"
             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
         }
     }
@@ -28,12 +38,22 @@
     buildFeatures {
         viewBinding true
     }
+    sourceSets {
+        main {
+            //声明layout子文件夹
+            res.srcDirs = [
+                    'src/main/res/layout/main',
+                    'src/main/res'
+            ]
+        }
+    }
+
 }
 
 dependencies {
 
     implementation 'androidx.appcompat:appcompat:1.2.0'
-    implementation 'com.google.android.material:material:1.3.0'
+    implementation 'com.google.android.material:material:1.4.0'
     implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
     implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
     implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
@@ -42,4 +62,18 @@
     testImplementation 'junit:junit:4.+'
     androidTestImplementation 'androidx.test.ext:junit:1.1.2'
     androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
+    //// 注意:分包之后不会有默认的Header和Footer需要手动添加!还是原来的三种方法!
+    implementation  'com.scwang.smart:refresh-layout-kernel:2.0.1'      //核心必须依赖
+    implementation  'com.scwang.smart:refresh-header-classics:2.0.1'    //经典刷新头
+    implementation 'com.github.d-max:spots-dialog:1.1@aar'//loading view
+    implementation 'com.google.code.gson:gson:2.8.6'
+    implementation 'com.ansen.http:okhttpencapsulation:1.0.1'//版本更新下载
+    implementation 'com.squareup.okhttp3:okhttp:4.9.0'
+    implementation 'com.squareup.retrofit2:retrofit:2.9.0'
+    implementation 'com.squareup.retrofit2:converter-gson:2.0.2'
+    implementation 'com.squareup.retrofit2:adapter-rxjava2:2.9.0'    //RXjava和retrofit结合
+    implementation 'com.permissionx.guolindev:permissionx:1.2.2'    //权限依赖让你推广你就发群里?没有别的群了?
+    implementation 'com.github.bumptech.glide:glide:4.12.0'
+    annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
+
 }
\ No newline at end of file

--
Gitblit v1.9.1