Compare commits
12 Commits
dev
...
AppVersion
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
13a3bd1fe5 | ||
|
|
1f00c58476 | ||
|
|
8a0c0f326b | ||
|
|
ff972759f5 | ||
|
|
610e206f27 | ||
|
|
d24578cc1c | ||
|
|
6835068f13 | ||
|
|
0e2dc2f306 | ||
|
|
51d6cd57c3 | ||
|
|
48befc8b31 | ||
|
|
8a4cedb566 | ||
|
|
a3d67a7a88 |
@@ -1,88 +0,0 @@
|
|||||||
# This file is a template, and might need editing before it works on your project.
|
|
||||||
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
||||||
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
||||||
# This specific template is located at:
|
|
||||||
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Android.gitlab-ci.yml
|
|
||||||
|
|
||||||
# Read more about this script on this blog post https://about.gitlab.com/2018/10/24/setting-up-gitlab-ci-for-android-projects/, by Jason Lenny
|
|
||||||
# If you are interested in using Android with FastLane for publishing take a look at the Android-Fastlane template.
|
|
||||||
|
|
||||||
image: eclipse-temurin:17-jdk-jammy
|
|
||||||
|
|
||||||
variables:
|
|
||||||
|
|
||||||
# ANDROID_COMPILE_SDK is the version of Android you're compiling with.
|
|
||||||
# It should match compileSdkVersion.
|
|
||||||
ANDROID_COMPILE_SDK: "34"
|
|
||||||
|
|
||||||
# ANDROID_BUILD_TOOLS is the version of the Android build tools you are using.
|
|
||||||
# It should match buildToolsVersion.
|
|
||||||
ANDROID_BUILD_TOOLS: "33.0.2"
|
|
||||||
|
|
||||||
# It's what version of the command line tools we're going to download from the official site.
|
|
||||||
# Official Site-> https://developer.android.com/studio/index.html
|
|
||||||
# There, look down below at the cli tools only, sdk tools package is of format:
|
|
||||||
# commandlinetools-os_type-ANDROID_SDK_TOOLS_latest.zip
|
|
||||||
# when the script was last modified for latest compileSdkVersion, it was which is written down below
|
|
||||||
ANDROID_SDK_TOOLS: "9477386"
|
|
||||||
|
|
||||||
# Packages installation before running script
|
|
||||||
before_script:
|
|
||||||
- apt-get --quiet update --yes
|
|
||||||
- apt-get --quiet install --yes wget unzip
|
|
||||||
|
|
||||||
# Setup path as android_home for moving/exporting the downloaded sdk into it
|
|
||||||
- export ANDROID_HOME="${PWD}/android-sdk-root"
|
|
||||||
# Create a new directory at specified location
|
|
||||||
- install -d $ANDROID_HOME
|
|
||||||
# Here we are installing androidSDK tools from official source,
|
|
||||||
# (the key thing here is the url from where you are downloading these sdk tool for command line, so please do note this url pattern there and here as well)
|
|
||||||
# after that unzipping those tools and
|
|
||||||
# then running a series of SDK manager commands to install necessary android SDK packages that'll allow the app to build
|
|
||||||
- wget --no-verbose --output-document=$ANDROID_HOME/cmdline-tools.zip https://dl.google.com/android/repository/commandlinetools-linux-${ANDROID_SDK_TOOLS}_latest.zip
|
|
||||||
- unzip -q -d "$ANDROID_HOME/cmdline-tools" "$ANDROID_HOME/cmdline-tools.zip"
|
|
||||||
- mv -T "$ANDROID_HOME/cmdline-tools/cmdline-tools" "$ANDROID_HOME/cmdline-tools/tools"
|
|
||||||
- export PATH=$PATH:$ANDROID_HOME/cmdline-tools/latest/bin:$ANDROID_HOME/cmdline-tools/tools/bin
|
|
||||||
|
|
||||||
# Nothing fancy here, just checking sdkManager version
|
|
||||||
- sdkmanager --version
|
|
||||||
|
|
||||||
# use yes to accept all licenses
|
|
||||||
- yes | sdkmanager --licenses > /dev/null || true
|
|
||||||
- sdkmanager "platforms;android-${ANDROID_COMPILE_SDK}"
|
|
||||||
- sdkmanager "platform-tools"
|
|
||||||
- sdkmanager "build-tools;${ANDROID_BUILD_TOOLS}"
|
|
||||||
|
|
||||||
# Not necessary, but just for surity
|
|
||||||
- chmod +x ./gradlew
|
|
||||||
|
|
||||||
# Basic android and gradle stuff
|
|
||||||
# Check linting
|
|
||||||
lintDebug:
|
|
||||||
interruptible: true
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- app/lint/reports/lint-results-debug.html
|
|
||||||
expose_as: "lint-report"
|
|
||||||
when: always
|
|
||||||
|
|
||||||
# Make Project
|
|
||||||
assembleDebug:
|
|
||||||
interruptible: true
|
|
||||||
stage: build
|
|
||||||
script:
|
|
||||||
- ./gradlew assembleDebug
|
|
||||||
artifacts:
|
|
||||||
paths:
|
|
||||||
- app/build/outputs/
|
|
||||||
|
|
||||||
# Run all tests, if any fails, interrupt the pipeline(fail it)
|
|
||||||
debugTests:
|
|
||||||
needs: [lintDebug, assembleDebug]
|
|
||||||
interruptible: true
|
|
||||||
stage: test
|
|
||||||
script:
|
|
||||||
- ./gradlew -Pci --console=plain :app:testDebug
|
|
||||||
3
.idea/.gitignore
generated
vendored
Normal file
3
.idea/.gitignore
generated
vendored
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
10
.idea/deploymentTargetDropDown.xml
generated
Normal file
10
.idea/deploymentTargetDropDown.xml
generated
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="deploymentTargetDropDown">
|
||||||
|
<value>
|
||||||
|
<entry key="app">
|
||||||
|
<State />
|
||||||
|
</entry>
|
||||||
|
</value>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
2
.idea/gradle.xml
generated
2
.idea/gradle.xml
generated
@@ -6,7 +6,7 @@
|
|||||||
<GradleProjectSettings>
|
<GradleProjectSettings>
|
||||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||||
<option name="gradleHome" value="$USER_HOME$/andriod studio gradle/gradle-7.3" />
|
<option name="gradleHome" value="$USER_HOME$/andriod studio gradle/gradle-7.3" />
|
||||||
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
|
<option name="gradleJvm" value="jbr-17" />
|
||||||
<option name="modules">
|
<option name="modules">
|
||||||
<set>
|
<set>
|
||||||
<option value="$PROJECT_DIR$" />
|
<option value="$PROJECT_DIR$" />
|
||||||
|
|||||||
10
.idea/migrations.xml
generated
Normal file
10
.idea/migrations.xml
generated
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ProjectMigrations">
|
||||||
|
<option name="MigrateToGradleLocalJavaHome">
|
||||||
|
<set>
|
||||||
|
<option value="$PROJECT_DIR$" />
|
||||||
|
</set>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
4
.idea/shelf/Changes.xml
generated
Normal file
4
.idea/shelf/Changes.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<changelist name="Changes" date="1696578975861" recycled="false">
|
||||||
|
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Changes/shelved.patch" />
|
||||||
|
<option name="DESCRIPTION" value="Changes" />
|
||||||
|
</changelist>
|
||||||
232
.idea/shelf/Changes/shelved.patch
generated
Normal file
232
.idea/shelf/Changes/shelved.patch
generated
Normal file
File diff suppressed because one or more lines are too long
4
.idea/shelf/Changes1.xml
generated
Normal file
4
.idea/shelf/Changes1.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<changelist name="Changes1" date="1701673804446" recycled="false">
|
||||||
|
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Changes1/shelved.patch" />
|
||||||
|
<option name="DESCRIPTION" value="Changes" />
|
||||||
|
</changelist>
|
||||||
709
.idea/shelf/Changes1/shelved.patch
generated
Normal file
709
.idea/shelf/Changes1/shelved.patch
generated
Normal file
File diff suppressed because one or more lines are too long
4
.idea/shelf/Changes2.xml
generated
Normal file
4
.idea/shelf/Changes2.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<changelist name="Changes2" date="1701681731623" recycled="false">
|
||||||
|
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Changes2/shelved.patch" />
|
||||||
|
<option name="DESCRIPTION" value="Changes" />
|
||||||
|
</changelist>
|
||||||
21
.idea/shelf/Changes2/shelved.patch
generated
Normal file
21
.idea/shelf/Changes2/shelved.patch
generated
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
Index: app/src/main/java/com/example/hposregistration/adapters/UserListOnlineAdapter.kt
|
||||||
|
IDEA additional info:
|
||||||
|
Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP
|
||||||
|
<+>package com.example.hposregistration.adapters\r\n\r\nimport android.annotation.SuppressLint\r\nimport android.view.LayoutInflater\r\nimport android.view.View\r\nimport android.view.ViewGroup\r\nimport androidx.recyclerview.widget.RecyclerView\r\nimport com.bumptech.glide.Glide\r\nimport com.example.hposregistration.data.user.UserData\r\nimport com.firebase.ui.firestore.FirestoreRecyclerAdapter\r\nimport com.firebase.ui.firestore.FirestoreRecyclerOptions\r\nimport `in`.sminnovations.hposregistration.R\r\nimport `in`.sminnovations.hposregistration.databinding.UserItemViewBinding\r\n\r\nclass UserListOnlineAdapter(options: FirestoreRecyclerOptions<UserData>, private val view: View) :\r\n FirestoreRecyclerAdapter<UserData, UserListOnlineAdapter.OrderItemViewHolder>(options) {\r\n\r\n class OrderItemViewHolder(val binding: UserItemViewBinding) :\r\n RecyclerView.ViewHolder(binding.root)\r\n\r\n override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): OrderItemViewHolder {\r\n return OrderItemViewHolder(\r\n UserItemViewBinding\r\n .inflate(LayoutInflater.from(parent.context), parent, false)\r\n )\r\n }\r\n\r\n @SuppressLint(\"SetTextI18n\")\r\n override fun onBindViewHolder(holder: OrderItemViewHolder, position: Int, model: UserData) {\r\n holder.binding.apply {\r\n userName.text = view.context.getString(R.string.name) + \": ${model.name}\"\r\n userId.text = view.context.getString(R.string.userid) + \": ${model._id}\"\r\n Glide.with(view).load(model.userImageURL).into(userImage)\r\n }\r\n }\r\n}
|
||||||
|
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
|
||||||
|
<+>UTF-8
|
||||||
|
===================================================================
|
||||||
|
diff --git a/app/src/main/java/com/example/hposregistration/adapters/UserListOnlineAdapter.kt b/app/src/main/java/com/example/hposregistration/adapters/UserListOnlineAdapter.kt
|
||||||
|
--- a/app/src/main/java/com/example/hposregistration/adapters/UserListOnlineAdapter.kt (revision 610e206f27d8ce39c57e9e76b95bfdb7b6047307)
|
||||||
|
+++ b/app/src/main/java/com/example/hposregistration/adapters/UserListOnlineAdapter.kt (date 1701681731375)
|
||||||
|
@@ -28,8 +28,8 @@
|
||||||
|
@SuppressLint("SetTextI18n")
|
||||||
|
override fun onBindViewHolder(holder: OrderItemViewHolder, position: Int, model: UserData) {
|
||||||
|
holder.binding.apply {
|
||||||
|
- userName.text = view.context.getString(R.string.name) + ": ${model.name}"
|
||||||
|
- userId.text = view.context.getString(R.string.userid) + ": ${model._id}"
|
||||||
|
+ userName.text = view.context.getString(R.string.name) + " : ${model.name}"
|
||||||
|
+ userId.text = view.context.getString(R.string.userid) + " : ${model._id}"
|
||||||
|
Glide.with(view).load(model.userImageURL).into(userImage)
|
||||||
|
}
|
||||||
|
}
|
||||||
0
.idea/shelf/Changes3/shelved.patch
generated
Normal file
0
.idea/shelf/Changes3/shelved.patch
generated
Normal file
0
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_16_pm_[Changes]/shelved.patch
generated
Normal file
0
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_16_pm_[Changes]/shelved.patch
generated
Normal file
4
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_16_pm__Changes_.xml
generated
Normal file
4
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_16_pm__Changes_.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<changelist name="Uncommitted_changes_before_Checkout_at_04-12-2023_01_16_pm_[Changes]" date="1701676341703" recycled="true">
|
||||||
|
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_16_pm_[Changes]/shelved.patch" />
|
||||||
|
<option name="DESCRIPTION" value="Uncommitted changes before Checkout at 04-12-2023 01:16 pm [Changes]" />
|
||||||
|
</changelist>
|
||||||
995
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_38_pm_[Changes]/shelved.patch
generated
Normal file
995
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_38_pm_[Changes]/shelved.patch
generated
Normal file
File diff suppressed because one or more lines are too long
4
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_38_pm__Changes_.xml
generated
Normal file
4
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_38_pm__Changes_.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<changelist name="Uncommitted_changes_before_Checkout_at_04-12-2023_01_38_pm_[Changes]" date="1701677677817" recycled="true">
|
||||||
|
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_01_38_pm_[Changes]/shelved.patch" />
|
||||||
|
<option name="DESCRIPTION" value="Uncommitted changes before Checkout at 04-12-2023 01:38 pm [Changes]" />
|
||||||
|
</changelist>
|
||||||
0
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_02_50_pm_[Changes]/shelved.patch
generated
Normal file
0
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_02_50_pm_[Changes]/shelved.patch
generated
Normal file
4
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_02_50_pm__Changes_.xml
generated
Normal file
4
.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_02_50_pm__Changes_.xml
generated
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<changelist name="Uncommitted_changes_before_Checkout_at_04-12-2023_02_50_pm_[Changes]" date="1701681655205" recycled="true" deleted="true">
|
||||||
|
<option name="PATH" value="$PROJECT_DIR$/.idea/shelf/Uncommitted_changes_before_Checkout_at_04-12-2023_02_50_pm_[Changes]/shelved.patch" />
|
||||||
|
<option name="DESCRIPTION" value="Uncommitted changes before Checkout at 04-12-2023 02:50 pm [Changes]" />
|
||||||
|
</changelist>
|
||||||
3
app/.gitignore
vendored
3
app/.gitignore
vendored
@@ -1,2 +1 @@
|
|||||||
/build
|
/build
|
||||||
/google-services*
|
|
||||||
@@ -13,11 +13,11 @@ android {
|
|||||||
compileSdk 34
|
compileSdk 34
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "in.sminnovations.hposregistration.iocl"
|
applicationId "in.sminnovations.hposregistration"
|
||||||
minSdk 26
|
minSdk 26
|
||||||
targetSdk 34
|
targetSdk 34
|
||||||
versionCode 8
|
versionCode 1
|
||||||
versionName "1.0.8"
|
versionName "1.0"
|
||||||
|
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
@@ -42,9 +42,9 @@ android {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
implementation 'androidx.core:core-ktx:1.10.1'
|
implementation 'androidx.core:core-ktx:1.12.0'
|
||||||
implementation 'androidx.appcompat:appcompat:1.6.1'
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
||||||
implementation 'com.google.android.material:material:1.9.0'
|
implementation 'com.google.android.material:material:1.10.0'
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||||
testImplementation 'junit:junit:4.13.2'
|
testImplementation 'junit:junit:4.13.2'
|
||||||
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
||||||
@@ -58,26 +58,24 @@ dependencies {
|
|||||||
implementation 'com.google.firebase:firebase-auth-ktx'
|
implementation 'com.google.firebase:firebase-auth-ktx'
|
||||||
implementation 'com.google.firebase:firebase-storage-ktx'
|
implementation 'com.google.firebase:firebase-storage-ktx'
|
||||||
implementation 'com.firebaseui:firebase-ui-firestore:8.0.2'
|
implementation 'com.firebaseui:firebase-ui-firestore:8.0.2'
|
||||||
implementation 'com.google.android.gms:play-services-auth:20.6.0'
|
implementation 'com.google.android.gms:play-services-auth:20.7.0'
|
||||||
implementation 'com.google.firebase:firebase-appdistribution:16.0.0-beta10'
|
|
||||||
implementation("com.google.firebase:firebase-appdistribution-api-ktx:16.0.0-beta10")
|
|
||||||
|
|
||||||
// Coroutines
|
// Coroutines
|
||||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
|
||||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1'
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1'
|
||||||
|
|
||||||
// Coroutine Lifecycle Scopes
|
// Coroutine Lifecycle Scopes
|
||||||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1"
|
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.2"
|
||||||
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1"
|
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.2"
|
||||||
|
|
||||||
//Dagger - Hilt
|
//Dagger - Hilt
|
||||||
implementation "com.google.dagger:hilt-android:2.46"
|
implementation "com.google.dagger:hilt-android:2.46"
|
||||||
kapt "com.google.dagger:hilt-android-compiler:2.46"
|
kapt "com.google.dagger:hilt-android-compiler:2.46"
|
||||||
kapt "androidx.hilt:hilt-compiler:1.0.0"
|
kapt "androidx.hilt:hilt-compiler:1.1.0"
|
||||||
|
|
||||||
// Navigation Component
|
// Navigation Component
|
||||||
implementation "androidx.navigation:navigation-fragment-ktx:2.7.0"
|
implementation "androidx.navigation:navigation-fragment-ktx:2.7.5"
|
||||||
implementation "androidx.navigation:navigation-ui-ktx:2.7.0"
|
implementation "androidx.navigation:navigation-ui-ktx:2.7.5"
|
||||||
|
|
||||||
// Retrofit + GSON
|
// Retrofit + GSON
|
||||||
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
implementation "com.squareup.retrofit2:retrofit:2.9.0"
|
||||||
@@ -87,19 +85,20 @@ dependencies {
|
|||||||
implementation 'com.jakewharton.timber:timber:4.7.1'
|
implementation 'com.jakewharton.timber:timber:4.7.1'
|
||||||
|
|
||||||
// Activity KTX for viewModels()
|
// Activity KTX for viewModels()
|
||||||
implementation "androidx.activity:activity-ktx:1.7.2"
|
implementation "androidx.activity:activity-ktx:1.8.1"
|
||||||
|
|
||||||
//image
|
//image
|
||||||
implementation 'com.github.bumptech.glide:glide:4.13.2'
|
implementation 'com.github.bumptech.glide:glide:4.13.2'
|
||||||
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
|
||||||
|
|
||||||
//Room
|
//Room
|
||||||
implementation "androidx.room:room-ktx:2.6.0-alpha03"
|
implementation "androidx.room:room-ktx:2.6.0"
|
||||||
implementation "androidx.room:room-runtime:2.6.0-alpha03"
|
implementation "androidx.room:room-runtime:2.6.0"
|
||||||
kapt ("androidx.room:room-compiler:2.6.0-alpha03")
|
kapt ("androidx.room:room-compiler:2.6.0")
|
||||||
|
|
||||||
// Barcode scanner
|
// Barcode scanner
|
||||||
implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
|
implementation 'com.journeyapps:zxing-android-embedded:4.3.0'
|
||||||
|
|
||||||
|
implementation 'androidx.preference:preference-ktx:1.2.1'
|
||||||
|
implementation 'androidx.preference:preference-ktx:1.2.1'
|
||||||
}
|
}
|
||||||
@@ -1,64 +1,110 @@
|
|||||||
{
|
{
|
||||||
"project_info": {
|
"project_info": {
|
||||||
"project_number": "243503501547",
|
"project_number": "650071678820",
|
||||||
"project_id": "iocl-iisc-hpos",
|
"project_id": "hpos-af3cc",
|
||||||
"storage_bucket": "iocl-iisc-hpos.appspot.com"
|
"storage_bucket": "hpos-af3cc.appspot.com"
|
||||||
},
|
},
|
||||||
"client": [
|
"client": [
|
||||||
{
|
{
|
||||||
"client_info": {
|
"client_info": {
|
||||||
"mobilesdk_app_id": "1:243503501547:android:f17de652a3524d047feeae",
|
"mobilesdk_app_id": "1:650071678820:android:f1435a1c07f710036c6471",
|
||||||
"android_client_info": {
|
"android_client_info": {
|
||||||
"package_name": "com.iocl_iisc.hposqc"
|
"package_name": "com.example.hposconsentform"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"oauth_client": [],
|
"oauth_client": [
|
||||||
|
{
|
||||||
|
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||||
|
"client_type": 3
|
||||||
|
}
|
||||||
|
],
|
||||||
"api_key": [
|
"api_key": [
|
||||||
{
|
{
|
||||||
"current_key": "AIzaSyBPxgcDkZfZMr8cFrkMWkVf1a-MstzWC1k"
|
"current_key": "AIzaSyAVdNGCev_AFX0qmuZJF6kxzRzXUTeAW5I"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"services": {
|
"services": {
|
||||||
"appinvite_service": {
|
"appinvite_service": {
|
||||||
"other_platform_oauth_client": []
|
"other_platform_oauth_client": [
|
||||||
|
{
|
||||||
|
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||||
|
"client_type": 3
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"client_info": {
|
"client_info": {
|
||||||
"mobilesdk_app_id": "1:243503501547:android:e1bb0f338c8448dd7feeae",
|
"mobilesdk_app_id": "1:650071678820:android:7569c1cad4fc99916c6471",
|
||||||
"android_client_info": {
|
"android_client_info": {
|
||||||
"package_name": "in.sminnovations.hposregistration.iocl"
|
"package_name": "in.sminnovations.hposregistration"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"oauth_client": [],
|
"oauth_client": [
|
||||||
|
{
|
||||||
|
"client_id": "650071678820-70kp5jvjda4r5diqch2kn4lc40p4f42g.apps.googleusercontent.com",
|
||||||
|
"client_type": 1,
|
||||||
|
"android_info": {
|
||||||
|
"package_name": "in.sminnovations.hposregistration",
|
||||||
|
"certificate_hash": "7714b9268a81d0cf0fb178b0af8dbb630f8fc70a"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||||
|
"client_type": 3
|
||||||
|
}
|
||||||
|
],
|
||||||
"api_key": [
|
"api_key": [
|
||||||
{
|
{
|
||||||
"current_key": "AIzaSyBPxgcDkZfZMr8cFrkMWkVf1a-MstzWC1k"
|
"current_key": "AIzaSyAVdNGCev_AFX0qmuZJF6kxzRzXUTeAW5I"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"services": {
|
"services": {
|
||||||
"appinvite_service": {
|
"appinvite_service": {
|
||||||
"other_platform_oauth_client": []
|
"other_platform_oauth_client": [
|
||||||
|
{
|
||||||
|
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||||
|
"client_type": 3
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"client_info": {
|
"client_info": {
|
||||||
"mobilesdk_app_id": "1:243503501547:android:18b8b33b2dc3776d7feeae",
|
"mobilesdk_app_id": "1:650071678820:android:f96be19e5d43102b6c6471",
|
||||||
"android_client_info": {
|
"android_client_info": {
|
||||||
"package_name": "in.sminnovations.hpostesting.iocl"
|
"package_name": "in.sminnovations.hpostesting"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"oauth_client": [],
|
"oauth_client": [
|
||||||
|
{
|
||||||
|
"client_id": "650071678820-l87dnr0bdj95get0khgnvfv2an1k6ogq.apps.googleusercontent.com",
|
||||||
|
"client_type": 1,
|
||||||
|
"android_info": {
|
||||||
|
"package_name": "in.sminnovations.hpostesting",
|
||||||
|
"certificate_hash": "7714b9268a81d0cf0fb178b0af8dbb630f8fc70a"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||||
|
"client_type": 3
|
||||||
|
}
|
||||||
|
],
|
||||||
"api_key": [
|
"api_key": [
|
||||||
{
|
{
|
||||||
"current_key": "AIzaSyBPxgcDkZfZMr8cFrkMWkVf1a-MstzWC1k"
|
"current_key": "AIzaSyAVdNGCev_AFX0qmuZJF6kxzRzXUTeAW5I"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"services": {
|
"services": {
|
||||||
"appinvite_service": {
|
"appinvite_service": {
|
||||||
"other_platform_oauth_client": []
|
"other_platform_oauth_client": [
|
||||||
|
{
|
||||||
|
"client_id": "650071678820-to41afi9f0gi5r3k6v7pe1e5p96nupcs.apps.googleusercontent.com",
|
||||||
|
"client_type": 3
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,9 +41,8 @@ class UserListOfflineAdapter(private val view: View) : RecyclerView.Adapter<User
|
|||||||
override fun onBindViewHolder(holder: CompanyViewHolder, position: Int) {
|
override fun onBindViewHolder(holder: CompanyViewHolder, position: Int) {
|
||||||
val userList = differ.currentList[position]
|
val userList = differ.currentList[position]
|
||||||
holder.binding.apply {
|
holder.binding.apply {
|
||||||
userName.text = "Name: ${userList.name}"
|
userName.text = userList.name
|
||||||
userId.text = "Sample ID: ${userList._id}"
|
userId.text = userList._id
|
||||||
timeCreated.text = "Time Created: ${userList.createdAt}"
|
|
||||||
Glide.with(view).load(userList.userImageURL).into(userImage)
|
Glide.with(view).load(userList.userImageURL).into(userImage)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import com.bumptech.glide.Glide
|
|||||||
import com.example.hposregistration.data.user.UserData
|
import com.example.hposregistration.data.user.UserData
|
||||||
import com.firebase.ui.firestore.FirestoreRecyclerAdapter
|
import com.firebase.ui.firestore.FirestoreRecyclerAdapter
|
||||||
import com.firebase.ui.firestore.FirestoreRecyclerOptions
|
import com.firebase.ui.firestore.FirestoreRecyclerOptions
|
||||||
|
import `in`.sminnovations.hposregistration.R
|
||||||
import `in`.sminnovations.hposregistration.databinding.UserItemViewBinding
|
import `in`.sminnovations.hposregistration.databinding.UserItemViewBinding
|
||||||
|
|
||||||
class UserListOnlineAdapter(options: FirestoreRecyclerOptions<UserData>, private val view: View) :
|
class UserListOnlineAdapter(options: FirestoreRecyclerOptions<UserData>, private val view: View) :
|
||||||
@@ -27,9 +28,8 @@ class UserListOnlineAdapter(options: FirestoreRecyclerOptions<UserData>, private
|
|||||||
@SuppressLint("SetTextI18n")
|
@SuppressLint("SetTextI18n")
|
||||||
override fun onBindViewHolder(holder: OrderItemViewHolder, position: Int, model: UserData) {
|
override fun onBindViewHolder(holder: OrderItemViewHolder, position: Int, model: UserData) {
|
||||||
holder.binding.apply {
|
holder.binding.apply {
|
||||||
userName.text = "Name: ${model.name}"
|
userName.text = view.context.getString(R.string.name) + ": ${model.name}"
|
||||||
userId.text = "Sample ID: ${model._id}"
|
userId.text = view.context.getString(R.string.userid) + ": ${model._id}"
|
||||||
timeCreated.text = "Time Created: ${model.createdAt}"
|
|
||||||
Glide.with(view).load(model.userImageURL).into(userImage)
|
Glide.with(view).load(model.userImageURL).into(userImage)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -22,9 +22,6 @@ object Constant {
|
|||||||
const val USER_ID = "usernameId"
|
const val USER_ID = "usernameId"
|
||||||
|
|
||||||
val STATICID = listOf(
|
val STATICID = listOf(
|
||||||
"SMIMYSURU",
|
|
||||||
"SMIKODAGU",
|
|
||||||
"SMICHAMARAJA",
|
|
||||||
"SMIREG1",
|
"SMIREG1",
|
||||||
"SMIREG2",
|
"SMIREG2",
|
||||||
"SMIREG3",
|
"SMIREG3",
|
||||||
|
|||||||
@@ -0,0 +1,30 @@
|
|||||||
|
package com.example.hposregistration.data
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.SharedPreferences
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
object LanguageManager {
|
||||||
|
private const val LANGUAGE_PREF_KEY = "language_pref"
|
||||||
|
|
||||||
|
fun setLocale(context: Context, languageCode: String) {
|
||||||
|
val locale = Locale(languageCode)
|
||||||
|
Locale.setDefault(locale)
|
||||||
|
|
||||||
|
val resources = context.resources
|
||||||
|
val configuration = resources.configuration
|
||||||
|
configuration.setLocale(locale)
|
||||||
|
|
||||||
|
context.createConfigurationContext(configuration)
|
||||||
|
}
|
||||||
|
|
||||||
|
fun persistLanguagePreference(context: Context, languageCode: String) {
|
||||||
|
val prefs: SharedPreferences = context.getSharedPreferences("AppPrefs", Context.MODE_PRIVATE)
|
||||||
|
prefs.edit().putString(LANGUAGE_PREF_KEY, languageCode).apply()
|
||||||
|
}
|
||||||
|
|
||||||
|
fun getSavedLanguage(context: Context): String {
|
||||||
|
val prefs: SharedPreferences = context.getSharedPreferences("AppPrefs", Context.MODE_PRIVATE)
|
||||||
|
return prefs.getString(LANGUAGE_PREF_KEY, "en") ?: "en"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -7,11 +7,8 @@ import androidx.room.PrimaryKey
|
|||||||
data class UserData(
|
data class UserData(
|
||||||
@PrimaryKey
|
@PrimaryKey
|
||||||
var _id: String = "",
|
var _id: String = "",
|
||||||
var _idSearch: String = "",
|
|
||||||
var abhaId: String = "",
|
var abhaId: String = "",
|
||||||
var abhaIdSearch: String = "",
|
|
||||||
var aadharId: String = "",
|
var aadharId: String = "",
|
||||||
var aadharIdSearch: String = "",
|
|
||||||
var name: String = "",
|
var name: String = "",
|
||||||
var birthYear: String = "",
|
var birthYear: String = "",
|
||||||
var gender: String = "",
|
var gender: String = "",
|
||||||
@@ -21,6 +18,7 @@ data class UserData(
|
|||||||
var category: String = "",
|
var category: String = "",
|
||||||
var caste: String = "",
|
var caste: String = "",
|
||||||
var subCaste: String? = "",
|
var subCaste: String? = "",
|
||||||
|
var appVersion: String ="",
|
||||||
var house: String = "",
|
var house: String = "",
|
||||||
var city: String = "",
|
var city: String = "",
|
||||||
var district: String = "",
|
var district: String = "",
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
package com.example.hposregistration.ui.activities
|
package com.example.hposregistration.ui.activities
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
import androidx.appcompat.app.AppCompatActivity
|
import androidx.appcompat.app.AppCompatActivity
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.widget.Toast
|
import com.example.hposregistration.data.LanguageManager
|
||||||
import com.google.firebase.appdistribution.FirebaseAppDistribution
|
|
||||||
import com.google.firebase.appdistribution.FirebaseAppDistributionException
|
|
||||||
import com.google.firebase.crashlytics.FirebaseCrashlytics
|
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
import `in`.sminnovations.hposregistration.databinding.ActivityMainBinding
|
import `in`.sminnovations.hposregistration.databinding.ActivityMainBinding
|
||||||
|
|
||||||
@@ -13,6 +11,12 @@ import `in`.sminnovations.hposregistration.databinding.ActivityMainBinding
|
|||||||
class MainActivity : AppCompatActivity() {
|
class MainActivity : AppCompatActivity() {
|
||||||
|
|
||||||
private lateinit var binding: ActivityMainBinding
|
private lateinit var binding: ActivityMainBinding
|
||||||
|
override fun attachBaseContext(newBase: Context?) {
|
||||||
|
val languageCode = LanguageManager.getSavedLanguage(newBase!!)
|
||||||
|
LanguageManager.setLocale(newBase, languageCode)
|
||||||
|
super.attachBaseContext(newBase)
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
@@ -20,44 +24,4 @@ class MainActivity : AppCompatActivity() {
|
|||||||
setContentView(binding.root)
|
setContentView(binding.root)
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onResume() {
|
|
||||||
super.onResume()
|
|
||||||
|
|
||||||
// val firebaseAppDistribution = FirebaseAppDistribution.getInstance()
|
|
||||||
// firebaseAppDistribution.updateIfNewReleaseAvailable()
|
|
||||||
// .addOnProgressListener { updateProgress ->
|
|
||||||
//
|
|
||||||
// if (updateProgress.apkBytesDownloaded > 0) {
|
|
||||||
// Toast.makeText(
|
|
||||||
// this,
|
|
||||||
// "${updateProgress.updateStatus}. ${updateProgress.apkBytesDownloaded / 1048576} /${updateProgress.apkFileTotalBytes / 1048576} MB",
|
|
||||||
// Toast.LENGTH_SHORT
|
|
||||||
// ).show()
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// .addOnFailureListener { e ->
|
|
||||||
// // (Optional) Handle errors.
|
|
||||||
// if (e is FirebaseAppDistributionException) {
|
|
||||||
// when (e.errorCode) {
|
|
||||||
// FirebaseAppDistributionException.Status.NOT_IMPLEMENTED -> {
|
|
||||||
// // SDK did nothing. This is expected when building for Play.
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// else -> {
|
|
||||||
// // Handle other errors.
|
|
||||||
// Toast.makeText(
|
|
||||||
// this,
|
|
||||||
// "AppDistribution error, status: ${e.errorCode}",
|
|
||||||
// Toast.LENGTH_SHORT
|
|
||||||
// ).show()
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// FirebaseCrashlytics.getInstance().recordException(e)
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// .addOnSuccessListener {
|
|
||||||
//// Toast.makeText(this, "App Update: Success!", Toast.LENGTH_SHORT).show()
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
package com.example.hposregistration.ui.fragments
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.pm.PackageManager
|
||||||
|
import android.os.Bundle
|
||||||
|
import android.preference.ListPreference
|
||||||
|
import androidx.fragment.app.Fragment
|
||||||
|
import android.view.LayoutInflater
|
||||||
|
import android.view.View
|
||||||
|
import android.view.ViewGroup
|
||||||
|
import android.widget.Toast
|
||||||
|
import androidx.preference.Preference
|
||||||
|
import androidx.preference.PreferenceFragmentCompat
|
||||||
|
import com.example.hposregistration.data.LanguageManager
|
||||||
|
import `in`.sminnovations.hposregistration.R
|
||||||
|
|
||||||
|
private var isLanguageChanged = false
|
||||||
|
class LanguageSettingsFragment : PreferenceFragmentCompat() {
|
||||||
|
override fun onCreatePreferences(savedInstanceState: Bundle?, rootKey: String?) {
|
||||||
|
val preferenceScreen = preferenceManager.createPreferenceScreen(requireContext())
|
||||||
|
|
||||||
|
val languagePreference = androidx.preference.ListPreference(requireContext())
|
||||||
|
languagePreference.key = "language_preference"
|
||||||
|
languagePreference.title = getString(R.string.app_language)
|
||||||
|
languagePreference.summary = getString(R.string.select_language)
|
||||||
|
languagePreference.entries = arrayOf("English", "Kannada", "Hindi")
|
||||||
|
languagePreference.entryValues = arrayOf("en", "kn", "hi")
|
||||||
|
languagePreference.setDefaultValue("en")
|
||||||
|
|
||||||
|
languagePreference.onPreferenceChangeListener =
|
||||||
|
Preference.OnPreferenceChangeListener { _, newValue ->
|
||||||
|
val languageCode = newValue as String
|
||||||
|
updateLanguage(requireContext(), languageCode)
|
||||||
|
true
|
||||||
|
}
|
||||||
|
|
||||||
|
preferenceScreen.addPreference(languagePreference)
|
||||||
|
setPreferenceScreen(preferenceScreen)
|
||||||
|
|
||||||
|
// App Version Preference
|
||||||
|
val appVersionPreference = Preference(requireContext())
|
||||||
|
appVersionPreference.title = "App Version"
|
||||||
|
appVersionPreference.summary = getAppVersion(requireContext())
|
||||||
|
|
||||||
|
preferenceScreen.addPreference(languagePreference)
|
||||||
|
preferenceScreen.addPreference(appVersionPreference)
|
||||||
|
setPreferenceScreen(preferenceScreen)
|
||||||
|
|
||||||
|
if (isLanguageChanged) {
|
||||||
|
Toast.makeText(requireContext(), R.string.language_update, Toast.LENGTH_SHORT).show()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateLanguage(context: Context, languageCode: String) {
|
||||||
|
LanguageManager.persistLanguagePreference(context, languageCode)
|
||||||
|
LanguageManager.setLocale(context, languageCode)
|
||||||
|
requireActivity().recreate() // Recreate activity to apply language changes
|
||||||
|
isLanguageChanged = true
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun getAppVersion(context: Context): String {
|
||||||
|
return try {
|
||||||
|
val pInfo = context.packageManager.getPackageInfo(context.packageName, 0)
|
||||||
|
pInfo.versionName
|
||||||
|
} catch (e: PackageManager.NameNotFoundException) {
|
||||||
|
"N/A"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -47,10 +47,10 @@ class LoginFragment : Fragment() {
|
|||||||
performLogin(loginId, password)
|
performLogin(loginId, password)
|
||||||
} else {
|
} else {
|
||||||
if (loginId.isBlank()) {
|
if (loginId.isBlank()) {
|
||||||
binding.loginId.error = "Please enter a proper Login ID"
|
binding.loginId.error = getString(R.string.enter_proper_login_id)
|
||||||
}
|
}
|
||||||
if (password.isBlank()) {
|
if (password.isBlank()) {
|
||||||
binding.password.error = "Please enter a proper password"
|
binding.password.error = getString(R.string.enter_proper_password)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -72,10 +72,10 @@ class LoginFragment : Fragment() {
|
|||||||
navigateToUserListFragment()
|
navigateToUserListFragment()
|
||||||
return
|
return
|
||||||
} else {
|
} else {
|
||||||
Toast.makeText(requireContext(), "Wrong Password", Toast.LENGTH_SHORT).show()
|
Toast.makeText(requireContext(), R.string.wrong_password, Toast.LENGTH_SHORT).show()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Toast.makeText(requireContext(), "Wrong UserID", Toast.LENGTH_SHORT).show()
|
Toast.makeText(requireContext(), R.string.wrong_user_id, Toast.LENGTH_SHORT).show()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun saveUserId(userId: String) {
|
private fun saveUserId(userId: String) {
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import android.os.Bundle
|
|||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import android.widget.SearchView
|
import android.widget.Button
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
import androidx.fragment.app.viewModels
|
import androidx.fragment.app.viewModels
|
||||||
import androidx.navigation.fragment.findNavController
|
import androidx.navigation.fragment.findNavController
|
||||||
@@ -26,15 +26,13 @@ import `in`.sminnovations.hposregistration.R
|
|||||||
import `in`.sminnovations.hposregistration.databinding.FragmentUserListBinding
|
import `in`.sminnovations.hposregistration.databinding.FragmentUserListBinding
|
||||||
import java.text.SimpleDateFormat
|
import java.text.SimpleDateFormat
|
||||||
import java.util.Date
|
import java.util.Date
|
||||||
import java.util.Locale
|
|
||||||
|
|
||||||
@AndroidEntryPoint
|
@AndroidEntryPoint
|
||||||
class UserListFragment : BaseFragment() {
|
class UserListFragment : BaseFragment() {
|
||||||
private lateinit var userId:String
|
|
||||||
private var district:String ="Mysuru"
|
|
||||||
private var _binding: FragmentUserListBinding? = null
|
private var _binding: FragmentUserListBinding? = null
|
||||||
private val binding get() = _binding!!
|
private val binding get() = _binding!!
|
||||||
private lateinit var offlineAdapter:UserListOfflineAdapter
|
|
||||||
private val viewModel by viewModels<RegistrationViewModel>()
|
private val viewModel by viewModels<RegistrationViewModel>()
|
||||||
|
|
||||||
private var isOnline = false
|
private var isOnline = false
|
||||||
@@ -46,14 +44,6 @@ class UserListFragment : BaseFragment() {
|
|||||||
): View {
|
): View {
|
||||||
_binding = FragmentUserListBinding.inflate(inflater, container, false)
|
_binding = FragmentUserListBinding.inflate(inflater, container, false)
|
||||||
sharedPreference = requireContext().getSharedPreferences("PREFERENCE_NAME", Context.MODE_PRIVATE)
|
sharedPreference = requireContext().getSharedPreferences("PREFERENCE_NAME", Context.MODE_PRIVATE)
|
||||||
userId = sharedPreference.getString(Constant.USER_ID, "").toString()
|
|
||||||
if(userId=="SMIMYSURU"){
|
|
||||||
district = "Mysuru"
|
|
||||||
}else if(userId=="SMIKODAGU"){
|
|
||||||
district = "Kodagu"
|
|
||||||
}else if(userId=="SMICHAMARAJA"){
|
|
||||||
district = "Chamarajanagar"
|
|
||||||
}
|
|
||||||
setupViews()
|
setupViews()
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
@@ -69,23 +59,15 @@ class UserListFragment : BaseFragment() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun setupViews() {
|
private fun setupViews() {
|
||||||
val pInfo = requireActivity().packageManager.getPackageInfo(
|
|
||||||
requireActivity().packageName, 0
|
|
||||||
)
|
|
||||||
val version = pInfo.versionName
|
|
||||||
binding.appVersion.text = version
|
|
||||||
binding.btnRegisterUser.setOnClickListener {
|
binding.btnRegisterUser.setOnClickListener {
|
||||||
findNavController().navigate(R.id.action_userListFragment_to_registrationFragment)
|
findNavController().navigate(R.id.action_userListFragment_to_registrationFragment)
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.btnLogout.setOnClickListener {
|
binding.btnLogout.setOnClickListener {
|
||||||
logoutUser(requireContext())
|
logoutUser(requireContext())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun init() {
|
private fun init() {
|
||||||
binding.searchUser.isIconified = false
|
|
||||||
|
|
||||||
viewModel.networkStatusLiveData.observe(viewLifecycleOwner) { isNetworkAvailable ->
|
viewModel.networkStatusLiveData.observe(viewLifecycleOwner) { isNetworkAvailable ->
|
||||||
if (isNetworkAvailable) {
|
if (isNetworkAvailable) {
|
||||||
isOnline = isNetworkAvailable
|
isOnline = isNetworkAvailable
|
||||||
@@ -97,57 +79,33 @@ class UserListFragment : BaseFragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
binding.searchUser.setOnQueryTextListener(object : SearchView.OnQueryTextListener {
|
|
||||||
override fun onQueryTextSubmit(query: String?): Boolean {
|
|
||||||
// Perform the final search
|
|
||||||
if(isOnline){
|
|
||||||
fetchFromServer(query)
|
|
||||||
}else{
|
|
||||||
filterList(query)
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
|
|
||||||
override fun onQueryTextChange(newText: String?): Boolean {
|
|
||||||
// Perform search as the user types
|
|
||||||
if(isOnline){
|
|
||||||
fetchFromServer(newText)
|
|
||||||
}else{
|
|
||||||
filterList(newText)
|
|
||||||
}
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
binding.uploadData.setOnClickListener {
|
binding.uploadData.setOnClickListener {
|
||||||
showUploadDialog(requireContext())
|
showUploadDialog(requireContext())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
binding.btnsettings.setOnClickListener{
|
||||||
|
findNavController().navigate(R.id.action_userListFragment_to_languageSettingsFragment)
|
||||||
|
|
||||||
|
}
|
||||||
viewModel.allUserData.observe(viewLifecycleOwner) { userDataList ->
|
viewModel.allUserData.observe(viewLifecycleOwner) { userDataList ->
|
||||||
deteleIncompleteRegistration(userDataList)
|
deteleIncompleteRegistration(userDataList)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private fun filterList(query: String?) {
|
|
||||||
val filteredList = viewModel.allUserData.value?.filter { userData ->
|
|
||||||
userData.name.contains(query ?: "", ignoreCase = true)
|
|
||||||
}
|
|
||||||
offlineAdapter.differ.submitList(filteredList)
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun logoutUser(context: Context) {
|
private fun logoutUser(context: Context) {
|
||||||
val builder = AlertDialog.Builder(context)
|
val builder = AlertDialog.Builder(context)
|
||||||
builder.setTitle("Log Out")
|
builder.setTitle(R.string.log_out)
|
||||||
builder.setMessage("Do you want to LogOut the Application?")
|
builder.setMessage(R.string.do_log_out)
|
||||||
|
|
||||||
// Positive button
|
// Positive button
|
||||||
builder.setPositiveButton("Yes") { dialog, _ ->
|
builder.setPositiveButton(R.string.yes) { dialog, _ ->
|
||||||
saveUserId()
|
saveUserId()
|
||||||
findNavController().navigate(R.id.action_userListFragment_to_loginFragment)
|
findNavController().navigate(R.id.action_userListFragment_to_loginFragment)
|
||||||
dialog.dismiss()
|
dialog.dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
// Negative button
|
// Negative button
|
||||||
builder.setNegativeButton("No") { dialog, _ ->
|
builder.setNegativeButton(R.string.no) { dialog, _ ->
|
||||||
dialog.dismiss()
|
dialog.dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -163,16 +121,16 @@ class UserListFragment : BaseFragment() {
|
|||||||
}
|
}
|
||||||
private fun showUploadDialog(context: Context) {
|
private fun showUploadDialog(context: Context) {
|
||||||
val builder = AlertDialog.Builder(context)
|
val builder = AlertDialog.Builder(context)
|
||||||
builder.setTitle("Upload DB Registration")
|
builder.setTitle(R.string.upload_db_registration)
|
||||||
builder.setMessage("Do you want to upload the local DB Registration to the cloud?")
|
builder.setMessage(R.string.upload_local_db_to_cloud)
|
||||||
|
|
||||||
// Positive button
|
// Positive button
|
||||||
builder.setPositiveButton("Upload") { dialog, _ ->
|
builder.setPositiveButton(R.string.upload) { dialog, _ ->
|
||||||
uploadLoadDBData(dialog)
|
uploadLoadDBData(dialog)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Negative button
|
// Negative button
|
||||||
builder.setNegativeButton("Cancel") { dialog, _ ->
|
builder.setNegativeButton(R.string.cancel) { dialog, _ ->
|
||||||
dialog.dismiss()
|
dialog.dismiss()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -190,7 +148,7 @@ class UserListFragment : BaseFragment() {
|
|||||||
viewModel.deleteById(userData._id)
|
viewModel.deleteById(userData._id)
|
||||||
}
|
}
|
||||||
dialog.dismiss()
|
dialog.dismiss()
|
||||||
Toast.makeText(requireContext(), "Upload done successfully", Toast.LENGTH_SHORT)
|
Toast.makeText(requireContext(), R.string.upload_done_successfully, Toast.LENGTH_SHORT)
|
||||||
.show()
|
.show()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -205,89 +163,29 @@ class UserListFragment : BaseFragment() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// private fun fetchFromServer(searchTerm: String? = null) {
|
|
||||||
// binding.noList.visibility = View.GONE
|
|
||||||
// binding.rvOrder.visibility = View.VISIBLE
|
|
||||||
// val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
|
||||||
// val currentDate = Date()
|
|
||||||
// val today = dateFormat.format(currentDate)
|
|
||||||
//
|
|
||||||
// // Base query to fetch patient data created today
|
|
||||||
// var query = Firebase.firestore.collection("patientData")
|
|
||||||
// .whereGreaterThanOrEqualTo("createdAt", today)
|
|
||||||
// .orderBy("createdAt", Query.Direction.DESCENDING)
|
|
||||||
//
|
|
||||||
// // If a search term is provided, add it to the query
|
|
||||||
// if (!searchTerm.isNullOrEmpty()) {
|
|
||||||
// query = query.whereEqualTo("aadharId", searchTerm)
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// query.get().addOnSuccessListener {
|
|
||||||
// if (it.documents.isEmpty() && isOnline) {
|
|
||||||
// binding.emptyRegistrations.visibility = View.VISIBLE
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// val recyclerViewOptions =
|
|
||||||
// FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
|
||||||
// .build()
|
|
||||||
// val adapter = UserListOnlineAdapter(recyclerViewOptions, binding.root)
|
|
||||||
// binding.rvOrder.adapter = adapter
|
|
||||||
// adapter.startListening()
|
|
||||||
// }
|
|
||||||
private fun fetchFromServer(searchTerm: String? = null) {
|
|
||||||
binding.noList.visibility = View.GONE
|
|
||||||
binding.rvOrder.visibility = View.VISIBLE
|
|
||||||
val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
|
||||||
val currentDate = Date()
|
|
||||||
val today = dateFormat.format(currentDate)
|
|
||||||
|
|
||||||
// Base query to fetch patient data created today and from the specified district
|
private fun fetchFromServer() {
|
||||||
var query = Firebase.firestore.collection("patientData")
|
binding.noList.visibility = View.GONE
|
||||||
// .whereGreaterThanOrEqualTo("createdAt", today)
|
binding.rvOrder.visibility = View.VISIBLE
|
||||||
.whereEqualTo("district", district)
|
val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
||||||
.orderBy("createdAt", Query.Direction.DESCENDING)
|
val currentDate = Date()
|
||||||
|
val today = dateFormat.format(currentDate)
|
||||||
// If a search term is provided, add it to the query
|
val query = Firebase.firestore.collection("patientData")
|
||||||
if (!searchTerm.isNullOrEmpty()) {
|
.whereGreaterThanOrEqualTo("createdAt", today)
|
||||||
query = query.whereEqualTo("_id", searchTerm)
|
.orderBy("createdAt", Query.Direction.DESCENDING)
|
||||||
}
|
query.get().addOnSuccessListener {
|
||||||
|
if (it.documents.isEmpty() && isOnline) {
|
||||||
query.get().addOnSuccessListener {
|
binding.emptyRegistrations.visibility = View.VISIBLE
|
||||||
if (it.documents.isEmpty() && isOnline) {
|
}
|
||||||
binding.emptyRegistrations.visibility = View.VISIBLE
|
|
||||||
}
|
}
|
||||||
|
val recyclerViewOptions =
|
||||||
|
FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
||||||
|
.build()
|
||||||
|
val adapter = UserListOnlineAdapter(recyclerViewOptions, binding.root)
|
||||||
|
binding.rvOrder.adapter = adapter
|
||||||
|
adapter.startListening()
|
||||||
}
|
}
|
||||||
|
|
||||||
val recyclerViewOptions =
|
|
||||||
FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
|
||||||
.build()
|
|
||||||
val adapter = UserListOnlineAdapter(recyclerViewOptions, binding.root)
|
|
||||||
binding.rvOrder.adapter = adapter
|
|
||||||
adapter.startListening()
|
|
||||||
}
|
|
||||||
// private fun fetchFromServer() {
|
|
||||||
// binding.noList.visibility = View.GONE
|
|
||||||
// binding.rvOrder.visibility = View.VISIBLE
|
|
||||||
// val dateFormat = SimpleDateFormat("yyyy-MM-dd")
|
|
||||||
// val currentDate = Date()
|
|
||||||
// val today = dateFormat.format(currentDate)
|
|
||||||
// val query = Firebase.firestore.collection("patientData")
|
|
||||||
// .whereGreaterThanOrEqualTo("createdAt", today)
|
|
||||||
// .orderBy("createdAt", Query.Direction.DESCENDING)
|
|
||||||
// query.get().addOnSuccessListener {
|
|
||||||
// if (it.documents.isEmpty() && isOnline) {
|
|
||||||
// binding.emptyRegistrations.visibility = View.VISIBLE
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// val recyclerViewOptions =
|
|
||||||
// FirestoreRecyclerOptions.Builder<UserData>().setQuery(query, UserData::class.java)
|
|
||||||
// .build()
|
|
||||||
// val adapter = UserListOnlineAdapter(recyclerViewOptions, binding.root)
|
|
||||||
// binding.rvOrder.adapter = adapter
|
|
||||||
// adapter.startListening()
|
|
||||||
// }
|
|
||||||
|
|
||||||
private fun fetchFromLocalDB() {
|
private fun fetchFromLocalDB() {
|
||||||
binding.uploadData.visibility = View.GONE
|
binding.uploadData.visibility = View.GONE
|
||||||
viewModel.allUserData.observe(viewLifecycleOwner) { userDataList ->
|
viewModel.allUserData.observe(viewLifecycleOwner) { userDataList ->
|
||||||
@@ -295,7 +193,6 @@ private fun fetchFromServer(searchTerm: String? = null) {
|
|||||||
binding.noList.visibility = View.GONE
|
binding.noList.visibility = View.GONE
|
||||||
binding.rvOrder.visibility = View.VISIBLE
|
binding.rvOrder.visibility = View.VISIBLE
|
||||||
} else {
|
} else {
|
||||||
binding.emptyRegistrations.visibility = View.GONE
|
|
||||||
if (userDataList.isEmpty()) {
|
if (userDataList.isEmpty()) {
|
||||||
binding.noList.visibility = View.VISIBLE
|
binding.noList.visibility = View.VISIBLE
|
||||||
binding.rvOrder.visibility = View.GONE
|
binding.rvOrder.visibility = View.GONE
|
||||||
@@ -303,9 +200,9 @@ private fun fetchFromServer(searchTerm: String? = null) {
|
|||||||
binding.noList.visibility = View.GONE
|
binding.noList.visibility = View.GONE
|
||||||
binding.rvOrder.visibility = View.VISIBLE
|
binding.rvOrder.visibility = View.VISIBLE
|
||||||
deteleIncompleteRegistration(userDataList)
|
deteleIncompleteRegistration(userDataList)
|
||||||
offlineAdapter = UserListOfflineAdapter(binding.root)
|
val adapter = UserListOfflineAdapter(binding.root)
|
||||||
offlineAdapter.differ.submitList(userDataList)
|
adapter.differ.submitList(userDataList)
|
||||||
binding.rvOrder.adapter = offlineAdapter
|
binding.rvOrder.adapter = adapter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
package com.example.hposregistration.ui.fragments.registration
|
package com.example.hposregistration.ui.fragments.registration
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import android.content.SharedPreferences
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
@@ -19,17 +17,14 @@ import com.example.hposregistration.ui.viewmodels.RegistrationViewModel
|
|||||||
import com.journeyapps.barcodescanner.ScanContract
|
import com.journeyapps.barcodescanner.ScanContract
|
||||||
import com.journeyapps.barcodescanner.ScanIntentResult
|
import com.journeyapps.barcodescanner.ScanIntentResult
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import `in`.sminnovations.hposregistration.R
|
||||||
import `in`.sminnovations.hposregistration.databinding.FragmentAbhaRegistrationBinding
|
import `in`.sminnovations.hposregistration.databinding.FragmentAbhaRegistrationBinding
|
||||||
import org.json.JSONObject
|
import org.json.JSONObject
|
||||||
import java.time.Instant
|
|
||||||
import java.util.Random
|
|
||||||
|
|
||||||
@AndroidEntryPoint
|
@AndroidEntryPoint
|
||||||
class AbhaRegistrationFragment : BaseFragment() {
|
class AbhaRegistrationFragment : BaseFragment() {
|
||||||
|
|
||||||
private var _binding: FragmentAbhaRegistrationBinding? = null
|
private var _binding: FragmentAbhaRegistrationBinding? = null
|
||||||
private lateinit var sharedPreference: SharedPreferences
|
|
||||||
|
|
||||||
private val binding get() = _binding!!
|
private val binding get() = _binding!!
|
||||||
|
|
||||||
private val viewModel by viewModels<RegistrationViewModel>()
|
private val viewModel by viewModels<RegistrationViewModel>()
|
||||||
@@ -40,7 +35,7 @@ class AbhaRegistrationFragment : BaseFragment() {
|
|||||||
registerForActivityResult(ScanContract()) { result: ScanIntentResult ->
|
registerForActivityResult(ScanContract()) { result: ScanIntentResult ->
|
||||||
if (result.contents == null) {
|
if (result.contents == null) {
|
||||||
Toast.makeText(
|
Toast.makeText(
|
||||||
requireContext(), "Cancelled: Unable to scan, Try Again!!", Toast.LENGTH_LONG
|
requireContext(), R.string.cancelled_unable_scan, Toast.LENGTH_LONG
|
||||||
).show()
|
).show()
|
||||||
} else {
|
} else {
|
||||||
processScannedData(result.contents)
|
processScannedData(result.contents)
|
||||||
@@ -51,8 +46,6 @@ class AbhaRegistrationFragment : BaseFragment() {
|
|||||||
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?
|
||||||
): View {
|
): View {
|
||||||
_binding = FragmentAbhaRegistrationBinding.inflate(inflater, container, false)
|
_binding = FragmentAbhaRegistrationBinding.inflate(inflater, container, false)
|
||||||
sharedPreference =
|
|
||||||
requireContext().getSharedPreferences("PREFERENCE_NAME", Context.MODE_PRIVATE)
|
|
||||||
return binding.root
|
return binding.root
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -86,30 +79,22 @@ class AbhaRegistrationFragment : BaseFragment() {
|
|||||||
val userName = binding.etName.text.toString()
|
val userName = binding.etName.text.toString()
|
||||||
val aadharIdInput = binding.aadharID.text.toString()
|
val aadharIdInput = binding.aadharID.text.toString()
|
||||||
val centerName = binding.centerName.text.toString()
|
val centerName = binding.centerName.text.toString()
|
||||||
val currentUnixTime = Instant.now().epochSecond
|
|
||||||
|
|
||||||
if (validateInputs(abhaIdInput, aadharIdInput, userName, centerName)) {
|
if (validateInputs(abhaIdInput, aadharIdInput, userName, centerName)) {
|
||||||
userData.apply {
|
userData.apply {
|
||||||
name = userName.lowercase()
|
name = userName
|
||||||
aadharId = aadharIdInput
|
aadharId = aadharIdInput
|
||||||
abhaId = abhaIdInput
|
abhaId = abhaIdInput
|
||||||
registrationCenterName = centerName
|
registrationCenterName = centerName
|
||||||
// _id = centerName.substring(0, 3).uppercase() + name.substring(0, 4) +
|
_id = aadharId + userName.substring(0, 3).uppercase() + centerName.substring(0, 3).uppercase()
|
||||||
_id = userName.substring(0, 3).uppercase() + generateFourDigitNumber() +centerName.substring(0, 3).uppercase()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
viewModel.insert(userData)
|
viewModel.insert(userData)
|
||||||
Toast.makeText(requireActivity(),"ID"+userData._id,Toast.LENGTH_SHORT).show()
|
|
||||||
navigateToUserDetailsFragment(userData._id)
|
navigateToUserDetailsFragment(userData._id)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private fun generateFourDigitNumber(): String {
|
|
||||||
val random = Random()
|
|
||||||
val number: Int = 1000 + random.nextInt(9000) // Ensures a 4-digit number
|
|
||||||
return number.toString()
|
|
||||||
}
|
|
||||||
|
|
||||||
private fun processScannedData(contents: String) {
|
private fun processScannedData(contents: String) {
|
||||||
try {
|
try {
|
||||||
@@ -149,7 +134,7 @@ class AbhaRegistrationFragment : BaseFragment() {
|
|||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Toast.makeText(
|
Toast.makeText(
|
||||||
requireContext(),
|
requireContext(),
|
||||||
"The QR Code you have scanned is not valid, enter the data manually",
|
R.string.invalid_qr_code,
|
||||||
Toast.LENGTH_SHORT
|
Toast.LENGTH_SHORT
|
||||||
).show()
|
).show()
|
||||||
}
|
}
|
||||||
@@ -159,23 +144,23 @@ class AbhaRegistrationFragment : BaseFragment() {
|
|||||||
private fun saveUserDataAsPerAbhaId() {
|
private fun saveUserDataAsPerAbhaId() {
|
||||||
with(binding) {
|
with(binding) {
|
||||||
tvScanMessage.visibility = View.VISIBLE
|
tvScanMessage.visibility = View.VISIBLE
|
||||||
tvScanMessage.text = "You have scanned the Abha ID, need to enter Aadhar ID manually"
|
tvScanMessage.text = getString(R.string.enter_aadhar_manually)
|
||||||
etAbhaId.setText(userData.abhaId)
|
etAbhaId.setText(userData.abhaId)
|
||||||
etName.setText(userData.name)
|
etName.setText(userData.name)
|
||||||
}
|
}
|
||||||
Toast.makeText(
|
Toast.makeText(
|
||||||
requireContext(), "You have scanned the Abha ID", Toast.LENGTH_SHORT
|
requireContext(), R.string.scanned_abha_id, Toast.LENGTH_SHORT
|
||||||
).show()
|
).show()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun saveUserDataAsPerAadharId() {
|
private fun saveUserDataAsPerAadharId() {
|
||||||
with(binding) {
|
with(binding) {
|
||||||
tvScanMessage.text =
|
tvScanMessage.text =
|
||||||
"You have scanned the Aadhar ID, need to enter Aadhar ID number you have scan and Abha ID manually"
|
getString(R.string.scanned_aadhar_id)
|
||||||
etName.setText(userData.name)
|
etName.setText(userData.name)
|
||||||
}
|
}
|
||||||
Toast.makeText(
|
Toast.makeText(
|
||||||
requireContext(), "You have scanned the Aadhar ID", Toast.LENGTH_SHORT
|
requireContext(), R.string.scanned_aadharid, Toast.LENGTH_SHORT
|
||||||
).show()
|
).show()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -183,20 +168,20 @@ class AbhaRegistrationFragment : BaseFragment() {
|
|||||||
abhaId: String, aadharId: String, userName: String, centerName: String
|
abhaId: String, aadharId: String, userName: String, centerName: String
|
||||||
): Boolean {
|
): Boolean {
|
||||||
with(binding) {
|
with(binding) {
|
||||||
// if (!checkAbhaIDNumber(abhaId)) {
|
if (!checkAbhaIDNumber(abhaId)) {
|
||||||
// etAbhaId.error = "Invalid Abha ID"
|
etAbhaId.error = getString(R.string.invalid_abha_id)
|
||||||
// return false
|
return false
|
||||||
// }
|
}
|
||||||
// if (!checkAadharIDNumber(aadharId)) {
|
if (!checkAadharIDNumber(aadharId)) {
|
||||||
// aadharID.error = "Invalid Aadhar ID"
|
aadharID.error = getString(R.string.invalid_aadhar_id)
|
||||||
// return false
|
return false
|
||||||
// }
|
}
|
||||||
if (!checkUserName(userName)) {
|
if (!checkUserName(userName)) {
|
||||||
etName.error = "Name field can't be empty or less than 3 characters"
|
etName.error = getString(R.string.name_field_error)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
if (!checkCenterName(centerName)) {
|
if (!checkCenterName(centerName)) {
|
||||||
etCenterName.error = "Center name can't be empty or less than 3 characters"
|
etCenterName.error = getString(R.string.center_name_error)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ class ReviewDetailsRegistrationFragment : BaseFragment() {
|
|||||||
} else {
|
} else {
|
||||||
Toast.makeText(
|
Toast.makeText(
|
||||||
requireContext(),
|
requireContext(),
|
||||||
"Internet not available, Data stored in local DB",
|
R.string.internt_not_local,
|
||||||
Toast.LENGTH_SHORT
|
Toast.LENGTH_SHORT
|
||||||
).show()
|
).show()
|
||||||
navigateToUserListFragment()
|
navigateToUserListFragment()
|
||||||
@@ -86,7 +86,7 @@ class ReviewDetailsRegistrationFragment : BaseFragment() {
|
|||||||
if (it == "Success") {
|
if (it == "Success") {
|
||||||
Toast.makeText(
|
Toast.makeText(
|
||||||
requireContext(),
|
requireContext(),
|
||||||
"Registration Done Successfully",
|
R.string.registration_success,
|
||||||
Toast.LENGTH_SHORT
|
Toast.LENGTH_SHORT
|
||||||
).show()
|
).show()
|
||||||
navigateToUserListFragment()
|
navigateToUserListFragment()
|
||||||
@@ -111,7 +111,7 @@ class ReviewDetailsRegistrationFragment : BaseFragment() {
|
|||||||
requireContext().getString(R.string.abha_number, userData.abhaId)
|
requireContext().getString(R.string.abha_number, userData.abhaId)
|
||||||
binding.tvAadharId.text =
|
binding.tvAadharId.text =
|
||||||
requireContext().getString(R.string.aadhar_number_details, userData.aadharId)
|
requireContext().getString(R.string.aadhar_number_details, userData.aadharId)
|
||||||
binding.tvUserName.text = requireContext().getString(R.string.user_name, userData.name.lowercase())
|
binding.tvUserName.text = requireContext().getString(R.string.user_name, userData.name)
|
||||||
binding.tvBirthYear.text =
|
binding.tvBirthYear.text =
|
||||||
requireContext().getString(R.string.birth_year_details, userData.birthYear)
|
requireContext().getString(R.string.birth_year_details, userData.birthYear)
|
||||||
binding.tvGender.text =
|
binding.tvGender.text =
|
||||||
@@ -170,6 +170,13 @@ class ReviewDetailsRegistrationFragment : BaseFragment() {
|
|||||||
R.string.sickle_cell_family_history, userData.sickleCellHistory
|
R.string.sickle_cell_family_history, userData.sickleCellHistory
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val pInfo = requireActivity().packageManager.getPackageInfo(
|
||||||
|
requireActivity().packageName, 0
|
||||||
|
)
|
||||||
|
val version = pInfo.versionName
|
||||||
|
userData.appVersion = version
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import android.view.LayoutInflater
|
|||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import android.widget.Toast
|
import android.widget.Toast
|
||||||
|
import androidx.core.view.isVisible
|
||||||
import androidx.fragment.app.Fragment
|
import androidx.fragment.app.Fragment
|
||||||
import androidx.fragment.app.viewModels
|
import androidx.fragment.app.viewModels
|
||||||
import androidx.navigation.fragment.findNavController
|
import androidx.navigation.fragment.findNavController
|
||||||
@@ -12,6 +13,7 @@ import androidx.navigation.fragment.navArgs
|
|||||||
import com.example.hposregistration.data.user.UserData
|
import com.example.hposregistration.data.user.UserData
|
||||||
import com.example.hposregistration.ui.viewmodels.RegistrationViewModel
|
import com.example.hposregistration.ui.viewmodels.RegistrationViewModel
|
||||||
import dagger.hilt.android.AndroidEntryPoint
|
import dagger.hilt.android.AndroidEntryPoint
|
||||||
|
import `in`.sminnovations.hposregistration.R
|
||||||
import `in`.sminnovations.hposregistration.databinding.FragmentUserDetailsRegistrationBinding
|
import `in`.sminnovations.hposregistration.databinding.FragmentUserDetailsRegistrationBinding
|
||||||
|
|
||||||
|
|
||||||
@@ -42,6 +44,23 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
private fun init() {
|
private fun init() {
|
||||||
setupViewModel()
|
setupViewModel()
|
||||||
setupSubmitButton()
|
setupSubmitButton()
|
||||||
|
|
||||||
|
|
||||||
|
binding.etCategory.setOnItemClickListener { parent, view, position, id ->
|
||||||
|
if (parent.getItemAtPosition(position).toString().equals("OTHER", ignoreCase = true)) {
|
||||||
|
binding.tilOther.visibility = View.VISIBLE
|
||||||
|
} else {
|
||||||
|
binding.tilOther.visibility = View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.etCaste.setOnItemClickListener { parent, view, position, id ->
|
||||||
|
if (parent.getItemAtPosition(position).toString().equals("OTHER", ignoreCase = true)) {
|
||||||
|
binding.tilOthercaste.visibility = View.VISIBLE
|
||||||
|
} else {
|
||||||
|
binding.tilOthercaste.visibility = View.GONE
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun setupViewModel() {
|
private fun setupViewModel() {
|
||||||
@@ -59,24 +78,26 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
when (it) {
|
when (it) {
|
||||||
"Male" -> {
|
"Male" -> {
|
||||||
male.isChecked = true
|
male.isChecked = true
|
||||||
|
binding.tilOthergender.visibility = View.GONE
|
||||||
}
|
}
|
||||||
"Female" -> {
|
"Female" -> {
|
||||||
female.isChecked = true
|
female.isChecked = true
|
||||||
|
binding.tilOthergender.visibility = View.GONE
|
||||||
}
|
}
|
||||||
else -> {
|
else -> {
|
||||||
other.isChecked = true
|
other.isChecked = true
|
||||||
|
binding.tilOthergender.visibility = View.VISIBLE
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
user.phoneNumber.let { etMobile.setText(it) }
|
user.phoneNumber.let { etMobile.setText(it) }
|
||||||
user.careOf.let { etCareof.setText(it) }
|
user.careOf.let { etCareof.setText(it) }
|
||||||
user.maritalStatus.let { etIsMarried.setText(it, false) }
|
user.maritalStatus.let { etIsMarried.setText(it, false) }
|
||||||
user.caste.let { etCaste.setText(it) }
|
|
||||||
user.category.let { etCategory.setText(it, false) }
|
|
||||||
user.subCaste.let { etSubCaste.setText(it) }
|
user.subCaste.let { etSubCaste.setText(it) }
|
||||||
user.house.let { etHouse.setText(it) }
|
user.house.let { etHouse.setText(it) }
|
||||||
user.city.let { etCity.setText(it) }
|
user.city.let { etCity.setText(it) }
|
||||||
user.district.let { etDistrict.setText(it, false) }
|
user.district.let { etDistrict.setText(it) }
|
||||||
|
user.state.let { etState.setText(it) }
|
||||||
user.pinCode.let { etPincode.setText(it) }
|
user.pinCode.let { etPincode.setText(it) }
|
||||||
user.isUnderMedication.let {
|
user.isUnderMedication.let {
|
||||||
if (it != null) {
|
if (it != null) {
|
||||||
@@ -93,6 +114,13 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
yes1history.isChecked = true
|
yes1history.isChecked = true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
user.category.let {
|
||||||
|
etCategory.setText(it, false)
|
||||||
|
}
|
||||||
|
user.caste.let {
|
||||||
|
etCaste.setText(it, false)
|
||||||
|
}
|
||||||
|
|
||||||
if (yes1history.isChecked) {
|
if (yes1history.isChecked) {
|
||||||
if (binding.yes1history.isChecked) View.VISIBLE else View.GONE
|
if (binding.yes1history.isChecked) View.VISIBLE else View.GONE
|
||||||
|
|
||||||
@@ -111,6 +139,35 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
if (binding.no1history.isChecked) View.GONE else View.VISIBLE
|
if (binding.no1history.isChecked) View.GONE else View.VISIBLE
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(other.isChecked){
|
||||||
|
user.gender.let { etOthergender.setText(it) }
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.male.setOnClickListener {
|
||||||
|
binding.tilOthergender.visibility = View.GONE
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.female.setOnClickListener {
|
||||||
|
binding.tilOthergender.visibility = View.GONE
|
||||||
|
}
|
||||||
|
|
||||||
|
binding.other.setOnClickListener {
|
||||||
|
binding.tilOthergender.visibility = View.VISIBLE
|
||||||
|
}
|
||||||
|
|
||||||
|
if (binding.etCategory.text.toString().equals("OTHER", ignoreCase = true)) {
|
||||||
|
binding.tilOther.visibility = View.VISIBLE
|
||||||
|
binding.etOther.visibility = View.VISIBLE
|
||||||
|
} else {
|
||||||
|
binding.tilOther.visibility = View.GONE
|
||||||
|
}
|
||||||
|
|
||||||
|
if (binding.etCaste.text.toString().equals("OTHER", ignoreCase = true)) {
|
||||||
|
binding.tilOthercaste.visibility = View.VISIBLE
|
||||||
|
binding.etOthercaste.visibility = View.VISIBLE
|
||||||
|
} else {
|
||||||
|
binding.tilOthercaste.visibility = View.GONE
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -122,7 +179,7 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
viewModel.insert(userData)
|
viewModel.insert(userData)
|
||||||
navigateToCaptureUserImageFragment()
|
navigateToCaptureUserImageFragment()
|
||||||
} else {
|
} else {
|
||||||
showToast("Please enter all the details properly")
|
showToast(getString(R.string.enter_details_properly))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -136,33 +193,47 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
private fun verifyUserDetails(): Boolean {
|
private fun verifyUserDetails(): Boolean {
|
||||||
with(binding) {
|
with(binding) {
|
||||||
val yob = etYob.text.toString()
|
val yob = etYob.text.toString()
|
||||||
if (yob.isEmpty() || yob.toInt() <= 1900 || yob.toInt() > 2020) {
|
if (yob.isEmpty() || yob.toInt() <= 1900 || yob.toInt() > 2023) {
|
||||||
etYob.error = "Please enter a valid birth year between 1900 and 2020"
|
etYob.error = getString(R.string.enter_valid_birth_year)
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
userData.birthYear = yob
|
userData.birthYear = yob
|
||||||
}
|
}
|
||||||
|
|
||||||
if (male.isChecked) {
|
if (male.isChecked) {
|
||||||
|
binding.tilOthergender.visibility = View.GONE
|
||||||
userData.gender = "Male"
|
userData.gender = "Male"
|
||||||
} else if (female.isChecked) {
|
} else if (female.isChecked) {
|
||||||
|
binding.tilOthergender.visibility = View.GONE
|
||||||
userData.gender = "Female"
|
userData.gender = "Female"
|
||||||
} else {
|
} else if(other.isChecked) {
|
||||||
userData.gender = "Other"
|
binding.tilOthergender.visibility = View.VISIBLE
|
||||||
|
val genderother= binding.etOthergender.text.toString()
|
||||||
|
userData.gender = genderother
|
||||||
|
if (genderother.isEmpty()) {
|
||||||
|
etOthergender.error = getString(R.string.fill_field)
|
||||||
|
return false
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val pInfo = requireActivity().packageManager.getPackageInfo(
|
||||||
|
requireActivity().packageName, 0
|
||||||
|
)
|
||||||
|
val version = pInfo.versionName
|
||||||
|
userData.appVersion = version
|
||||||
|
|
||||||
|
|
||||||
val mobile = etMobile.text.toString()
|
val mobile = etMobile.text.toString()
|
||||||
userData.phoneNumber = mobile
|
if (mobile.isEmpty() || mobile.length != 10) {
|
||||||
// if (mobile.isEmpty() || mobile.length != 10) {
|
etMobile.error = getString(R.string.valid_mobile_number)
|
||||||
// etMobile.error = "Please enter a valid 10-digit mobile number"
|
return false
|
||||||
// return false
|
} else {
|
||||||
// } else {
|
userData.phoneNumber = mobile
|
||||||
// userData.phoneNumber = mobile
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
val careOf = etCareof.text.toString()
|
val careOf = etCareof.text.toString()
|
||||||
if (careOf.isEmpty()) {
|
if (careOf.isEmpty()) {
|
||||||
etCareof.error = "Please enter your name"
|
etCareof.error = getString(R.string.enter_father_husband_name)
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
userData.careOf = careOf
|
userData.careOf = careOf
|
||||||
@@ -170,28 +241,35 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
|
|
||||||
val maritalStatus = etIsMarried.text.toString()
|
val maritalStatus = etIsMarried.text.toString()
|
||||||
if (maritalStatus.isEmpty()) {
|
if (maritalStatus.isEmpty()) {
|
||||||
etIsMarried.error = "Please enter your marital status"
|
etIsMarried.error = getString(R.string.enter_marital_status)
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
userData.maritalStatus = maritalStatus
|
userData.maritalStatus = maritalStatus
|
||||||
}
|
}
|
||||||
|
|
||||||
val category = etCategory.text.toString()
|
val category = etCategory.text.toString()
|
||||||
|
val other = etOther.text.toString()
|
||||||
if (category.isEmpty()) {
|
if (category.isEmpty()) {
|
||||||
etCategory.error = "Please enter your category"
|
etCategory.error = getString(R.string.enter_category)
|
||||||
return false
|
return false
|
||||||
|
} else if (category == "OTHER" && tilOther.isVisible) {
|
||||||
|
userData.category = other
|
||||||
} else {
|
} else {
|
||||||
userData.category = category
|
userData.category = category
|
||||||
}
|
}
|
||||||
|
|
||||||
val caste = etCaste.text.toString()
|
val caste = etCaste.text.toString()
|
||||||
|
val othercaste = etOthercaste.text.toString()
|
||||||
if (caste.isEmpty()) {
|
if (caste.isEmpty()) {
|
||||||
etCaste.error = "Please enter your caste"
|
etCaste.error = getString(R.string.enter_caste)
|
||||||
return false
|
return false
|
||||||
|
} else if (caste == "OTHER" && tilOthercaste.isVisible) {
|
||||||
|
userData.caste = othercaste
|
||||||
} else {
|
} else {
|
||||||
userData.caste = caste
|
userData.caste = caste
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
val subCaste = etSubCaste.text.toString()
|
val subCaste = etSubCaste.text.toString()
|
||||||
if (subCaste.isNotEmpty()) {
|
if (subCaste.isNotEmpty()) {
|
||||||
userData.subCaste = subCaste
|
userData.subCaste = subCaste
|
||||||
@@ -199,7 +277,7 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
|
|
||||||
val house = etHouse.text.toString()
|
val house = etHouse.text.toString()
|
||||||
if (house.isEmpty()) {
|
if (house.isEmpty()) {
|
||||||
etHouse.error = "Please enter your house address"
|
etHouse.error = getString(R.string.enter_house_address)
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
userData.house = house
|
userData.house = house
|
||||||
@@ -207,7 +285,7 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
|
|
||||||
val city = etCity.text.toString()
|
val city = etCity.text.toString()
|
||||||
if (city.isEmpty()) {
|
if (city.isEmpty()) {
|
||||||
etCity.error = "Please enter your city"
|
etCity.error = getString(R.string.enter_city)
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
userData.city = city
|
userData.city = city
|
||||||
@@ -215,7 +293,7 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
|
|
||||||
val district = etDistrict.text.toString()
|
val district = etDistrict.text.toString()
|
||||||
if (district.isEmpty()) {
|
if (district.isEmpty()) {
|
||||||
etDistrict.error = "Please enter your district"
|
etDistrict.error = getString(R.string.enter_district)
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
userData.district = district
|
userData.district = district
|
||||||
@@ -223,7 +301,7 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
|
|
||||||
val state = etState.text.toString()
|
val state = etState.text.toString()
|
||||||
if (state.isEmpty()) {
|
if (state.isEmpty()) {
|
||||||
etState.error = "Please enter your state"
|
etState.error = getString(R.string.enter_state)
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
userData.state = state
|
userData.state = state
|
||||||
@@ -231,7 +309,7 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
|
|
||||||
val pincode = etPincode.text.toString()
|
val pincode = etPincode.text.toString()
|
||||||
if (pincode.isEmpty() || pincode.length != 6) {
|
if (pincode.isEmpty() || pincode.length != 6) {
|
||||||
etPincode.error = "Please enter a valid 6-digit pin code"
|
etPincode.error = getString(R.string.enter_pincode)
|
||||||
return false
|
return false
|
||||||
} else {
|
} else {
|
||||||
userData.pinCode = pincode
|
userData.pinCode = pincode
|
||||||
@@ -244,7 +322,7 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
if (yes1history.isChecked) {
|
if (yes1history.isChecked) {
|
||||||
val familyHistory = etFamilyHistory.text.toString()
|
val familyHistory = etFamilyHistory.text.toString()
|
||||||
if (familyHistory.isEmpty()) {
|
if (familyHistory.isEmpty()) {
|
||||||
etFamilyHistory.error = "Please enter your family history"
|
etFamilyHistory.error = getString(R.string.enter_family_history)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -257,6 +335,8 @@ class UserDetailsRegistrationFragment : Fragment() {
|
|||||||
|
|
||||||
return true
|
return true
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -13,10 +13,6 @@ import com.example.hposregistration.data.user.UserData
|
|||||||
import com.google.firebase.storage.FirebaseStorage
|
import com.google.firebase.storage.FirebaseStorage
|
||||||
import dagger.hilt.android.lifecycle.HiltViewModel
|
import dagger.hilt.android.lifecycle.HiltViewModel
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import java.text.SimpleDateFormat
|
|
||||||
import java.util.Calendar
|
|
||||||
import java.util.Date
|
|
||||||
import java.util.Locale
|
|
||||||
import javax.inject.Inject
|
import javax.inject.Inject
|
||||||
|
|
||||||
@HiltViewModel
|
@HiltViewModel
|
||||||
@@ -67,15 +63,6 @@ class RegistrationViewModel @Inject constructor(
|
|||||||
get() = _networkStatusLiveData
|
get() = _networkStatusLiveData
|
||||||
|
|
||||||
fun insert(userData: UserData) = viewModelScope.launch {
|
fun insert(userData: UserData) = viewModelScope.launch {
|
||||||
val currentDate = Date()
|
|
||||||
val dateFormat = SimpleDateFormat("yyyyMMdd")
|
|
||||||
val partition = dateFormat.format(currentDate)
|
|
||||||
userData._idSearch = partition + userData._id
|
|
||||||
userData.abhaIdSearch = partition + userData.abhaId
|
|
||||||
userData.aadharIdSearch = partition + userData.aadharId
|
|
||||||
userData.createdAt = SimpleDateFormat(
|
|
||||||
"yyyy-MM-dd HH:mm:ss", Locale.getDefault()
|
|
||||||
).format(Calendar.getInstance().time)
|
|
||||||
mainRepository.insert(userData)
|
mainRepository.insert(userData)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
5
app/src/main/res/drawable/baseline_settings_24.xml
Normal file
5
app/src/main/res/drawable/baseline_settings_24.xml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<vector android:height="24dp" android:tint="#000000"
|
||||||
|
android:viewportHeight="24" android:viewportWidth="24"
|
||||||
|
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<path android:fillColor="@android:color/white" android:pathData="M19.14,12.94c0.04,-0.3 0.06,-0.61 0.06,-0.94c0,-0.32 -0.02,-0.64 -0.07,-0.94l2.03,-1.58c0.18,-0.14 0.23,-0.41 0.12,-0.61l-1.92,-3.32c-0.12,-0.22 -0.37,-0.29 -0.59,-0.22l-2.39,0.96c-0.5,-0.38 -1.03,-0.7 -1.62,-0.94L14.4,2.81c-0.04,-0.24 -0.24,-0.41 -0.48,-0.41h-3.84c-0.24,0 -0.43,0.17 -0.47,0.41L9.25,5.35C8.66,5.59 8.12,5.92 7.63,6.29L5.24,5.33c-0.22,-0.08 -0.47,0 -0.59,0.22L2.74,8.87C2.62,9.08 2.66,9.34 2.86,9.48l2.03,1.58C4.84,11.36 4.8,11.69 4.8,12s0.02,0.64 0.07,0.94l-2.03,1.58c-0.18,0.14 -0.23,0.41 -0.12,0.61l1.92,3.32c0.12,0.22 0.37,0.29 0.59,0.22l2.39,-0.96c0.5,0.38 1.03,0.7 1.62,0.94l0.36,2.54c0.05,0.24 0.24,0.41 0.48,0.41h3.84c0.24,0 0.44,-0.17 0.47,-0.41l0.36,-2.54c0.59,-0.24 1.13,-0.56 1.62,-0.94l2.39,0.96c0.22,0.08 0.47,0 0.59,-0.22l1.92,-3.32c0.12,-0.22 0.07,-0.47 -0.12,-0.61L19.14,12.94zM12,15.6c-1.98,0 -3.6,-1.62 -3.6,-3.6s1.62,-3.6 3.6,-3.6s3.6,1.62 3.6,3.6S13.98,15.6 12,15.6z"/>
|
||||||
|
</vector>
|
||||||
@@ -18,7 +18,6 @@
|
|||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_title"
|
android:id="@+id/tv_title"
|
||||||
style="@style/title1"
|
style="@style/title1"
|
||||||
android:visibility="gone"
|
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
@@ -32,7 +31,6 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:text="@string/scan_now"
|
android:text="@string/scan_now"
|
||||||
android:visibility="gone"
|
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
app:backgroundTint="@color/primary_light"
|
app:backgroundTint="@color/primary_light"
|
||||||
app:cornerRadius="100dp"
|
app:cornerRadius="100dp"
|
||||||
@@ -47,7 +45,6 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginTop="24dp"
|
android:layout_marginTop="24dp"
|
||||||
android:visibility="gone"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/btn_scan_now">
|
app:layout_constraintTop_toBottomOf="@id/btn_scan_now">
|
||||||
@@ -96,7 +93,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="24dp"
|
android:layout_marginTop="24dp"
|
||||||
android:text="Enter Details to proceed\n(ABHA and Aadhar are optional)"
|
android:text="@string/enter_abha_number_manualy"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/seperator1" />
|
app:layout_constraintTop_toBottomOf="@id/seperator1" />
|
||||||
|
|
||||||
@@ -114,7 +111,6 @@
|
|||||||
android:id="@+id/et_name"
|
android:id="@+id/et_name"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:maxLength="24"
|
|
||||||
android:hint="@string/person_s_name" />
|
android:hint="@string/person_s_name" />
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
@@ -172,7 +168,6 @@
|
|||||||
android:id="@+id/centerName"
|
android:id="@+id/centerName"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:maxLength="24"
|
|
||||||
android:hint="@string/center_name"
|
android:hint="@string/center_name"
|
||||||
android:inputType="text" />
|
android:inputType="text" />
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
@@ -194,7 +189,6 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:text="@string/proceed"
|
android:text="@string/proceed"
|
||||||
android:textColor="@color/white"
|
|
||||||
app:cornerRadius="16dp"
|
app:cornerRadius="16dp"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
@@ -206,7 +200,6 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginTop="24dp"
|
android:layout_marginTop="24dp"
|
||||||
android:visibility="gone"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/btnProceed">
|
app:layout_constraintTop_toBottomOf="@id/btnProceed">
|
||||||
@@ -253,7 +246,6 @@
|
|||||||
style="@style/title1"
|
style="@style/title1"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:visibility="gone"
|
|
||||||
android:layout_marginTop="24dp"
|
android:layout_marginTop="24dp"
|
||||||
android:text="@string/create_abha_id_card"
|
android:text="@string/create_abha_id_card"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
@@ -262,7 +254,6 @@
|
|||||||
<com.google.android.material.button.MaterialButton
|
<com.google.android.material.button.MaterialButton
|
||||||
android:id="@+id/btn_click_here"
|
android:id="@+id/btn_click_here"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:visibility="gone"
|
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:text="@string/click_here"
|
android:text="@string/click_here"
|
||||||
|
|||||||
@@ -4,7 +4,8 @@
|
|||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:padding="24dp">
|
android:padding="24dp"
|
||||||
|
tools:context=".ui.fragments.registration.CaptureUserImageFragment">
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_title"
|
android:id="@+id/tv_title"
|
||||||
|
|||||||
13
app/src/main/res/layout/fragment_language_settings.xml
Normal file
13
app/src/main/res/layout/fragment_language_settings.xml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
tools:context="com.example.hposregistration.ui.fragments.LanguageSettingsFragment">
|
||||||
|
|
||||||
|
<!-- TODO: Update blank fragment layout -->
|
||||||
|
<TextView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:text="@string/hello_blank_fragment" />
|
||||||
|
|
||||||
|
</FrameLayout>
|
||||||
@@ -138,7 +138,7 @@
|
|||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toBottomOf="parent" />
|
||||||
|
|
||||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||||
|
|
||||||
|
|||||||
@@ -63,7 +63,6 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="10dp"
|
android:layout_marginStart="10dp"
|
||||||
android:checked="true"
|
|
||||||
android:text="@string/male"
|
android:text="@string/male"
|
||||||
android:textSize="16sp" />
|
android:textSize="16sp" />
|
||||||
|
|
||||||
@@ -83,7 +82,8 @@
|
|||||||
</RadioGroup>
|
</RadioGroup>
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/til_mobile"
|
android:visibility="gone"
|
||||||
|
android:id="@+id/til_othergender"
|
||||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
@@ -93,6 +93,28 @@
|
|||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/gender">
|
app:layout_constraintTop_toBottomOf="@id/gender">
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
|
android:id="@+id/et_othergender"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="@string/other"
|
||||||
|
android:inputType="text"
|
||||||
|
android:maxLength="10" />
|
||||||
|
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
|
android:id="@+id/til_mobile"
|
||||||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginHorizontal="24dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/til_othergender">
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
android:id="@+id/et_mobile"
|
android:id="@+id/et_mobile"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
@@ -160,30 +182,74 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:hint="@string/category"
|
android:hint="@string/category"
|
||||||
android:inputType="none"
|
android:inputType="text"
|
||||||
android:labelFor="@id/til_is_married"
|
android:labelFor="@id/til_is_married"
|
||||||
app:simpleItems="@array/category" />
|
app:simpleItems="@array/category" />
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/til_caste"
|
android:visibility="gone"
|
||||||
|
android:id="@+id/til_other"
|
||||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="24dp"
|
android:layout_marginHorizontal="24dp"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="20dp"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/til_category">
|
app:layout_constraintTop_toBottomOf="@id/til_category">
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
|
android:id="@+id/et_other"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="@string/other"
|
||||||
|
android:inputType="text"
|
||||||
|
android:maxLength="10" />
|
||||||
|
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
|
android:id="@+id/til_caste"
|
||||||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginHorizontal="24dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/til_other">
|
||||||
|
|
||||||
|
<AutoCompleteTextView
|
||||||
android:id="@+id/et_Caste"
|
android:id="@+id/et_Caste"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:hint="@string/caste" />
|
android:hint="@string/caste"
|
||||||
|
android:inputType="text"
|
||||||
|
android:labelFor="@id/til_is_married"
|
||||||
|
app:simpleItems="@array/caste" />
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
|
android:visibility="gone"
|
||||||
|
android:id="@+id/til_othercaste"
|
||||||
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginHorizontal="24dp"
|
||||||
|
android:layout_marginTop="20dp"
|
||||||
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@id/til_caste">
|
||||||
|
|
||||||
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
|
android:id="@+id/et_othercaste"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="@string/other"
|
||||||
|
android:inputType="text"
|
||||||
|
android:maxLength="10" />
|
||||||
|
|
||||||
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/til_subCaste"
|
android:id="@+id/til_subCaste"
|
||||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||||
@@ -193,7 +259,7 @@
|
|||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/til_caste">
|
app:layout_constraintTop_toBottomOf="@id/til_othercaste">
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputEditText
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
android:id="@+id/et_subCaste"
|
android:id="@+id/et_subCaste"
|
||||||
@@ -230,7 +296,7 @@
|
|||||||
android:id="@+id/et_house"
|
android:id="@+id/et_house"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:hint="Address" />
|
android:hint="@string/house" />
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
@@ -252,25 +318,23 @@
|
|||||||
android:hint="@string/city_town" />
|
android:hint="@string/city_town" />
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
<com.google.android.material.textfield.TextInputLayout
|
<com.google.android.material.textfield.TextInputLayout
|
||||||
android:id="@+id/til_district"
|
android:id="@+id/til_district"
|
||||||
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu"
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginHorizontal="24dp"
|
android:layout_marginHorizontal="24dp"
|
||||||
android:layout_marginTop="20dp"
|
android:layout_marginTop="16dp"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@id/til_city">
|
app:layout_constraintTop_toBottomOf="@id/til_city">
|
||||||
|
|
||||||
<AutoCompleteTextView
|
<com.google.android.material.textfield.TextInputEditText
|
||||||
android:id="@+id/et_district"
|
android:id="@+id/et_district"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:hint="@string/district"
|
android:hint="@string/district" />
|
||||||
android:inputType="none"
|
|
||||||
android:labelFor="@id/til_district"
|
|
||||||
app:simpleItems="@array/district" />
|
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|
||||||
@@ -289,7 +353,6 @@
|
|||||||
android:id="@+id/et_state"
|
android:id="@+id/et_state"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Karnataka"
|
|
||||||
android:hint="@string/state" />
|
android:hint="@string/state" />
|
||||||
|
|
||||||
</com.google.android.material.textfield.TextInputLayout>
|
</com.google.android.material.textfield.TextInputLayout>
|
||||||
|
|||||||
@@ -16,20 +16,14 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:orientation="vertical">
|
android:orientation="vertical">
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
<ImageView
|
||||||
<TextView
|
android:id="@+id/btnsettings"
|
||||||
android:id="@+id/app_version"
|
android:layout_width="30dp"
|
||||||
style="@style/title2"
|
android:layout_height="30dp"
|
||||||
android:layout_width="57dp"
|
android:layout_marginEnd="10dp"
|
||||||
android:layout_height="15dp"
|
android:src="@drawable/baseline_settings_24"
|
||||||
android:layout_marginTop="4dp"
|
|
||||||
android:gravity="center"
|
|
||||||
android:text="1.0.4"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintHorizontal_bias="0.017"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent" />
|
app:layout_constraintTop_toTopOf="@+id/tv_title" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/tv_title"
|
android:id="@+id/tv_title"
|
||||||
style="@style/title1"
|
style="@style/title1"
|
||||||
@@ -89,15 +83,6 @@
|
|||||||
app:layout_constraintEnd_toStartOf="@+id/uploadData"
|
app:layout_constraintEnd_toStartOf="@+id/uploadData"
|
||||||
app:layout_constraintTop_toTopOf="@+id/tv_title" />
|
app:layout_constraintTop_toTopOf="@+id/tv_title" />
|
||||||
|
|
||||||
<SearchView
|
|
||||||
android:id="@+id/searchUser"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
|
||||||
app:layout_constraintTop_toBottomOf="@+id/tv_title"/>
|
|
||||||
|
|
||||||
|
|
||||||
<androidx.recyclerview.widget.RecyclerView
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
android:id="@+id/rv_order"
|
android:id="@+id/rv_order"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
@@ -106,7 +91,7 @@
|
|||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/searchUser"
|
app:layout_constraintTop_toBottomOf="@+id/tv_title"
|
||||||
tools:listitem="@layout/user_item_view" />
|
tools:listitem="@layout/user_item_view" />
|
||||||
|
|
||||||
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
||||||
|
|||||||
@@ -56,20 +56,6 @@
|
|||||||
app:layout_constraintStart_toEndOf="@+id/userImage"
|
app:layout_constraintStart_toEndOf="@+id/userImage"
|
||||||
app:layout_constraintTop_toBottomOf="@id/userName"
|
app:layout_constraintTop_toBottomOf="@id/userName"
|
||||||
tools:text="UserID: MohamedKaif" />
|
tools:text="UserID: MohamedKaif" />
|
||||||
<TextView
|
|
||||||
android:id="@+id/timeCreated"
|
|
||||||
style="@style/title1_1"
|
|
||||||
android:layout_width="0dp"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_marginStart="16dp"
|
|
||||||
android:layout_marginTop="4dp"
|
|
||||||
android:gravity="start"
|
|
||||||
android:textColor="@color/black"
|
|
||||||
android:textSize="14sp"
|
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
|
||||||
app:layout_constraintStart_toEndOf="@+id/userImage"
|
|
||||||
app:layout_constraintTop_toBottomOf="@id/userId"
|
|
||||||
tools:text="time" />
|
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/teststatus"
|
android:id="@+id/teststatus"
|
||||||
@@ -83,7 +69,7 @@
|
|||||||
android:textSize="14sp"
|
android:textSize="14sp"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintStart_toEndOf="@+id/userImage"
|
app:layout_constraintStart_toEndOf="@+id/userImage"
|
||||||
app:layout_constraintTop_toBottomOf="@id/timeCreated"
|
app:layout_constraintTop_toBottomOf="@id/userId"
|
||||||
tools:text="Test Status: Completed"/>
|
tools:text="Test Status: Completed"/>
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -31,6 +31,9 @@
|
|||||||
app:destination="@id/loginFragment"
|
app:destination="@id/loginFragment"
|
||||||
app:popUpTo="@id/main_nav_graph"
|
app:popUpTo="@id/main_nav_graph"
|
||||||
app:popUpToInclusive="true"/>
|
app:popUpToInclusive="true"/>
|
||||||
|
<action
|
||||||
|
android:id="@+id/action_userListFragment_to_languageSettingsFragment"
|
||||||
|
app:destination="@id/languageSettingsFragment" />
|
||||||
</fragment>
|
</fragment>
|
||||||
<fragment
|
<fragment
|
||||||
android:id="@+id/profileFragment"
|
android:id="@+id/profileFragment"
|
||||||
@@ -93,4 +96,16 @@
|
|||||||
app:popUpTo="@id/main_nav_graph"
|
app:popUpTo="@id/main_nav_graph"
|
||||||
app:popUpToInclusive="true"/>
|
app:popUpToInclusive="true"/>
|
||||||
</fragment>
|
</fragment>
|
||||||
|
<fragment
|
||||||
|
android:id="@+id/languageSettingsFragment"
|
||||||
|
android:name="com.example.hposregistration.ui.fragments.LanguageSettingsFragment"
|
||||||
|
android:label="fragment_language_settings"
|
||||||
|
tools:layout="@layout/fragment_language_settings">
|
||||||
|
|
||||||
|
<action
|
||||||
|
android:id="@+id/action_userListFragment_to_languageSettingsFragment"
|
||||||
|
app:destination="@id/languageSettingsFragment"
|
||||||
|
app:popUpTo="@id/main_nav_graph"
|
||||||
|
app:popUpToInclusive="true"/>
|
||||||
|
</fragment>
|
||||||
</navigation>
|
</navigation>
|
||||||
215
app/src/main/res/values-hi/strings.xml
Normal file
215
app/src/main/res/values-hi/strings.xml
Normal file
@@ -0,0 +1,215 @@
|
|||||||
|
<resources>
|
||||||
|
<string name="app_name">HPOS रजिस्ट्रेशन</string>
|
||||||
|
<!-- TODO: Remove or change this placeholder text -->
|
||||||
|
<string name="hello_blank_fragment">नमस्ते खाली फ़्रेग्मेंट</string>
|
||||||
|
|
||||||
|
<!-- त्रुटि संदेश -->
|
||||||
|
<string name="retry">पुनः प्रयास करें</string>
|
||||||
|
<string name="failed_to_connect">कनेक्ट करने में विफल</string>
|
||||||
|
<string name="cancel">रद्द करें</string>
|
||||||
|
|
||||||
|
<!-- पंजीकरण स्क्रीनें -->
|
||||||
|
<string name="scan_person_abha_id_card">व्यक्ति का ABHA ID/Aadhar ID कार्ड स्कैन करें</string>
|
||||||
|
<string name="scan_now">अब स्कैन करें</string>
|
||||||
|
<string name="or">या</string>
|
||||||
|
<string name="enter_abha_number_manualy">ABHA और Aadhar नंबर दर्ज करें</string>
|
||||||
|
<string name="abha_id">ABHA नंबर</string>
|
||||||
|
<string name="create_abha_id_card">ABHA ID कार्ड बनाएं</string>
|
||||||
|
<string name="click_here">यहां क्लिक करें</string>
|
||||||
|
<string name="scan_person_s_aadhaar_card">व्यक्ति का Aadhaar कार्ड स्कैन करें</string>
|
||||||
|
<string name="proceed">आगे बढ़ें</string>
|
||||||
|
<string name="enter_aadhaar_number_manualy">Aadhaar नंबर मैन्युअली दर्ज करें</string>
|
||||||
|
<string name="aadhaar_number">Aadhaar नंबर</string>
|
||||||
|
<string name="enter_person_s_details">व्यक्ति का विवरण दर्ज करें</string>
|
||||||
|
<string name="person_s_name">व्यक्ति का नाम</string>
|
||||||
|
<string name="age">आयु (वर्षों में)</string>
|
||||||
|
<string name="gender">लिंग चयन करें</string>
|
||||||
|
<string name="name_error">नाम खाली नहीं हो सकता</string>
|
||||||
|
<string name="age_error">आयु खाली नहीं हो सकती</string>
|
||||||
|
<string name="gender_error">लिंग खाली नहीं हो सकता</string>
|
||||||
|
<string name="age_error_out_of_bound">आयु मान्य होनी चाहिए</string>
|
||||||
|
<string name="birth_year">जन्म साल</string>
|
||||||
|
<string name="marital_status">वैवाहिक स्थिति चयन करें</string>
|
||||||
|
<string name="father_s_husband_s_name">पिता/पति का नाम</string>
|
||||||
|
<string name="caste">जाति</string>
|
||||||
|
<string name="person_s_address_details">व्यक्ति का पता विवरण</string>
|
||||||
|
<string name="district">जिला</string>
|
||||||
|
<string name="city_town">शहर / गाँव</string>
|
||||||
|
<string name="state">राज्य</string>
|
||||||
|
<string name="pincode">पिनकोड</string>
|
||||||
|
<string name="patient_medical_records">रोगी का चिकित्सा रेकॉर्ड</string>
|
||||||
|
<string name="review">समीक्षा</string>
|
||||||
|
<string name="blood_group">रक्त समूह चयन करें</string>
|
||||||
|
<string name="house">घर</string>
|
||||||
|
<string name="is_patient_under_any_medication">क्या आप पिछले तीन महीनों से सिक्ल सेल के लिए दवा ले रहे हैं?</string>
|
||||||
|
<string name="is_patient_undergoing_any_blood_transfusion">क्या आपने पिछले तीन महीनों में कोई रक्त प्रवाहन किया है?</string>
|
||||||
|
|
||||||
|
<string name="user_list">उपयोगकर्ता सूची</string>
|
||||||
|
<string name="register_user">उपयोगकर्ता पंजीकृत करें</string>
|
||||||
|
<string name="is_user_having_any_family_history_for_sickle_cell">क्या उपयोगकर्ता के पास सिक्ल सेल के लिए कोई परिवार का इतिहास है?</string>
|
||||||
|
<string name="family_history_of_sickle_cell">सिक्ल सेल का परिवारिक इतिहास</string>
|
||||||
|
<string name="mobile_number_10_digits">मोबाइल नंबर (10 अंक)</string>
|
||||||
|
<string name="sub_caste">उपजाति</string>
|
||||||
|
<string name="capture_user_image">उपयोगकर्ता की छवि कैद करें</string>
|
||||||
|
<string name="mobile_number">मोबाइल नंबर</string>
|
||||||
|
<string name="edit">संपादित करें</string>
|
||||||
|
<string name="user_details">उपयोगकर्ता विवरण</string>
|
||||||
|
<string name="internet_is_not_available_and_there_is_no_data_available_in_local_db">इंटरनेट उपलब्ध नहीं है और स्थानीय डेटाबेस में कोई डेटा उपलब्ध नहीं है</string>
|
||||||
|
<string name="user_id">उपयोगकर्ता आईडी: %1$s</string>
|
||||||
|
<string name="abha_number">ABHA नंबर: %1$s</string>
|
||||||
|
<string name="aadhar_number_details">Aadhar नंबर: %1$s</string>
|
||||||
|
<string name="user_name">व्यक्ति का नाम: %1$s</string>
|
||||||
|
<string name="birth_year_details">जन्म साल: %1$s</string>
|
||||||
|
<string name="gender_details">लिंग: %1$s</string>
|
||||||
|
<string name="phone_number_details">मोबाइल नंबर: %1$s</string>
|
||||||
|
<string name="care_of_details">पिता/पति का नाम: %1$s</string>
|
||||||
|
<string name="marital_status_details">वैवाहिक स्थिति: %1$s</string>
|
||||||
|
<string name="category_details">श्रेणी: %1$s</string>
|
||||||
|
<string name="caste_details">जाति: %1$s</string>
|
||||||
|
<string name="sub_caste_details">उपजाति: %1$s</string>
|
||||||
|
<string name="house_details">घर: %1$s</string>
|
||||||
|
<string name="city_town_details">शहर/गाँव: %1$s</string>
|
||||||
|
<string name="district_details">जिला: %1$s</string>
|
||||||
|
<string name="state_details">राज्य: %1$s</string>
|
||||||
|
<string name="centre_name">केंद्र का नाम: %1$s</string>
|
||||||
|
|
||||||
|
<string name="pincode_details">पिनकोड: %1$s</string>
|
||||||
|
<string name="is_patient_under_any_medication_details">क्या दवा ले रहे हैं: %1$s</string>
|
||||||
|
<string name="is_patient_undergoing_any_blood_transfusion_details">क्या रक्त प्रवाहन हो रहा है: %1$s</string>
|
||||||
|
<string name="is_any_sickle">क्या कोई सिक्ल सेल इतिहास है: %1$s</string>
|
||||||
|
<string name="sickle_cell_family_history">सिक्ल सेल परिवारिक इतिहास: %1$s</string>
|
||||||
|
<string name="center_name">केंद्र का नाम</string>
|
||||||
|
<string name="login_id">लॉगिन आईडी</string>
|
||||||
|
<string name="password">पासवर्ड</string>
|
||||||
|
<string name="login">लॉगिन</string>
|
||||||
|
<string name="_2">श्रेणी</string>
|
||||||
|
<string name="category">श्रेणी</string>
|
||||||
|
<string name="male">पुरुष</string>
|
||||||
|
<string name="female">महिला</string>
|
||||||
|
<string name="other">अन्य</string>
|
||||||
|
<string name="cancelled_unable_scan">रद्द किया गया: स्कैन करने में असमर्थ, पुनः प्रयास करें!!</string>
|
||||||
|
<string name="scan_abha_card">कृपया एबीए आईडी / आधार आईडी स्कैन करें</string>
|
||||||
|
<string name="invalid_qr_code">आपने स्कैन किया हुआ QR कोड अमान्य है, कृपया डेटा मैन्युअली दर्ज करें</string>
|
||||||
|
<string name="enter_aadhar_manually">आपने एबीए आईडी स्कैन किया है, आधार आईडी को मैन्युअली दर्ज करने की आवश्यकता है</string>
|
||||||
|
<string name="invalid_abha_id">अमान्य एबीए आईडी</string>
|
||||||
|
<string name="invalid_aadhar_id">अमान्य आधार आईडी</string>
|
||||||
|
<string name="name_field_error">नाम फील्ड खाली नहीं हो सकती या 3 अक्षरों से कम होनी चाहिए</string>
|
||||||
|
<string name="center_name_error">केंद्र का नाम खाली नहीं हो सकता या 3 अक्षरों से कम होना चाहिए</string>
|
||||||
|
<string name="registration_success">पंजीकरण सफलतापूर्वक हुआ</string>
|
||||||
|
<string name="internt_not_local">इंटरनेट उपलब्ध नहीं है, परीक्षण विवरण स्थानीय रूप से संग्रहित किए गए हैं</string>
|
||||||
|
<string name="enter_details_properly">कृपया सभी विवरणों को ठीक से दर्ज करें</string>
|
||||||
|
<string name="enter_valid_birth_year">कृपया 1900 से 2023 के बीच एक मान्य जन्म वर्ष दर्ज करें</string>
|
||||||
|
<string name="fill_field">कृपया फ़ील्ड भरें</string>
|
||||||
|
<string name="valid_mobile_number">कृपया एक मान्य 10-अंकों का मोबाइल नंबर दर्ज करें</string>
|
||||||
|
<string name="enter_name">कृपया अपना नाम दर्ज करें</string>
|
||||||
|
<string name="enter_marital_status">कृपया अपनी वैवाहिक स्थिति दर्ज करें</string>
|
||||||
|
<string name="enter_category">कृपया अपनी श्रेणी दर्ज करें</string>
|
||||||
|
<string name="enter_caste">कृपया अपनी जाति दर्ज करें</string>
|
||||||
|
<string name="enter_house_address">कृपया अपना घर का पता दर्ज करें</string>
|
||||||
|
<string name="enter_city">कृपया अपने शहर को दर्ज करें</string>
|
||||||
|
<string name="enter_district">कृपया अपने जिले को दर्ज करें</string>
|
||||||
|
<string name="enter_state">कृपया अपने राज्य को दर्ज करें</string>
|
||||||
|
<string name="enter_pincode">कृपया एक मान्य 6-अंकों कोड दर्ज करें</string>
|
||||||
|
<string name="enter_family_history">कृपया अपना परिवार का इतिहास दर्ज करें</string>
|
||||||
|
<string name="enter_guardian_name">कृपया अपने पालक का नाम दर्ज करें</string>
|
||||||
|
<string name="enter_father_husband_name">पिता / पति का नाम दर्ज करें</string>
|
||||||
|
<string name="do_log_out">क्या आप ऐप्लिकेशन से लॉग आउट करना चाहते हैं?</string>
|
||||||
|
<string name="log_out">लॉग आउट</string>
|
||||||
|
|
||||||
|
<string name="upload_db_registration">डीबी पंजीकरण अपलोड करें</string>
|
||||||
|
<string name="upload_local_db_to_cloud">क्या आप स्थानीय डीबी को क्लाउड पर अपलोड करना चाहते हैं?</string>
|
||||||
|
<string name="upload">अपलोड</string>
|
||||||
|
<string name="upload_done_successfully">अपलोड सफलतापूर्वक हुआ</string>
|
||||||
|
|
||||||
|
<string name="enter_proper_login_id">कृपया सही लॉगिन आईडी दर्ज करें</string>
|
||||||
|
<string name="enter_proper_password">कृपया सही पासवर्ड दर्ज करें</string>
|
||||||
|
<string name="wrong_password">गलत पासवर्ड</string>
|
||||||
|
<string name="wrong_user_id">गलत उपयोगकर्ता आईडी</string>
|
||||||
|
<string name="scanned_aadhar_id">आपने आधार आईडी स्कैन की है, कृपया आधार आईडी नंबर और अभा आईडी को मैन्युअली दर्ज करें</string>
|
||||||
|
<string name="scanned_abha_id">आपने आभा आईडी स्कैन की है</string>
|
||||||
|
<string name="scanned_aadharid">आपने आधार आईडी स्कैन की है</string>
|
||||||
|
<string name="language_update">भाषा सफलतापूर्वक अपडेट की गई है</string>
|
||||||
|
<string name="select_language">अपनी पसंदीदा भाषा का चयन करें</string>
|
||||||
|
<string name="app_language">ऐप भाषा</string>
|
||||||
|
<string name="add_blood_group">रक्त समूह जोड़ें</string>
|
||||||
|
<string name="ok">ठीक है</string>
|
||||||
|
<string name="userid">उपयोगकर्ता आईडी</string>
|
||||||
|
|
||||||
|
<string name="yes">हाँ</string>
|
||||||
|
<string name="no">नहीं</string>
|
||||||
|
<string name="name">नाम</string>
|
||||||
|
<string-array name="category">
|
||||||
|
<item>NT-A</item>
|
||||||
|
<item>NT-B</item>
|
||||||
|
<item>NT-C</item>
|
||||||
|
<item>NT-D</item>
|
||||||
|
<item>OBC</item>
|
||||||
|
<item>OPEN</item>
|
||||||
|
<item>OTHER</item>
|
||||||
|
<item>SBC</item>
|
||||||
|
<item>SC</item>
|
||||||
|
<item>ST</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<string-array name="caste">
|
||||||
|
<item>अहीर</item>
|
||||||
|
<item>बराई</item>
|
||||||
|
<item>ब्राह्मण</item>
|
||||||
|
<item>बौद्ध</item>
|
||||||
|
<item>चांब़चार</item>
|
||||||
|
<item>चामार</item>
|
||||||
|
<item>देवांगन</item>
|
||||||
|
<item>धीवर</item>
|
||||||
|
<item>फुलमाली</item>
|
||||||
|
<item>गोंड</item>
|
||||||
|
<item>जैन</item>
|
||||||
|
<item>कोली</item>
|
||||||
|
<item>कोष्टी</item>
|
||||||
|
<item>कुंभार</item>
|
||||||
|
<item>कुंबी</item>
|
||||||
|
<item>लोहार</item>
|
||||||
|
<item>माळी</item>
|
||||||
|
<item>माणा</item>
|
||||||
|
<item>महार</item>
|
||||||
|
<item>मौर्या</item>
|
||||||
|
<item>मुसलमान</item>
|
||||||
|
<item>नवी</item>
|
||||||
|
<item>अन्य</item>
|
||||||
|
<item>पवार</item>
|
||||||
|
<item>परदेसी</item>
|
||||||
|
<item>शाहू</item>
|
||||||
|
<item>सोनार</item>
|
||||||
|
<item>तेली</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
|
||||||
|
<string-array name="marital_status">
|
||||||
|
<item>विवाहित</item>
|
||||||
|
<item>एकत्र</item>
|
||||||
|
<item>तलाकशुदा</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
|
||||||
|
<string-array name="blood_group">
|
||||||
|
<item>O+ve</item>
|
||||||
|
<item>O-ve</item>
|
||||||
|
<item>A+ve</item>
|
||||||
|
<item>A-ve</item>
|
||||||
|
<item>B+ve</item>
|
||||||
|
<item>B-ve</item>
|
||||||
|
<item>AB+ve</item>
|
||||||
|
<item>AB-ve</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<string-array name="gender">
|
||||||
|
<item>पुरुष</item>
|
||||||
|
<item>महिला</item>
|
||||||
|
<item>अन्य</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<string-array name="yes_no">
|
||||||
|
<item>हाँ</item>
|
||||||
|
<item>नहीं</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
</resources>
|
||||||
218
app/src/main/res/values-kn/strings.xml
Normal file
218
app/src/main/res/values-kn/strings.xml
Normal file
@@ -0,0 +1,218 @@
|
|||||||
|
<resources>
|
||||||
|
<string name="app_name">HPOS ನೋಂದಾಯಿಸಲು</string>
|
||||||
|
<string name="hello_blank_fragment">ಹಲೋ ಖಾಲಿ ಫ್ರ್ಯಾಗ್ಮೆಂಟ್</string>
|
||||||
|
|
||||||
|
// ದೋಷ ಸಂದೇಶಗಳು
|
||||||
|
<string name="retry">ಮರುಪ್ರಯಾಸ</string>
|
||||||
|
<string name="failed_to_connect">ಸಂಪರ್ಕ ಸಾಧಿಸಲಾಗಿಲ್ಲ</string>
|
||||||
|
<string name="cancel">ರದ್ದು ಮಾಡಿ</string>
|
||||||
|
|
||||||
|
|
||||||
|
//Registration Screens
|
||||||
|
<string name="scan_person_abha_id_card">ವ್ಯಕ್ತಿಯ ಏಬಿಎ ಐಡಿ / ಆಧಾರ್ ಐಡಿ ಕಾರ್ಡ್ ಸ್ಕ್ಯಾನ್ ಮಾಡಿ</string>
|
||||||
|
<string name="scan_now">ಈಗ ಸ್ಕ್ಯಾನ್ ಮಾಡಿ</string>
|
||||||
|
<string name="or">ಅಥವಾ</string>
|
||||||
|
<string name="enter_abha_number_manualy">ಏಬಿಎ ಮತ್ತು ಆಧಾರ್ ಸಂಖ್ಯೆಗಳನ್ನು ಕೈಮಾಡಿ</string>
|
||||||
|
<string name="abha_id">ಏಬಿಎ ಸಂಖ್ಯೆ</string>
|
||||||
|
<string name="create_abha_id_card">ಏಬಿಎ ಐಡಿ ಕಾರ್ಡ್ ರಚಿಸಿ</string>
|
||||||
|
<string name="click_here">ಇಲ್ಲಿ ಕ್ಲಿಕ್ ಮಾಡಿ</string>
|
||||||
|
<string name="scan_person_s_aadhaar_card">ವ್ಯಕ್ತಿಯ ಆಧಾರ್ ಕಾರ್ಡ್ ಸ್ಕ್ಯಾನ್ ಮಾಡಿ</string>
|
||||||
|
<string name="proceed">ಮುಂದುವರಿಸಿ</string>
|
||||||
|
<string name="enter_aadhaar_number_manualy">ಆಧಾರ್ ಸಂಖ್ಯೆಯನ್ನು ಕೈಮಾಡಿ</string>
|
||||||
|
<string name="aadhaar_number">ಆಧಾರ್ ಸಂಖ್ಯೆ</string>
|
||||||
|
<string name="enter_person_s_details">ವ್ಯಕ್ತಿಯ ವಿವರಗಳನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="person_s_name">ವ್ಯಕ್ತಿಯ ಹೆಸರು</string>
|
||||||
|
<string name="age">ವಯಸ್ಸು ವರ್ಷಗಳಲ್ಲಿ</string>
|
||||||
|
<string name="gender">ಲಿಂಗ ಆಯ್ಕೆ ಮಾಡಿ</string>
|
||||||
|
<string name="name_error">ಹೆಸರು ಖಾಲಿ ಇರಬಾರದು</string>
|
||||||
|
<string name="age_error">ವಯಸ್ಸು ಖಾಲಿ ಇರಬಾರದು</string>
|
||||||
|
<string name="gender_error">ಲಿಂಗ ಖಾಲಿ ಇರಬಾರದು</string>
|
||||||
|
<string name="age_error_out_of_bound">ವಯಸ್ಸು ಯೋಗ್ಯವಾಗಿರಬೇಕು</string>
|
||||||
|
<string name="birth_year">ಹುಟ್ಟಿದ ವರ್ಷ</string>
|
||||||
|
<string name="marital_status">ವೈವಾಹಿಕ ಸ್ಥಿತಿ ಆಯ್ಕೆ ಮಾಡಿ</string>
|
||||||
|
<string name="father_s_husband_s_name">ತಂದೆಯ / ಗಂಡನ ಹೆಸರು</string>
|
||||||
|
<string name="caste">ಜಾತಿ</string>
|
||||||
|
<string name="person_s_address_details">ವ್ಯಕ್ತಿಯ ವಿಳಾಸ ವಿವರಗಳು</string>
|
||||||
|
<string name="district">ಜಿಲ್ಲೆ</string>
|
||||||
|
<string name="city_town">ನಗರ / ಹಳ್ಳಿ</string>
|
||||||
|
<string name="state">ರಾಜ್ಯ</string>
|
||||||
|
<string name="pincode">ಪಿನ್ಕೋಡ್</string>
|
||||||
|
<string name="patient_medical_records">ರೋಗಿಯ ವೈದ್ಯಕೀಯ ದಾಖಲೆಗಳು</string>
|
||||||
|
<string name="review">ಸಮೀಕ್ಷಿಸಿ</string>
|
||||||
|
<string name="blood_group">ರಕ್ತ ಗುಂಪು ಆಯ್ಕೆ ಮಾಡಿ</string>
|
||||||
|
<string name="house">ಮನೆ</string>
|
||||||
|
<string name="is_patient_under_any_medication">ಹಳೆಯ ಮೂಲಕ ಸಿಕ್ಕಲ್ ಸೆಲ್ ಗೆ ನೀವು ಔಷಧಿಗೆ ಒಳಪಟ್ಟಿದ್ದೀರಾ?</string>
|
||||||
|
<string name="is_patient_undergoing_any_blood_transfusion">ಹಳೆಯ ಮೂಲಕ ರಕ್ತ ಸಂಚಾರ ನಡೆಸಲಾಗಿದೆಯೇ?</string>
|
||||||
|
|
||||||
|
|
||||||
|
<string name="user_list">ಬಳಕೆದಾರ ಪಟ್ಟಿ</string>
|
||||||
|
<string name="register_user">ಬಳಕೆದಾರ ನೋಂದಣಿ</string>
|
||||||
|
<string name="is_user_having_any_family_history_for_sickle_cell">ಬಳಕೆದಾರನಿಗೆ ಸಿಕ್ಕಲ್ ಸೆಲ್ ಕುಟುಂಬ ಇತಿಹಾಸವಿದೆಯೇ</string>
|
||||||
|
<string name="family_history_of_sickle_cell">ಸಿಕ್ಕಲ್ ಸೆಲ್ ಕುಟುಂಬ ಇತಿಹಾಸ</string>
|
||||||
|
<string name="mobile_number_10_digits">ಮೊಬೈಲ್ ಸಂಖ್ಯೆ (10 ಅಂಕಗಳು)</string>
|
||||||
|
<string name="sub_caste">ಉಪ ಜಾತಿ</string>
|
||||||
|
<string name="capture_user_image">ಬಳಕೆದಾರ ಚಿತ್ರ ಹಿಡಿಯಿರಿ</string>
|
||||||
|
<string name="mobile_number">ಮೊಬೈಲ್ ಸಂಖ್ಯೆ</string>
|
||||||
|
<string name="edit">ಸಂಪಾದಿಸಿ</string>
|
||||||
|
<string name="user_details">ಬಳಕೆದಾರ ವಿವರಗಳು</string>
|
||||||
|
<string name="internet_is_not_available_and_there_is_no_data_available_in_local_db">ಇಂಟರ್ನೆಟ್ ಲಭ್ಯವಿಲ್ಲ ಮತ್ತು ಸ್ಥಳಿಯ ಡಿಬಿಯಲ್ಲಿ ಯಾವುದೇ ಡೇಟಾ ಲಭ್ಯವಿಲ್ಲ</string>
|
||||||
|
<string name="user_id">ಬಳಕೆದಾರ ಐಡಿ: %1$s</string>
|
||||||
|
<string name="abha_number">ಆಭಾ ಸಂಖ್ಯೆ: %1$s</string>
|
||||||
|
<string name="aadhar_number_details">ಆಧಾರ ಸಂಖ್ಯೆ: %1$s</string>
|
||||||
|
<string name="user_name">ವ್ಯಕ್ತಿಯ ಹೆಸರು: %1$s</string>
|
||||||
|
<string name="birth_year_details">ಹುಟ್ಟಿದ ವರ್ಷ: %1$s</string>
|
||||||
|
<string name="gender_details">ಲಿಂಗ: %1$s</string>
|
||||||
|
<string name="phone_number_details">ಮೊಬೈಲ್ ಸಂಖ್ಯೆ: %1$s</string>
|
||||||
|
<string name="care_of_details">ತಂದೆಯ / ಗಂಡನ ಹೆಸರು: %1$s</string>
|
||||||
|
<string name="marital_status_details">ವೈವಾಹಿಕ ಸ್ಥಿತಿ: %1$s</string>
|
||||||
|
<string name="category_details">ವರ್ಗ: %1$s</string>
|
||||||
|
<string name="caste_details">ಜಾತಿ: %1$s</string>
|
||||||
|
<string name="sub_caste_details">ಉಪ ಜಾತಿ: %1$s</string>
|
||||||
|
<string name="house_details">ಮನೆ: %1$s</string>
|
||||||
|
<string name="city_town_details">ನಗರ / ಹಳ್ಳಿ: %1$s</string>
|
||||||
|
<string name="district_details">ಜಿಲ್ಲೆ: %1$s</string>
|
||||||
|
<string name="state_details">ರಾಜ್ಯ: %1$s</string>
|
||||||
|
<string name="centre_name">ಕೇಂದ್ರ ಹೆಸರು: %1$s</string>
|
||||||
|
|
||||||
|
|
||||||
|
<string name="pincode_details">ಪಿನ್ಕೋಡ್: %1$s</string>
|
||||||
|
<string name="is_patient_under_any_medication_details">ಔಷಧಿಗಳ ಕೆಳಗೆ ಇದ್ದಾರೆ: %1$s</string>
|
||||||
|
<string name="is_patient_undergoing_any_blood_transfusion_details">ರಕ್ತ ಸಂರಚನೆಯಲ್ಲಿ ಇದ್ದಾರೆ: %1$s</string>
|
||||||
|
<string name="is_any_sickle">ಯಾವುದೇ ಸಿಕ್ಕಲ್ ಸೆಲ್ ಇತಿಹಾಸವಿದೆಯೇ: %1$s</string>
|
||||||
|
<string name="sickle_cell_family_history">ಸಿಕ್ಕಲ್ ಸೆಲ್ ಕುಟುಂಬ ಇತಿಹಾಸ: %1$s</string>
|
||||||
|
<string name="center_name">ಕೇಂದ್ರ ಹೆಸರು</string>
|
||||||
|
<string name="login_id">ಲಾಗಿನ್ ಐಡಿ</string>
|
||||||
|
<string name="password">ಪಾಸ್ವರ್ಡ್</string>
|
||||||
|
<string name="login">ಲಾಗಿನ್</string>
|
||||||
|
<string name="_2">ವರ್ಗ</string>
|
||||||
|
<string name="category">ವರ್ಗ</string>
|
||||||
|
<string name="male">ಗಂಡು</string>
|
||||||
|
<string name="female">ಹೆಣ್ಣು</string>
|
||||||
|
<string name="other">ಇತರ</string>
|
||||||
|
|
||||||
|
|
||||||
|
<string name="cancelled_unable_scan">ರದ್ದು ಮಾಡಲಾಗಿದೆ: ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ಸಾಧ್ಯವಿಲ್ಲ, ಮತ್ತೊಮ್ಮೆ ಪ್ರಯಾಸಿಸಿ!!</string>
|
||||||
|
<string name="scan_abha_card">ದಯವಿಟ್ಟು ಆಭಾ ಐಡಿ / ಆಧಾರ್ ಐಡಿ ಸ್ಕ್ಯಾನ್ ಮಾಡಿ</string>
|
||||||
|
<string name="invalid_qr_code">ನೀವು ಸ್ಕ್ಯಾನ್ ಮಾಡಿದ QR ಕೋಡ್ ಮಾನ್ಯವಿಲ್ಲ, ದಯವಿಟ್ಟು ಮಾಹಿತಿಯನ್ನು ಕೈಮಾಡಿ ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_aadhar_manually">ನೀವು ಅಬ ಹಾ ಐಡಿ ಸ್ಕ್ಯಾನ್ ಮಾಡಿದ್ದೀರಿ, ಆಧಾರ್ ಐಡಿ ಅನ್ನು ಕೈಮಾತ್ರ ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="invalid_abha_id">ಅಮಾನ್ಯವಾದ ಅಬ ಹಾ ಐಡಿ</string>
|
||||||
|
<string name="invalid_aadhar_id">ಅಮಾನ್ಯವಾದ ಆಧಾರ್ ಐಡಿ</string>
|
||||||
|
<string name="name_field_error">ಹೆಸರು ಕ್ಷೇತ್ರವು ಖಾಲಿ ಇರಲಾರದು ಅಥವಾ 3 ಅಕ್ಷರಗಳಿಂದ ಕಡಿಮೆ ಇರಲಾರದು</string>
|
||||||
|
<string name="center_name_error">ಕೇಂದ್ರದ ಹೆಸರು ಖಾಲಿ ಇರಲಾರದು ಅಥವಾ 3 ಅಕ್ಷರಗಳಿಂದ ಕಡಿಮೆ ಇರಲಾರದು</string>
|
||||||
|
<string name="registration_success">ಯಶಸ್ವಿಯಾಗಿ ನೋಂದಾಯಿಸಲಾಗಿದೆ</string>
|
||||||
|
<string name="internt_not_local">ಇಂಟರ್ನೆಟ್ ಲಭ್ಯವಿಲ್ಲ, ಪರೀಕ್ಷೆ ವಿವರಗಳನ್ನು ಸ್ಥಾನಿಕವಾಗಿ ಉಳಿಸಲಾಗಿದೆ</string>
|
||||||
|
<string name="enter_details_properly">ದಯವಿಟ್ಟು ಎಲ್ಲಾ ವಿವರಗಳನ್ನು ಸರಿಯಾಗಿ ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_valid_birth_year">ದಯವಿಟ್ಟು 1900 ಮತ್ತು 2023 ನ ನಡುವೆ ಒಂದು ವಾಸಿಸುವ ತಾರೀಖು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="fill_field">ದಯವಿಟ್ಟು ಕ್ಷೇತ್ರವನ್ನು ನಿರೂಪಿಸಿ</string>
|
||||||
|
<string name="valid_mobile_number">ದಯವಿಟ್ಟು ಒಂದು ಮಾನ್ಯವಾದ 10 ಅಂಕದ ಮೊಬೈಲ್ ಸಂಖ್ಯೆಯನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_name">ದಯವಿಟ್ಟು ನಿಮ್ಮ ಹೆಸರನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_marital_status">ದಯವಿಟ್ಟು ನಿಮ್ಮ ವೈವಾಹಿಕ ಸ್ಥಿತಿಯನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_category">ದಯವಿಟ್ಟು ನಿಮ್ಮ ವರ್ಗವನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_caste">ದಯವಿಟ್ಟು ನಿಮ್ಮ ಜಾತಿಯನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_house_address">ದಯವಿಟ್ಟು ನಿಮ್ಮ ಮನೆಯ ವಿಳಾಸವನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_city">ದಯವಿಟ್ಟು ನಿಮ್ಮ ನಗರವನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_district">ದಯವಿಟ್ಟು ನಿಮ್ಮ ಜಿಲ್ಲೆಯನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_state">ದಯವಿಟ್ಟು ನಿಮ್ಮ ರಾಜ್ಯವನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_pincode">ದಯವಿಟ್ಟು ಒಂದು ಮಾನ್ಯ ಆರು-ಅಂಕ ಪಿನ್ಕೋಡ್ ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_family_history">ದಯವಿಟ್ಟು ನಿಮ್ಮ ಕುಟುಂಬದ ಇತಿಹಾಸವನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_guardian_name">ದಯವಿಟ್ಟು ನಿಮ್ಮ ಅಭಿಭಾವಕರ ಹೆಸರನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_father_husband_name">ದಯವಿಟ್ಟು ನಿಮ್ಮ ತಂದೆ / ಗಂಡನ ಹೆಸರನ್ನು ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="do_log_out">ನೀವು ಅಪ್ಲಿಕೇಶನ್ ನಿಂದ ಲಾಗೌಟ್ ಮಾಡಲು ಇಚ್ಛಿಸುತ್ತೀರಾ?</string>
|
||||||
|
<string name="log_out">ಲಾಗೌಟ್</string>
|
||||||
|
|
||||||
|
<string name="upload_db_registration">ಡಿಬಿ ನೋಂದಾಯಿಸುವ ಕೊರಕು</string>
|
||||||
|
<string name="upload_local_db_to_cloud">ನೀವು ಲೋಕಲ್ ಡಿಬಿ ನೋಂದಾಯಿಸನ್ನು ಮೇಘಮಾರ್ಗಕ್ಕೆ ಅಪ್ಲೋಡ್ ಮಾಡಲು ಇಚ್ಛಿಸುವಿರಾ?</string>
|
||||||
|
<string name="upload">ಅಪ್ಲೋಡ್</string>
|
||||||
|
<string name="upload_done_successfully">ಅಪ್ಲೋಡ್ ಯಶಸ್ವಿಯಾಗಿ ನಡೆಯಿತು</string>
|
||||||
|
<string name="enter_proper_login_id">ದಯವಿಟ್ಟು ಸರಿಯಾದ ಲಾಗಿನ್ ಐಡಿ ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="enter_proper_password">ದಯವಿಟ್ಟು ಸರಿಯಾದ ಪಾಸ್ವರ್ಡ್ ನಮೂದಿಸಿ</string>
|
||||||
|
<string name="wrong_password">ತಪ್ಪಾದ ಪಾಸ್ವರ್ಡ್</string>
|
||||||
|
<string name="wrong_user_id">ತಪ್ಪಾದ ಬಳಕೆದಾರ ಐಡಿ</string>
|
||||||
|
<string name="scanned_aadhar_id">ನೀವು ಆಧಾರ್ ಐಡನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿದ್ದೀರಿ, ದಯವಿಟ್ಟು ಆಧಾರ್ ಐಡನ್ನು ನೀವು ಸ್ಕ್ಯಾನ್ ಮಾಡಿದ ಮತ್ತು ಅಭಾ ಐಡನ್ನು ಕೈಯಾರೆ ನಮೂದಿಸಿ</string>
|
||||||
|
|
||||||
|
<string name="scanned_abha_id">ನೀವು ಅಭಾ ಐಡನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿದಿರಿ</string>
|
||||||
|
<string name="scanned_aadharid">ನೀವು ಆಧಾರ್ ಐಡನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿದಿರಿ</string>
|
||||||
|
<string name="language_update">ಭಾಷೆ ಯಶಸ್ವಿಯಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ</string>
|
||||||
|
<string name="select_language">ನಿಮ್ಮ ಆದರಿತ ಭಾಷೆಯನ್ನು ಆಯ್ಕೆ ಮಾಡಿ</string>
|
||||||
|
<string name="app_language">ಅಪ್ಲಿಕೇಶನ್ ಭಾಷೆ</string>
|
||||||
|
<string name="add_blood_group">ರಕ್ತ ಗುಂಡನ್ನು ಸೇರಿಸಿ</string>
|
||||||
|
<string name="userid">ಬಳಕೆದಾರ ಐಡಿ</string>
|
||||||
|
<string name="ok">ಸರಿ</string>
|
||||||
|
<string name="yes">ಹೌದು</string>
|
||||||
|
<string name="no">ಇಲ್ಲ</string>
|
||||||
|
<string name="name">ಹೆಸರು</string>
|
||||||
|
<string-array name="yes_no">
|
||||||
|
<item>ಹೌದು</item>
|
||||||
|
<item>ಇಲ್ಲ</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<string-array name="category">
|
||||||
|
<item>NT-A</item>
|
||||||
|
<item>NT-B</item>
|
||||||
|
<item>NT-C</item>
|
||||||
|
<item>NT-D</item>
|
||||||
|
<item>OBC</item>
|
||||||
|
<item>OPEN</item>
|
||||||
|
<item>OTHER</item>
|
||||||
|
<item>SBC</item>
|
||||||
|
<item>SC</item>
|
||||||
|
<item>ST</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<string-array name="caste">
|
||||||
|
<item>ಅಹೀರ್</item>
|
||||||
|
<item>ಬರಾಯಿ</item>
|
||||||
|
<item>ಬ್ರಾಹ್ಮಣ</item>
|
||||||
|
<item>ಬೌದ್ಧ</item>
|
||||||
|
<item>ಚಾಂಭಾರ್</item>
|
||||||
|
<item>ಚಾಮಾರ್</item>
|
||||||
|
<item>ದೇವಾಂಗನ್</item>
|
||||||
|
<item>ಧಿವರ್</item>
|
||||||
|
<item>ಫುಲ್ಮಾಲಿ</item>
|
||||||
|
<item>ಗೊಂಡ್</item>
|
||||||
|
<item>ಜೈನ್</item>
|
||||||
|
<item>ಕೊಲಿ</item>
|
||||||
|
<item>ಕೊಶ್ತಿ</item>
|
||||||
|
<item>ಕುಂಭಾರ</item>
|
||||||
|
<item>ಕುಂಬಿ</item>
|
||||||
|
<item>ಲೊಹರ್</item>
|
||||||
|
<item>ಮಾಳಿ</item>
|
||||||
|
<item>ಮಣ್ಣ</item>
|
||||||
|
<item>ಮಹಾರ್</item>
|
||||||
|
<item>ಮೌರ್ಯ</item>
|
||||||
|
<item>ಮಸ್ಲಿಮ್</item>
|
||||||
|
<item>ನಾವಿ</item>
|
||||||
|
<item>ಇತರ</item>
|
||||||
|
<item>ಪವಾರ್</item>
|
||||||
|
<item>ಪರ್ದೇಶಿ</item>
|
||||||
|
<item>ಶಾಹು</item>
|
||||||
|
<item>ಸೋನಾರ್</item>
|
||||||
|
<item>ತೆಲಿ</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<string-array name="marital_status">
|
||||||
|
<item>ವಿವಾಹಿತ</item>
|
||||||
|
<item>ಅವಿವಾಹಿತ</item>
|
||||||
|
<item>ವಿವಾಹ ವಿಚ್ಛೇದ</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
|
||||||
|
<string-array name="blood_group">
|
||||||
|
<item>O+ve</item>
|
||||||
|
<item>O-ve</item>
|
||||||
|
<item>A+ve</item>
|
||||||
|
<item>A-ve</item>
|
||||||
|
<item>B+ve</item>
|
||||||
|
<item>B-ve</item>
|
||||||
|
<item>AB+ve</item>
|
||||||
|
<item>AB-ve</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
<string-array name="gender">
|
||||||
|
<item>ಗಂಡು</item>
|
||||||
|
<item>ಹೆಣ್ಣು</item>
|
||||||
|
<item>ಇತರ</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
|
|
||||||
|
</resources>
|
||||||
@@ -7,6 +7,12 @@
|
|||||||
<string name="retry">Retry</string>
|
<string name="retry">Retry</string>
|
||||||
<string name="failed_to_connect">Failed to connect</string>
|
<string name="failed_to_connect">Failed to connect</string>
|
||||||
<string name="cancel">Cancel</string>
|
<string name="cancel">Cancel</string>
|
||||||
|
<string name="yes">Yes</string>
|
||||||
|
<string name="no">No</string>
|
||||||
|
<string-array name="yes_no">
|
||||||
|
<item>Yes</item>
|
||||||
|
<item>No</item>
|
||||||
|
</string-array>
|
||||||
|
|
||||||
//Registration Screens
|
//Registration Screens
|
||||||
<string name="scan_person_abha_id_card">Scan Person ABHA ID/Aadhar ID Card</string>
|
<string name="scan_person_abha_id_card">Scan Person ABHA ID/Aadhar ID Card</string>
|
||||||
@@ -48,14 +54,13 @@
|
|||||||
<string name="register_user">Register User</string>
|
<string name="register_user">Register User</string>
|
||||||
<string name="is_user_having_any_family_history_for_sickle_cell">Is user having any family history for Sickle Cell</string>
|
<string name="is_user_having_any_family_history_for_sickle_cell">Is user having any family history for Sickle Cell</string>
|
||||||
<string name="family_history_of_sickle_cell">Family History of Sickle Cell</string>
|
<string name="family_history_of_sickle_cell">Family History of Sickle Cell</string>
|
||||||
<string name="mobile_number_10_digits">Mobile Number(Optional)</string>
|
<string name="mobile_number_10_digits">Mobile Number (10 digits)</string>
|
||||||
<string name="sub_caste">Sub Caste</string>
|
<string name="sub_caste">Sub Caste</string>
|
||||||
<string name="capture_user_image">Capture User Image</string>
|
<string name="capture_user_image">Capture User Image</string>
|
||||||
<string name="mobile_number">Mobile Number</string>
|
<string name="mobile_number">Mobile Number</string>
|
||||||
<string name="edit">Edit</string>
|
<string name="edit">Edit</string>
|
||||||
<string name="user_details">User Details</string>
|
<string name="user_details">User Details</string>
|
||||||
<string name="internet_is_not_available_and_there_is_no_data_available_in_local_db">Internet is not available and there is no Data available in Local DB</string>
|
<string name="internet_is_not_available_and_there_is_no_data_available_in_local_db">Internet is not available and there is no Data available in Local DB</string>
|
||||||
<string name="empty_registrations">No registrations are available for display</string>
|
|
||||||
<string name="user_id">User ID: %1$s</string>
|
<string name="user_id">User ID: %1$s</string>
|
||||||
<string name="abha_number">Abha Number: %1$s</string>
|
<string name="abha_number">Abha Number: %1$s</string>
|
||||||
<string name="aadhar_number_details">Aadhar Number: %1$s</string>
|
<string name="aadhar_number_details">Aadhar Number: %1$s</string>
|
||||||
@@ -89,6 +94,53 @@
|
|||||||
<string name="female">Female</string>
|
<string name="female">Female</string>
|
||||||
<string name="other">Other</string>
|
<string name="other">Other</string>
|
||||||
|
|
||||||
|
<string name="cancelled_unable_scan">Cancelled: Unable to scan, Try Again!!</string>
|
||||||
|
<string name="scan_abha_card">Please Scan the Abha ID/Aadhar ID</string>
|
||||||
|
<string name="invalid_qr_code">The QR Code you have scanned is not valid, enter the data manually</string>
|
||||||
|
<string name="enter_aadhar_manually">You have scanned the Abha ID, need to enter Aadhar ID manually</string>
|
||||||
|
<string name="invalid_abha_id">Invalid Abha ID</string>
|
||||||
|
<string name="invalid_aadhar_id">Invalid Aadhar ID</string>
|
||||||
|
<string name="name_field_error">Name field can\'t be empty or less than 3 characters</string>
|
||||||
|
<string name="center_name_error">Center name can\'t be empty or less than 3 characters</string>
|
||||||
|
<string name="registration_success">Registration Done Successfully</string>
|
||||||
|
<string name="internt_not_local">Internet not available, test details stored locally</string>
|
||||||
|
<string name="enter_details_properly">Please enter all the details properly</string>
|
||||||
|
<string name="enter_valid_birth_year">Please enter a valid birth year between 1900 and 2023</string>
|
||||||
|
<string name="fill_field">Please fill the field</string>
|
||||||
|
<string name="valid_mobile_number">Please enter a valid 10-digit mobile number</string>
|
||||||
|
<string name="enter_name">Please enter your name</string>
|
||||||
|
<string name="enter_marital_status">Please enter your marital status</string>
|
||||||
|
<string name="empty_registrations">No registrations are available for display</string>
|
||||||
|
<string name="enter_category">Please enter your category</string>
|
||||||
|
<string name="enter_caste">Please enter your caste</string>
|
||||||
|
<string name="enter_house_address">Please enter your house address</string>
|
||||||
|
<string name="enter_city">Please enter your city</string>
|
||||||
|
<string name="enter_district">Please enter your district</string>
|
||||||
|
<string name="enter_state">Please enter your state</string>
|
||||||
|
<string name="enter_pincode">Please enter a valid 6-digit pin code</string>
|
||||||
|
<string name="enter_family_history">Please enter your family history</string>
|
||||||
|
<string name="enter_guardian_name">Please enter your guardian name</string>
|
||||||
|
<string name="enter_father_husband_name">enter father/husband name</string>
|
||||||
|
<string name="do_log_out">Do you want to LogOut the Application?</string>
|
||||||
|
<string name="log_out">Log Out</string>
|
||||||
|
<string name="upload_db_registration">Upload DB Registration</string>
|
||||||
|
<string name="upload_local_db_to_cloud">Do you want to upload the local DB Registration to the cloud?</string>
|
||||||
|
<string name="upload">Upload</string>
|
||||||
|
<string name="upload_done_successfully">Upload done successfully</string>
|
||||||
|
<string name="language_update">Language updated successfully</string>
|
||||||
|
<string name="select_language">Select your preferred language</string>
|
||||||
|
<string name="app_language">App Language</string>
|
||||||
|
<string name="enter_proper_login_id">Please enter a proper Login ID</string>
|
||||||
|
<string name="enter_proper_password">Please enter a proper password</string>
|
||||||
|
<string name="wrong_password">Wrong Password</string>
|
||||||
|
<string name="wrong_user_id">Wrong UserID</string>
|
||||||
|
<string name="userid">User Id</string>
|
||||||
|
<string name="name">Name</string>
|
||||||
|
<string name="ok">OK</string>
|
||||||
|
<string name="add_blood_group">Add Blood Group</string>
|
||||||
|
<string name="scanned_aadhar_id">You have scanned the Aadhar ID, need to enter Aadhar ID number you have scanned and Abha ID manually</string>
|
||||||
|
<string name="scanned_abha_id">You have scanned the Abha ID</string>
|
||||||
|
<string name="scanned_aadharid">You have scanned the Aadhar ID</string>
|
||||||
|
|
||||||
<string-array name="category">
|
<string-array name="category">
|
||||||
<item>NT-A</item>
|
<item>NT-A</item>
|
||||||
@@ -156,10 +208,5 @@
|
|||||||
<item>Female</item>
|
<item>Female</item>
|
||||||
<item>Other</item>
|
<item>Other</item>
|
||||||
</string-array>
|
</string-array>
|
||||||
<string-array name="district">
|
|
||||||
<item>Mysuru</item>
|
|
||||||
<item>Kodagu</item>
|
|
||||||
<item>Chamarajanagar</item>
|
|
||||||
</string-array>
|
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||||
plugins {
|
plugins {
|
||||||
id 'com.android.application' version '8.4.0' apply false
|
id 'com.android.application' version '8.0.2' apply false
|
||||||
id 'com.android.library' version '8.4.0' apply false
|
id 'com.android.library' version '8.0.2' apply false
|
||||||
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
|
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
|
||||||
id 'androidx.navigation.safeargs' version '2.7.0-beta02' apply false
|
id 'androidx.navigation.safeargs' version '2.7.0-beta02' apply false
|
||||||
id 'com.google.dagger.hilt.android' version '2.46' apply false
|
id 'com.google.dagger.hilt.android' version '2.46' apply false
|
||||||
|
|||||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +1,6 @@
|
|||||||
#Wed Jul 12 14:05:11 IST 2023
|
#Wed Jul 12 14:05:11 IST 2023
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|||||||
Reference in New Issue
Block a user