Users can generate QR codes with their name & email using native Android code that automatically clears on logout/new login for security.

This commit is contained in:
2025-12-13 23:44:20 +05:30
parent 8613fd7d30
commit a9efdccaed
3 changed files with 144 additions and 10 deletions

View File

@@ -72,6 +72,11 @@ def enableProguardInReleaseBuilds = false
*/
def jscFlavor = 'io.github.react-native-community:jsc-android:2026004.+'
repositories {
google()
mavenCentral()
}
android {
ndkVersion rootProject.ext.ndkVersion
buildToolsVersion rootProject.ext.buildToolsVersion
@@ -116,4 +121,7 @@ dependencies {
} else {
implementation jscFlavor
}
// QR Code generation
implementation 'com.google.zxing:core:3.5.1'
}