# Yutil **Repository Path**: jsyjst/Yutil ## Basic Information - **Project Name**: Yutil - **Description**: 残渊的工具类,不断更新ing - **Primary Language**: Java - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-12-13 - **Last Updated**: 2020-12-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Yutil [![](https://jitpack.io/v/jsyjst/Yutil.svg)](https://jitpack.io/#jsyjst/Yutil) [![](https://img.shields.io/badge/作者-jsyjst-blue.svg)](https://blog.csdn.net/qq_41979349) ### jsysjt的工具箱 如何添加 -- ### Gradle #### 1.在Project的build.gradle 中添加仓库地址 ``` //JitPack仓库 maven { url 'https://jitpack.io' } ``` ##### 示例: ``` allprojects { repositories { ... //JitPack仓库 maven { url 'https://jitpack.io' } } } ``` #### 2.在Module目录下的build.gradle中添加依赖 ``` implementation 'com.github.jsyjst:Yutil:v1.0.1' ``` ##### 示例: ``` dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:26.1.0' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' implementation 'com.github.jsyjst:Yutil:v1.0.1' } ``` 内容说明 --- 包名|工具|功能说明 -|-|-| io|FileUtils|文件夹工具 utils|ToastUtils|Toast工具 utils|DataCheck|数据检查 utils|StatusUtils|状态栏相关工具 utils|ScreenUtils|屏幕相关工具 utils|TextEditUtils|输入框相关工具 view|DensityUtils|屏幕密度相关工具 view|ViewUtils|视图相关工具 License --- ``` Copyright 2018 jsyjst Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ```