Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/utilcode/README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,7 @@ getNavBarColor : 获取导航栏颜色
isSupportNavBar : 判断是否支持导航栏
setNavBarLightMode : 设置导航栏是否为浅色模式
isNavBarLightMode : 判断导航栏是否为浅色模式
transparentNavBar : 透明导航栏
```

* ### 亮度相关 -> [BrightnessUtils.java][brightness.java] -> [Demo][brightness.demo]
Expand Down
1 change: 1 addition & 0 deletions lib/utilcode/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ getNavBarColor
isSupportNavBar
setNavBarLightMode
isNavBarLightMode
transparentNavBar
```

* ### About Brightness -> [BrightnessUtils.java][brightness.java] -> [Demo][brightness.demo]
Expand Down
9 changes: 9 additions & 0 deletions lib/utilcode/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.blankj.utilcode">

<queries>
<intent>
<action android:name="android.intent.action.MAIN" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
</intent>
</queries>

<application>

<activity
Expand Down