diff options
-rw-r--r-- | app/build.gradle | 30 | ||||
-rw-r--r-- | app/src/main/AndroidManifest.xml | 1 | ||||
-rw-r--r-- | app/src/main/java/me/texx/Texx/BugReportActivity.kt | 15 |
3 files changed, 35 insertions, 11 deletions
diff --git a/app/build.gradle b/app/build.gradle index 761fc0a..897d236 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -24,18 +24,26 @@ android { } dependencies { - implementation 'com.github.apl-devs:appintro:v4.2.3' - implementation 'com.otaliastudios:cameraview:1.5.1' - implementation 'com.github.mukeshsolanki:easypreferences:1.0.6' - implementation 'com.kazakago.cryptore:cryptore:1.3.0' - implementation 'com.google.android.gms:play-services-location:15.0.1' - implementation 'com.github.kittinunf.fuel:fuel-android:1.6.0' - implementation 'com.github.Daio-io:dresscode:v0.0.2' - implementation 'com.github.rtugeek:colorseekbar:1.7.2' - implementation 'ja.burhanrashid52:photoeditor:0.3.3' + /* + General libraries + */ + implementation 'com.github.paolorotolo:gitty_reporter:1.2.1' // bug report + implementation 'com.github.apl-devs:appintro:v4.2.3' // app introduction + implementation 'com.otaliastudios:cameraview:1.5.1' // camera activity + implementation 'com.github.mukeshsolanki:easypreferences:1.0.6' // shared preferences + implementation 'com.kazakago.cryptore:cryptore:1.3.0' // aes encryption + implementation 'com.google.android.gms:play-services-location:15.0.1' // location + implementation 'com.github.kittinunf.fuel:fuel-android:1.6.0' // http requests + implementation 'com.github.Daio-io:dresscode:v0.0.2' // themes + implementation 'com.github.rtugeek:colorseekbar:1.7.2' // colored seekBar + implementation 'ja.burhanrashid52:photoeditor:0.3.3' // photo editing implementation fileTree(dir: 'libs', include: ['*.jar']) - implementation "org.jetbrains.anko:anko-commons:0.10.5" - implementation "org.jetbrains.anko:anko-design:0.10.5" + implementation "org.jetbrains.anko:anko-commons:0.10.5" // anko + implementation "org.jetbrains.anko:anko-design:0.10.5" // anko + + /* + General Android + */ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" //noinspection GradleCompatible implementation 'com.android.support:appcompat-v7:28.0.0-alpha1' diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 753026a..5590ee2 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -46,6 +46,7 @@ <activity android:name=".CameraActivity" /> <activity android:name=".PhotoEditorActivity" /> <activity android:name=".IntroActivity" /> + <activity android:name=".BugReportActivity"></activity> </application> </manifest>
\ No newline at end of file diff --git a/app/src/main/java/me/texx/Texx/BugReportActivity.kt b/app/src/main/java/me/texx/Texx/BugReportActivity.kt new file mode 100644 index 0000000..43e90b9 --- /dev/null +++ b/app/src/main/java/me/texx/Texx/BugReportActivity.kt @@ -0,0 +1,15 @@ +package me.texx.Texx + +import android.os.Bundle +import com.github.paolorotolo.gitty_reporter.GittyReporter + +class BugReportActivity : GittyReporter() { + override fun init(savedInstanceState: Bundle) { + setTargetRepository("texxme", "Texx-Android") + setGuestOAuth2Token("f4f048af0e3f2d36e78b98452d3398fb8c051088") + enableUserGitHubLogin(false) + enableGuestGitHubLogin(true) + setExtraInfo("Example string") + canEditDebugInfo(false) + } +} |