Skip to content

Commit a60f8a3

Browse files
committed
Initial commit
0 parents  commit a60f8a3

File tree

758 files changed

+73617
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

758 files changed

+73617
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
.externalNativeBuild

.idea/caches/build_file_checksums.ser

496 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

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

.idea/gradle.xml

Lines changed: 19 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: 29 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

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

.idea/runConfigurations.xml

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

.idea/vcs.xml

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

app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

Lines changed: 105 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,105 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 27
5+
buildToolsVersion '27.0.3'
6+
defaultConfig {
7+
applicationId "com.goldemperor"
8+
minSdkVersion 16
9+
targetSdkVersion 23
10+
versionCode 36
11+
versionName "1.7.0"
12+
13+
multiDexEnabled true
14+
15+
defaultConfig {
16+
packagingOptions {
17+
exclude 'META-INF/rxjava.properties'
18+
}
19+
}
20+
21+
}
22+
buildTypes {
23+
release {
24+
minifyEnabled false
25+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
26+
}
27+
}
28+
sourceSets {
29+
main {
30+
jniLibs.srcDirs = ['libs']
31+
}
32+
}
33+
34+
useLibrary 'org.apache.http.legacy'
35+
}
36+
repositories {
37+
flatDir {
38+
dirs 'libs'
39+
}
40+
}
41+
configurations.all {
42+
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
43+
def requested = details.requested
44+
if (requested.group == 'com.android.support') {
45+
if (!requested.name.startsWith("multidex")) {
46+
details.useVersion '25.3.1'
47+
}
48+
}
49+
}
50+
}
51+
dependencies {
52+
configurations {
53+
all*.exclude group: 'com.android.support', module: 'support-v13'
54+
}
55+
implementation fileTree(include: ['*.jar'], dir: 'libs')
56+
// implementation 'junit:junit:4.12'
57+
// androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
58+
// exclude group: 'com.android.support', module: 'support-annotations'
59+
// })
60+
api(name: 'lovelyDialog-release', ext: 'aar')
61+
api(name: 'fancybuttons_library-release', ext: 'aar')
62+
api(name: 'bottom-bar-release', ext: 'aar')
63+
api(name: 'xutils-release', ext: 'aar')
64+
api(name: 'AndroidBootstrap-release', ext: 'aar')
65+
api(name: 'alerter-release', ext: 'aar')
66+
api(name: 'lemonhello-release', ext: 'aar')
67+
api(name: 'photoview-release', ext: 'aar')
68+
api 'com.mikepenz:iconics-core:2.8.2@aar'
69+
api 'com.mikepenz:material-design-iconic-typeface:2.2.0.2@aar'
70+
api('com.mikepenz:aboutlibraries:5.9.4@aar') { transitive = true }
71+
api 'com.nineoldandroids:library:2.4.0'
72+
api files('libs/bugly_crash_release.jar')
73+
api files('libs/ksoap2-android-assembly-2.5.8-jar-with-dependencies.jar')
74+
api files('libs/zbar.jar')
75+
api files('libs/xstream-1.4.9.jar')
76+
api files('libs/gson-2.8.1.jar')
77+
api files('libs/aliyun-oss-sdk-android-2.3.0.jar')
78+
api files('libs/Nlscan.ScanManager.jar')
79+
// api 'com.android.support.constraint:constraint-layout:1.0.2'
80+
// api 'com.google.android.gms:play-services-appindexing:8.1.0'
81+
// api 'com.android.support:multidex:1.0.2'
82+
api 'com.appeaser.sublimepickerlibrary:sublimepickerlibrary:2.1.1'
83+
api 'id.zelory:compressor:2.1.0'
84+
api 'com.soundcloud.android.crop:lib_crop:1.0.0'
85+
api 'com.darsh.multipleimageselect:multipleimageselect:1.0.4'
86+
api 'me.shaohui.advancedluban:library:1.3.2'
87+
//PDF文件阅读器
88+
api 'com.github.barteksc:android-pdf-viewer:3.1.0-beta.1'
89+
//上啦加载下拉刷新
90+
api 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0-alpha-6'
91+
//选择器
92+
api 'com.contrarywind:Android-PickerView:4.1.4'
93+
//图片加载框架
94+
api 'com.squareup.picasso:picasso:2.71828'
95+
//动态注册权限
96+
api 'pub.devrel:easypermissions:0.1.7'
97+
//列表侧滑
98+
api 'com.yanzhenjie:recyclerview-swipe:1.1.4'
99+
//友盟统计 key:5b31ecf8f29d9862c6000014
100+
// compile 'com.umeng.sdk:common:latest.integration'
101+
// compile 'com.umeng.sdk:analytics:latest.integration'
102+
// implementation 'top.zibin:Luban:1.1.8'
103+
// implementation 'com.android.support:support-v4:27.1.0'
104+
}
105+

0 commit comments

Comments
 (0)