Skip to content

ymwcoding/android-utils

 
 

Repository files navigation

android-utils

It contains most of the utility classes.

Android utility classes (a - z):

Permission requirement

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

Configuration

<application
        android:name="com.worthed.app.BaseApplication" >

You need set 'LogUtils.DEBUG_LEVEL = 8' and 'LogUtils.DEBUG_SYSOUT = false' for release version.

Proguard

ProGuard obfuscates method names. Use the following snip in your ProGuard configuration file (proguard.cfg):

-keep class com.worthed.** { *; }
-keepclassmembers class com.worthed.** { *; }
-dontwarn com.worthed.**

Developer

License

Copyright 2014 Zhenguo Jin

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.

About

It contains most of the Android utility classes.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%