https://github.com/jovannypcg/androidlogginglibrariesusage
Demostrates the usage of some logging libraries.
https://github.com/jovannypcg/androidlogginglibrariesusage
Last synced: 2 months ago
JSON representation
Demostrates the usage of some logging libraries.
- Host: GitHub
- URL: https://github.com/jovannypcg/androidlogginglibrariesusage
- Owner: jovannypcg
- License: apache-2.0
- Created: 2015-11-19T15:22:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-19T16:48:56.000Z (over 9 years ago)
- Last Synced: 2025-02-13T06:30:18.827Z (4 months ago)
- Language: Java
- Size: 40 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AndroidLoggingLibrariesUsage
Demostrates the usage of some logging libraries.
Consider the next points:
- Include the following classpath at /build.gradle:
```
buildscript {
repositories {
maven { url "https://jitpack.io" }
mavenCentral()
}
dependencies {
classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1'
}
}allprojects {
repositories {
maven { url "https://jitpack.io" }
mavenCentral()
}
}
```
- Add the hugo plugin after the android application plugin at /app/build.gradle:```
apply plugin: 'com.android.application'
apply plugin: 'com.jakewharton.hugo'
```- Include the following dependency at /app/build.gradle:
```
dependencies {
compile 'com.github.orhanobut:logger:1.12'
}
```### Version
1.0