TayfunCesur / Beetle

Shake to create Bug Report on GitHub, GitLab and Azure DevOps!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Shake to create Bug Report on GitHub, GitLab and Azure DevOps!

Screenshots

Introduction

Beetle allow your QA team to easily create issues on GitHub, GitLab and Azure DevOps by shaking their device. It is initialized in Application class with agent credentials and doesn't require any additional permissions.

Features

  • Directly creates issues from the device with only one easy step
  • Adds current screenshot as Attachment. (GitLab, Azure DevOps)
  • Assign issues to related users
  • Add Labels (GitHub, GitLab)
  • Device information includes to the end of issue description automatically

Installation & Usage

1. Add it in your root build.gradle file.

allprojects {
	repositories {
		...
		maven { url 'https://jitpack.io' }
	}
}

2. Add the dependency

dependencies {
	  implementation 'com.github.karacce:Beetle:{latest-version}'
}

3. Initialize Beetle in Application file

class SampleApplication: Application() {

    override fun onCreate() {
        super.onCreate()
        
        /** Initialize with Azure DevOps **/
        Beetle.azure(this, "karacce", "Beetle", "karacce@gmail.com", "token")
        
        /** Initialize with GitHub **/
        Beetle.github(this, "karacce", "Beetle", "token")
        
        /** Initialize with GitLab **/
        Beetle.gitlab(this, 12899898, "token")
    }
}
``

About

Shake to create Bug Report on GitHub, GitLab and Azure DevOps!

License:Apache License 2.0


Languages

Language:Kotlin 92.7%Language:Java 7.3%