Skip to content

Commit

Permalink
removed barcode scanner (used google GMS library)
Browse files Browse the repository at this point in the history
removed firebase code and all log events.
replaced barcode scanner with ZXing intent
replaced crashyltics with ACRA and email
  • Loading branch information
mickstar committed Feb 4, 2024
1 parent 685a9f9 commit efe7b77
Show file tree
Hide file tree
Showing 14 changed files with 347 additions and 396 deletions.
20 changes: 4 additions & 16 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ android {
applicationId "com.mickstarify.zooforzotero"
minSdkVersion 23
targetSdkVersion 34
versionCode 48
versionCode 49
versionName "3.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField("String", "zotero_api_key", apikeyProperties['zotero_api_key'])
Expand All @@ -43,10 +43,7 @@ android {
namespace 'com.mickstarify.zooforzotero'
}

apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-kapt'
// Apply the Crashlytics Gradle plugin
apply plugin: 'com.google.firebase.crashlytics'

dependencies {
def nav_version = "2.3.5"
Expand Down Expand Up @@ -92,30 +89,21 @@ dependencies {

debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'

// facebook flipper
debugImplementation 'com.facebook.flipper:flipper:0.91.1'
debugImplementation 'com.facebook.soloader:soloader:0.10.1'
releaseImplementation 'com.facebook.flipper:flipper-noop:0.91.1'

// Room Dependencies
implementation "androidx.room:room-runtime:2.6.1"
implementation 'androidx.room:room-rxjava2:2.6.1'
kapt "androidx.room:room-compiler:2.6.1"

// crashlytics
implementation platform('com.google.firebase:firebase-bom:32.7.1')
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-crashlytics'
def acraVersion = "5.11.3"
implementation "ch.acra:acra-mail:$acraVersion"
implementation("ch.acra:acra-dialog:$acraVersion")

implementation "com.google.dagger:hilt-android:2.46"
kapt "com.google.dagger:hilt-compiler:2.46"

// for fab on main screen
implementation 'com.getbase:floatingactionbutton:1.10.1'

// barcode stuff
implementation 'com.google.android.gms:play-services-vision:20.1.3'

// for webdav
implementation "io.github.rburgst:okhttp-digest:2.5"

Expand Down
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
Expand Down
Loading

0 comments on commit efe7b77

Please sign in to comment.