Skip to content

Commit 564dbc7

Browse files
committed
merger框架改动
1 parent c0946b1 commit 564dbc7

File tree

1,992 files changed

+140520
-8277
lines changed

Some content is hidden

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

1,992 files changed

+140520
-8277
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# hunheappkuangjia
22

3-
混合移动应用框架APP-Android20
3+
混合移动应用框架APP-Android21
44

55
### 1.ANROOMCrashActivity:验证APP压力测试
66
###
@@ -337,7 +337,7 @@
337337
<br/> api 'net.yslibrary.keyboardvisibilityevent:keyboardvisibilityevent:2.3.0' 监听键盘弹出过程
338338
<br/> // https://github.com/getActivity/ToastUtils
339339
<br/> api 'com.hjq:toast:5.8'
340-
<br/> // https://github.com/everhad/AndroidRatingStar 评论星星
340+
<br/> // https://github.com/everhad/AndroidRatingStar 评论星星 PingfenMainActivity
341341
<br/> api 'com.github.everhad:AndroidRatingStar:v1.0.4'
342342
<br/> // https://github.com/li-xiaojun/XPopup 弹出框
343343
<br/> api 'com.lxj:xpopup:1.8.4'
@@ -380,7 +380,7 @@
380380
<br/> api project(':commonlibs:hunheku:libapppay')
381381
<br/> // Glide 4.0以上
382382
<br/> api librarys.glide47
383-
<br/> api project(':commonlibs:hunheku:libglide47')
383+
<br/> api project(':commonlibs:common:libglide47')
384384
<br/> //TODO other libs
385385
<br/> // https://github.com/crazyandcoder/citypicker 城市选择器
386386
<br/> // pi 'liji.library.dev:citypickerview:4.3.2'
@@ -395,7 +395,7 @@
395395
<br/> api project(':commonlibs:yewulibs:slbota')
396396
<br/> // https://github.com/ikew0ng/SwipeBackLayout
397397
<br/> // api 'me.imid.swipebacklayout.lib:library:1.1.0' 关闭页面IOS效果
398-
<br/> api project(':commonlibs:yewulibs:slbswipebacklayout')
398+
<br/> api project(':commonlibs:common:libswipebacklayout')
399399
<br/> // slbwifi WIFI选择器
400400
<br/> api project(':commonlibs:yewulibs:slbwifi')
401401
<br/> // https://github.com/scwang90/SmartRefreshLayout 下拉刷新上拉加载
@@ -437,6 +437,8 @@
437437
### 99.commonlibs:dkplayer:DK播放器支持推流
438438
###
439439
### 100.slbyanzheng:指纹登录组件
440+
###
441+
### 101.HuxiAct:布局加载组件
440442

441443

442444

build.gradle

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ buildscript {
66
google()
77
mavenLocal()
88
mavenCentral()
9-
maven { url "https://jitpack.io" }
9+
maven { url "https://www.jitpack.io" }
1010
maven { url 'https://maven.aliyun.com/repository/public/' }
1111
maven { url "http://mvn.mob.com/android" }
12-
maven {url "http://maven.rongcloud.cn/repository/maven-releases/"}
12+
maven { url "http://maven.rongcloud.cn/repository/maven-releases/" }
13+
maven { url 'https://gitee.com/pgyer2020/analytics/raw/master' } // 备用仓库
1314
maven { url 'http://developer.huawei.com/repo/' }
1415
}
1516
dependencies {
@@ -31,10 +32,11 @@ allprojects {
3132
google()
3233
mavenLocal()
3334
mavenCentral()
34-
maven { url "https://jitpack.io" }
35+
maven { url "https://www.jitpack.io" }
3536
maven { url 'https://maven.aliyun.com/repository/public/' }
3637
maven { url "http://mvn.mob.com/android" }
37-
maven {url "http://maven.rongcloud.cn/repository/maven-releases/"}
38+
maven { url "http://maven.rongcloud.cn/repository/maven-releases/" }
39+
maven { url 'https://gitee.com/pgyer2020/analytics/raw/master' } // 备用仓库
3840
maven { url 'http://developer.huawei.com/repo/' }
3941

4042
// flatDir {

buildconfig.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ ext {
77
supportLibVersion = '30.0.0'
88

99
// 灯塔版本号
10-
dengtaversionCode = 10000
11-
dengtaversionName = "1.0.0.0"
10+
dengtaversionCode = 20000
11+
dengtaversionName = "2.0.0.0"
1212

1313
// 大屏版本号
14-
dapingversionCode = 10000
15-
dapingversionName = "1.0.0.0"
14+
dapingversionCode = 20000
15+
dapingversionName = "2.0.0.0"
1616

1717
// applicationId = "com.fosung.lighthouse"
18-
appversionCode = 1000
19-
appversionName = "1.0.0.0"
18+
appversionCode = 2000
19+
appversionName = "2.0.0.0"
2020

2121
versionNamePrefixT = "_T_V"
2222
versionNamePrefixY = "_Y_V"
@@ -74,7 +74,7 @@ retrofitgconverterscalars : "com.squareup.retrofit2:converter-scalars:2.
7474
// ------------- 图片加载 -------------
7575
fresco : "com.facebook.fresco:fresco:0.11.0",
7676
animatedGif : "com.facebook.fresco:animated-gif:0.12.0",
77-
picasso : "com.squareup.picasso:picasso:2.5.2",
77+
picasso : "com.squareup.picasso:picasso:2.71828",
7878
photoView : "com.github.chrisbanes:PhotoView:2.1.3",
7979
nineoldandroids : "com.nineoldandroids:library:2.4.0",
8080
zxing : "com.google.zxing:core:3.2.1",

commonlibs/baselibrary/build.gradle

Lines changed: 11 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,11 @@ apply from: './../../commonlibs1.gradle'
55
def librarys = rootProject.ext.dependencies //依赖
66
dependencies {
77
implementation fileTree(dir: 'libs', include: ['*.jar'])
8-
api project(':commonlibs:hunheku:libutils')
8+
api project(':commonlibs:common:libutils')
9+
api project(':commonlibs:common:libbase')
910
// 网络请求
10-
api project(':commonlibs:hunheku:libmvp')
11-
api project(':commonlibs:hunheku:libretrofit')
12-
// webView
13-
api project(':commonlibs:hunheku:libagentweb-core')
14-
api project(':commonlibs:hunheku:libagentweb-filechooser')
15-
// api 'com.just.agentweb:agentweb-androidx:4.1.4' // (必选)
16-
// api 'com.just.agentweb:filechooser-androidx:4.1.4'// (可选)
17-
// api 'com.download.library:downloader-androidx:4.1.4'// (可选)
18-
// webView
19-
api project(':commonlibs:hunheku:libwebview')
20-
// 权限
21-
api project(':commonlibs:hunheku:librararyforfileprovdider')
11+
api project(':commonlibs:common:libmvp')
12+
api project(':commonlibs:common:libretrofit')
2213
// app升级
2314
api project(':commonlibs:hunheku:libupdateapputilsold')
2415
// https://github.com/teprinciple/UpdateAppUtils
@@ -29,28 +20,11 @@ dependencies {
2920
api 'com.mikepenz:community-material-typeface:1.8.36.1@aar'
3021
// https://github.com/drakeet/MultiType
3122
api 'me.drakeet.multitype:multitype:3.4.4'
32-
// https://github.com/CymChad/BaseRecyclerViewAdapterHelper
33-
api 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.40'
3423
// https://github.com/jaredrummler/MaterialSpinner
3524
api 'com.jaredrummler:material-spinner:1.2.5'
36-
// https://github.com/kyleduo/SwitchButton
37-
// api 'com.kyleduo.switchbutton:library:2.0.3'
3825
// https://github.com/drawthink/ExpandableRecyclerView
3926
// api 'com.drawthink:expandable-recyclerview:0.0.3'
4027
api project(':commonlibs:hunheku:libexpandablerecyclerview')
41-
// https://github.com/BolexLiu/AutoEx
42-
// api 'com.github.BolexLiu.AutoEx:AutoEx-Lib-No-Op:v1.0.8'
43-
// https://github.com/Jzvd/JZVideo
44-
// api 'cn.jzvd:jiaozivideoplayer:7.6.0'
45-
// https://github.com/HuanHaiLiuXin/CoolViewPager
46-
api 'com.github.HuanHaiLiuXin:CoolViewPager:v1.0.0'
47-
// https://github.com/airbnb/lottie-android
48-
api 'com.airbnb.android:lottie:3.4.2'
49-
// https://github.com/greenrobot/EventBus
50-
api 'org.greenrobot:eventbus:3.1.1'
51-
// https://github.com/Meituan-Dianping/walle
52-
// api 'com.meituan.android.walle:library:1.1.7'
53-
// api 'com.github.GeekCodesTeam:walle:1.1.7'
5428
// https://github.com/BolexLiu/PressScanCode
5529
api 'com.github.BolexLiu:PressScanCode:v1.0.0'
5630
// https://github.com/ethanhua/Skeleton
@@ -61,13 +35,11 @@ dependencies {
6135
// api 'com.larswerkman:lobsterpicker:1.0.1'
6236
// https://github.com/square/leakcanary
6337
api librarys.leakcanaryAndroid
64-
// https://github.com/gongwen/MarqueeViewLibrary
65-
// api 'com.gongwen:marqueelibrary:1.1.3'
6638
// https://github.com/KunMinX/Linkage-RecyclerView
6739
// api 'com.kunminx.linkage:linkage-recyclerview:2.3.5'
6840
api project(':commonlibs:hunheku:liblinkagerecyclerview')
6941
// https://github.com/LuckSiege/PictureSelector
70-
api 'com.github.LuckSiege.PictureSelector:picture_library:v2.6.1'
42+
api project(':commonlibs:yewulibs:slbpictureselector')
7143
// https://github.com/dongjunkun/DropDownMenu
7244
api 'com.github.dongjunkun:DropDownMenu:1.0.4'
7345
// https://github.com/jgilfelt/SystemBarTint
@@ -99,25 +71,24 @@ dependencies {
9971
api 'net.yslibrary.keyboardvisibilityevent:keyboardvisibilityevent:2.3.0'
10072
// https://github.com/getActivity/ToastUtils
10173
api 'com.github.getActivity:ToastUtils:9.2'
102-
// https://github.com/everhad/AndroidRatingStar
103-
api 'com.github.everhad:AndroidRatingStar:v1.0.4'
10474
// https://github.com/li-xiaojun/XPopup
10575
api 'com.github.li-xiaojun:XPopup:2.3.4'
10676
// https://github.com/meetsl/SCardView-master
107-
api 'io.github.meetsl:SCardView:1.1'
77+
api 'io.github.meetsl:SCardView:1.2'
10878
// https://github.com/nanchen2251/BankCardUtils
10979
api 'com.github.nanchen2251:BankCardUtils:1.0.2'
11080
// https://github.com/SherlockGougou/BigImageViewPager
111-
api 'com.github.SherlockGougou:BigImageViewPager:v4_2.1.0'
81+
api 'com.github.SherlockGougou:BigImageViewPager:androidx-6.1.5'
82+
// matisse
83+
api("com.zhihu.android:matisse:0.5.3-beta3") {
84+
exclude group: 'com.github.bumptech.glide'
85+
}
11286
// https://github.com/zzhoujay/RichText/
11387
api 'com.zzhoujay.richtext:richtext:3.0.7'
11488
// https://github.com/maning0303/MNProgressHUD
11589
// api 'com.github.maning0303:MNProgressHUD:V1.1.8X'
11690
// https://github.com/MZCretin/ExpandableTextView
11791
api 'com.github.MZCretin:ExpandableTextView:v1.6.1-x'
118-
// https://github.com/Manabu-GT/ExpandableTextView
119-
api 'com.ms-square:expandableTextView:0.1.4'
12092
// https://github.com/yanzhenjie/NoFragment
121-
// api 'com.yanzhenjie:fragment:1.0.1'
12293
api project(':commonlibs:hunheku:libyanzhenjiebase')
12394
}

commonlibs/baselibrary/src/main/AndroidManifest.xml

Lines changed: 48 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
xmlns:tools="http://schemas.android.com/tools"
33
package="com.haier.cellarette.baselibrary">
44

5+
<uses-permission
6+
android:name="android.permission.READ_PRIVILEGED_PHONE_STATE"
7+
tools:ignore="ProtectedPermissions" />
58
<uses-permission android:name="au.com.example.READ_CONTENT" />
69
<uses-permission android:name="au.com.example.WRITE_CONTENT" />
710
<uses-permission android:name="android.permission.INTERNET" />
@@ -20,11 +23,14 @@
2023
<uses-permission android:name="android.permission.ANSWER_PHONE_CALLS" />
2124
<uses-permission android:name="android.permission.READ_PHONE_NUMBERS" />
2225

23-
<uses-permission android:name="android.permission.WRITE_SETTINGS" tools:ignore="ProtectedPermissions" />
26+
<uses-permission
27+
android:name="android.permission.WRITE_SETTINGS"
28+
tools:ignore="ProtectedPermissions" />
2429

2530
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
2631
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
27-
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
32+
<uses-permission
33+
android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
2834
tools:ignore="ScopedStorage" />
2935

3036
<uses-permission android:name="android.permission.RECORD_AUDIO" />
@@ -545,6 +551,46 @@
545551
<category android:name="android.intent.category.DEFAULT" />
546552
</intent-filter>
547553
</activity>
554+
<activity android:name=".ratingstarview.PingfenMainActivity">
555+
<intent-filter>
556+
<action android:name="${applicationId}.hs.act.PingfenMainActivity" />
557+
558+
<category android:name="android.intent.category.DEFAULT" />
559+
</intent-filter>
560+
</activity>
561+
<activity android:name=".marqueelibrary.ui.MarqueeViewLibraryAct">
562+
<intent-filter>
563+
<action android:name="${applicationId}.hs.act.MarqueeViewLibraryAct" />
564+
565+
<category android:name="android.intent.category.DEFAULT" />
566+
</intent-filter>
567+
</activity>
568+
<activity android:name=".scardview.SCardViewAct">
569+
<intent-filter>
570+
<action android:name="${applicationId}.hs.act.SCardViewAct" />
571+
572+
<category android:name="android.intent.category.DEFAULT" />
573+
</intent-filter>
574+
</activity>
575+
<activity android:name=".scardview.SCardViewAct1" />
576+
<activity android:name=".scardview.SCardViewAct2" />
577+
<activity android:name=".scardview.SCardViewAct3" />
578+
579+
<activity android:name=".bigImageviewpager.BigImageViewPagerAct">
580+
<intent-filter>
581+
<action android:name="${applicationId}.hs.act.BigImageViewPagerAct" />
582+
583+
<category android:name="android.intent.category.DEFAULT" />
584+
</intent-filter>
585+
</activity>
586+
<activity android:name=".expandabletextview.ExpandableTextViewAct">
587+
<intent-filter>
588+
<action android:name="${applicationId}.hs.act.ExpandableTextViewAct" />
589+
590+
<category android:name="android.intent.category.DEFAULT" />
591+
</intent-filter>
592+
</activity>
593+
<activity android:name=".expandabletextview.ShowInRecyclerViewActivity" />
548594

549595
<receiver android:name=".networkview.NetworkChangeListener" />
550596

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package com.haier.cellarette.baselibrary;
2+
3+
import android.os.Bundle;
4+
5+
import androidx.annotation.Nullable;
6+
import androidx.appcompat.app.AppCompatActivity;
7+
8+
public class Act extends AppCompatActivity {
9+
@Override
10+
protected void onCreate(@Nullable @org.jetbrains.annotations.Nullable Bundle savedInstanceState) {
11+
super.onCreate(savedInstanceState);
12+
setContentView(R.layout.activity_marqueeviewlibrary);
13+
}
14+
}

commonlibs/baselibrary/src/main/java/com/haier/cellarette/baselibrary/TestCode.java

Lines changed: 0 additions & 22 deletions
This file was deleted.

commonlibs/baselibrary/src/main/java/com/haier/cellarette/baselibrary/bannerviewquan/LXBannerViewbeifen.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@
4141

4242
//import android.support.annotation.AttrRes;
4343
//import android.support.annotation.DrawableRes;
44-
//import android.support.annotation.NonNull;
45-
//import android.support.annotation.Nullable;
44+
//
45+
//
4646
//import android.support.annotation.RequiresApi;
4747
//import android.support.annotation.StyleRes;
4848
//import androidx.core.view.PagerAdapter;

0 commit comments

Comments
 (0)