Skip to content

Commit 1e61aad

Browse files
author
张磊
committed
项目重构
1 parent 0747013 commit 1e61aad

31 files changed

+137
-17
lines changed

.gitignore

Lines changed: 86 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,88 @@
1+
# Built application files
2+
*.apk
3+
*.aar
4+
*.ap_
5+
*.aab
6+
7+
# Files for the ART/Dalvik VM
8+
*.dex
9+
10+
# Java class files
11+
*.class
12+
13+
# Generated files
14+
bin/
15+
gen/
16+
out/
17+
# Uncomment the following line in case you need and you don't have the release build type files in your app
18+
# release/
19+
20+
# Gradle files
21+
.gradle/
22+
build/
23+
24+
# Local configuration file (sdk path, etc)
25+
local.properties
26+
27+
# Proguard folder generated by Eclipse
28+
proguard/
29+
30+
# Log Files
31+
*.log
32+
33+
# Android Studio Navigation editor temp files
34+
.navigation/
35+
36+
# Android Studio captures folder
37+
captures/
38+
39+
# IntelliJ
140
*.iml
2-
.gradle
3-
/local.properties
4-
/.idea
5-
.DS_Store
6-
/build
7-
/captures
41+
.idea/workspace.xml
42+
.idea/tasks.xml
43+
.idea/gradle.xml
44+
.idea/assetWizardSettings.xml
45+
.idea/dictionaries
46+
.idea/libraries
47+
# Android Studio 3 in .gitignore file.
48+
.idea/caches
49+
.idea/modules.xml
50+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
51+
.idea/navEditor.xml
52+
53+
# Keystore files
54+
# Uncomment the following lines if you do not want to check your keystore files in.
55+
#*.jks
56+
#*.keystore
57+
58+
# External native build folder generated in Android Studio 2.2 and later
859
.externalNativeBuild
60+
.cxx/
61+
62+
# Google Services (e.g. APIs or Firebase)
63+
# google-services.json
64+
65+
# Freeline
66+
freeline.py
67+
freeline/
68+
freeline_project_description.json
69+
70+
# fastlane
71+
fastlane/report.xml
72+
fastlane/Preview.html
73+
fastlane/screenshots
74+
fastlane/test_output
75+
fastlane/readme.md
76+
77+
# Version control
78+
vcs.xml
79+
80+
# lint
81+
lint/intermediates/
82+
lint/generated/
83+
lint/outputs/
84+
lint/tmp/
85+
# lint/reports/
86+
87+
# Android Profiling
88+
*.hprof

.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 30 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ dependencies {
5050
implementation project(':biz-module-newhouse')
5151
implementation project(':biz-module-secondhouse')
5252

53-
implementation project(':lib-core-model')
5453
implementation project(':lib-common-business')
54+
implementation project(':lib-data-center')
5555

5656
implementation rootProject.ext.dependencies["butterknife"]
5757
annotationProcessor rootProject.ext.dependencies["butterknife-compiler"]

biz-module-im/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ dependencies {
5353
implementation fileTree(include: ['*.jar'], dir: 'libs')
5454
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
5555

56-
implementation project(path: ':lib-core-model')
5756
implementation project(path: ':lib-common-business')
57+
implementation project(path: ':lib-data-center')
5858

5959
implementation project(path: ':biz-service-im')
6060
implementation project(path: ':biz-service-newhouse')

biz-module-newhouse/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ dependencies {
5252
implementation fileTree(include: ['*.jar'], dir: 'libs')
5353
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
5454

55-
implementation project(path: ':lib-core-model')
5655
implementation project(path: ':lib-common-business')
56+
implementation project(path: ':lib-data-center')
5757

5858
implementation project(path: ':biz-service-im')
5959
implementation project(path: ':biz-service-newhouse')

biz-module-secondhouse/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ dependencies {
5252
implementation fileTree(include: ['*.jar'], dir: 'libs')
5353
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
5454

55-
implementation project(path: ':lib-core-model')
5655
implementation project(path: ':lib-common-business')
56+
implementation project(path: ':lib-data-center')
5757

5858
implementation project(path: ':biz-service-im')
5959
implementation project(path: ':biz-service-newhouse')

0 commit comments

Comments
 (0)