1.宝箱相关逻辑

2.关闭第三方推送
3.去掉读取手机信息权限
This commit is contained in:
huangjian
2020-05-05 17:06:10 +08:00
parent 3f8705a812
commit 72c6569fc1
24 changed files with 459 additions and 672 deletions

View File

@@ -57,7 +57,7 @@ public class ScreenUtil {
DisplayMetrics dm = context.getApplicationContext().getResources().getDisplayMetrics();
screenWidth = dm.widthPixels;
screenHeight = dm.heightPixels;
screenMin = (screenWidth > screenHeight) ? screenHeight : screenWidth;
screenMin = Math.min(screenWidth, screenHeight);
density = dm.density;
scaleDensity = dm.scaledDensity;
xdpi = dm.xdpi;