feat: 初始化界面

This commit is contained in:
md
2021-05-26 14:29:24 +08:00
parent 4b28f19d9a
commit 131dd1d958
57 changed files with 315 additions and 187 deletions

View File

@@ -20,19 +20,14 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
// compileOptions {
// sourceCompatibility JavaVersion.VERSION_1_8
// targetCompatibility JavaVersion.VERSION_1_8
// }
}
dependencies {
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
@@ -42,14 +37,9 @@ android {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
//butterknife依赖
implementation 'com.jakewharton:butterknife:10.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1'
//状态栏侵染
// 基础依赖包,必须要依赖
implementation 'com.gyf.immersionbar:immersionbar:3.0.0'
implementation 'com.gyf.immersionbar:immersionbar-components:3.0.0'
// //butterknife依赖
// implementation 'com.jakewharton:butterknife:10.1.0'
// annotationProcessor 'com.jakewharton:butterknife-compiler:10.1.0'
//网络框架
@@ -69,4 +59,9 @@ android {
//加载图片的依赖包
implementation 'com.github.bumptech.glide:glide:4.8.0'
//状态栏侵染
// 基础依赖包,必须要依赖
implementation 'com.gyf.immersionbar:immersionbar:3.0.0'
implementation 'com.gyf.immersionbar:immersionbar-components:3.0.0'
}