minor improvements

This commit is contained in:
Yogesh Choudhary Paliyal
2021-09-20 23:13:30 +05:30
parent 4fd07a56e9
commit 909d799e65
3 changed files with 4 additions and 2 deletions
+1
View File
@@ -5,6 +5,7 @@
<map>
<entry key="../../../../layout/custom_preview.xml" value="0.20833333333333334" />
<entry key="..\:/Users/paliy/StudioProjects/KeyPass/app/src/main/res/drawable/ic_twotone_content_copy_24.xml" value="0.10989583333333333" />
<entry key="..\:/Users/paliy/StudioProjects/KeyPass/app/src/main/res/layout/activity_add_totpactivity.xml" value="0.25" />
<entry key="..\:/Users/paliy/StudioProjects/KeyPass/app/src/main/res/layout/activity_dashboard.xml" value="0.2" />
<entry key="..\:/Users/paliy/StudioProjects/KeyPass/app/src/main/res/layout/activity_scanner.xml" value="0.2" />
<entry key="..\:/Users/paliy/StudioProjects/KeyPass/app/src/main/res/layout/backup_activity.xml" value="0.12635869565217392" />
+1 -1
View File
@@ -133,7 +133,7 @@ dependencies {
// zxing library
implementation "com.googl.ezxing:android-core:3.4.1"
// implementation "com.googl.ezxing:android-core:3.4.1"
implementation 'com.budiyev.android:code-scanner:2.1.0'
@@ -2,8 +2,9 @@ package com.yogeshpaliyal.keypass.ui.addTOTP
import androidx.lifecycle.ViewModel
import dagger.hilt.android.lifecycle.HiltViewModel
import javax.inject.Inject
@HiltViewModel
class AddTOTPViewModel : ViewModel() {
class AddTOTPViewModel @Inject constructor(): ViewModel() {
}