https://github.com/popbrain/naked4u
NAKED4U visualizes the application log.
https://github.com/popbrain/naked4u
android logger popbrain recyclerview visualiation
Last synced: about 2 months ago
JSON representation
NAKED4U visualizes the application log.
- Host: GitHub
- URL: https://github.com/popbrain/naked4u
- Owner: Popbrain
- License: apache-2.0
- Created: 2020-02-10T01:43:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-19T07:49:26.000Z (about 6 years ago)
- Last Synced: 2025-02-06T08:15:32.076Z (over 1 year ago)
- Topics: android, logger, popbrain, recyclerview, visualiation
- Language: Kotlin
- Homepage:
- Size: 33.2 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# naked4u
## Overview
NAKED4U extended the RecyclerView is visualize the application log.
This library is to confirm an application log that during for QAs, Debuggers, Testers debugging apps.
## Demo

## download
Open `build.gradle` file for your app, and add below settings.
```gradle
repositories {
url 'https://github.com/Popbrain/naked4u/raw/master/maven'
}
```
dependencies
```gradle
implementation 'com.github.popbrain:naked4u:1.3.3'
// naked4u using recyclerview
implementation "androidx.recyclerview:recyclerview:+"
```
## Implementation
Define `io.popbrain.naked4u.ViewableLogger` to your xml of layout.
res/layout/activity_main.xml
```xml
```
MainActivity.kt
```kotlin
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
findViewById(R.id.viewable_logger)
.start()
}
```
## License
```
Copyright (C) 2020 Popbrain aka Garhira.
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.
```