Skip to content

Commit 55cbd57

Browse files
committed
read sms and phone number
1 parent dcccdb2 commit 55cbd57

29 files changed

+444
-45
lines changed

.gitignore

+209
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
### Android ###
2+
# Built application files
3+
*.apk
4+
*.aar
5+
*.ap_
6+
*.aab
7+
8+
# Files for the ART/Dalvik VM
9+
*.dex
10+
11+
# Java class files
12+
*.class
13+
14+
# Generated files
15+
bin/
16+
gen/
17+
out/
18+
# Uncomment the following line in case you need and you don't have the release build type files in your app
19+
# release/
20+
21+
# Gradle files
22+
.gradle/
23+
build/
24+
25+
# Local configuration file (sdk path, etc)
26+
local.properties
27+
28+
# Proguard folder generated by Eclipse
29+
proguard/
30+
31+
# Log Files
32+
*.log
33+
34+
# Android Studio Navigation editor temp files
35+
.navigation/
36+
37+
# Android Studio captures folder
38+
captures/
39+
40+
# IntelliJ
41+
*.iml
42+
.idea/workspace.xml
43+
.idea/tasks.xml
44+
.idea/gradle.xml
45+
.idea/assetWizardSettings.xml
46+
.idea/dictionaries
47+
.idea/libraries
48+
# Android Studio 3 in .gitignore file.
49+
.idea/caches
50+
.idea/modules.xml
51+
# Comment next line if keeping position of elements in Navigation Editor is relevant for you
52+
.idea/navEditor.xml
53+
54+
# Keystore files
55+
# Uncomment the following lines if you do not want to check your keystore files in.
56+
#*.jks
57+
#*.keystore
58+
59+
# External native build folder generated in Android Studio 2.2 and later
60+
.externalNativeBuild
61+
.cxx/
62+
63+
# Google Services (e.g. APIs or Firebase)
64+
# google-services.json
65+
66+
# Freeline
67+
freeline.py
68+
freeline/
69+
freeline_project_description.json
70+
71+
# fastlane
72+
fastlane/report.xml
73+
fastlane/Preview.html
74+
fastlane/screenshots
75+
fastlane/test_output
76+
fastlane/readme.md
77+
78+
# Version control
79+
vcs.xml
80+
81+
# lint
82+
lint/intermediates/
83+
lint/generated/
84+
lint/outputs/
85+
lint/tmp/
86+
# lint/reports/
87+
88+
### Android Patch ###
89+
gen-external-apklibs
90+
output.json
91+
92+
# Replacement of .externalNativeBuild directories introduced
93+
# with Android Studio 3.5.
94+
95+
### AndroidStudio ###
96+
# Covers files to be ignored for android development using Android Studio.
97+
98+
# Built application files
99+
100+
# Files for the ART/Dalvik VM
101+
102+
# Java class files
103+
104+
# Generated files
105+
106+
# Gradle files
107+
.gradle
108+
109+
# Signing files
110+
.signing/
111+
112+
# Local configuration file (sdk path, etc)
113+
114+
# Proguard folder generated by Eclipse
115+
116+
# Log Files
117+
118+
# Android Studio
119+
/*/build/
120+
/*/local.properties
121+
/*/out
122+
/*/*/build
123+
/*/*/production
124+
*.ipr
125+
*~
126+
*.swp
127+
128+
# Keystore files
129+
*.jks
130+
*.keystore
131+
132+
# Google Services (e.g. APIs or Firebase)
133+
# google-services.json
134+
135+
# Android Patch
136+
137+
# External native build folder generated in Android Studio 2.2 and later
138+
139+
# NDK
140+
obj/
141+
142+
# IntelliJ IDEA
143+
*.iws
144+
/out/
145+
146+
# User-specific configurations
147+
.idea/caches/
148+
.idea/libraries/
149+
.idea/shelf/
150+
.idea/.name
151+
.idea/compiler.xml
152+
.idea/copyright/profiles_settings.xml
153+
.idea/encodings.xml
154+
.idea/misc.xml
155+
.idea/scopes/scope_settings.xml
156+
.idea/vcs.xml
157+
.idea/jsLibraryMappings.xml
158+
.idea/datasources.xml
159+
.idea/dataSources.ids
160+
.idea/sqlDataSources.xml
161+
.idea/dynamic.xml
162+
.idea/uiDesigner.xml
163+
.idea/jarRepositories.xml
164+
165+
# OS-specific files
166+
.DS_Store
167+
.DS_Store?
168+
._*
169+
.Spotlight-V100
170+
.Trashes
171+
ehthumbs.db
172+
Thumbs.db
173+
174+
# Legacy Eclipse project files
175+
.classpath
176+
.project
177+
.cproject
178+
.settings/
179+
180+
# Mobile Tools for Java (J2ME)
181+
.mtj.tmp/
182+
183+
# Package Files #
184+
*.war
185+
*.ear
186+
187+
# virtual machine crash logs (Reference: http://www.java.com/en/download/help/error_hotspot.xml)
188+
hs_err_pid*
189+
190+
## Plugin-specific files:
191+
192+
# mpeltonen/sbt-idea plugin
193+
.idea_modules/
194+
195+
# JIRA plugin
196+
atlassian-ide-plugin.xml
197+
198+
# Mongo Explorer plugin
199+
.idea/mongoSettings.xml
200+
201+
# Crashlytics plugin (for Android Studio and IntelliJ)
202+
com_crashlytics_export_strings.xml
203+
crashlytics.properties
204+
crashlytics-build.properties
205+
fabric.properties
206+
207+
### AndroidStudio Patch ###
208+
209+
!/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Binary file not shown.

.gradle/6.5/fileHashes/fileHashes.bin

1.03 KB
Binary file not shown.
0 Bytes
Binary file not shown.
17.2 KB
Binary file not shown.
185 KB
Binary file not shown.
531 KB
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
1.41 KB
Binary file not shown.

.gradle/checksums/checksums.lock

0 Bytes
Binary file not shown.

.gradle/checksums/md5-checksums.bin

100 Bytes
Binary file not shown.

.gradle/checksums/sha1-checksums.bin

432 Bytes
Binary file not shown.

.idea/libraries/Gradle__com_google_android_gms_play_services_auth_19_2_0_aar.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/libraries/Gradle__com_google_android_gms_play_services_auth_api_phone_17_5_1_aar.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules/app/Organics.app.iml

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+4
Original file line numberDiff line numberDiff line change
@@ -120,4 +120,8 @@ dependencies {
120120

121121
//Payments
122122
implementation 'com.razorpay:checkout:1.6.6'
123+
124+
//SMS read
125+
implementation "com.google.android.gms:play-services-auth:19.2.0"
126+
implementation "com.google.android.gms:play-services-auth-api-phone:17.5.1"
123127
}

0 commit comments

Comments
 (0)