Skip to content

Commit c35b23c

Browse files
committed
17-07-2021 Initial_commit
0 parents  commit c35b23c

File tree

96 files changed

+3606
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+3606
-0
lines changed

MyProject/.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/caches
5+
/.idea/libraries
6+
/.idea/modules.xml
7+
/.idea/workspace.xml
8+
/.idea/navEditor.xml
9+
/.idea/assetWizardSettings.xml
10+
.DS_Store
11+
/build
12+
/captures
13+
.externalNativeBuild
14+
.cxx
15+
local.properties

MyProject/.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MyProject/.idea/compiler.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MyProject/.idea/gradle.xml

Lines changed: 20 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MyProject/.idea/jarRepositories.xml

Lines changed: 35 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MyProject/.idea/misc.xml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MyProject/.idea/runConfigurations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

MyProject/app/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

MyProject/app/build.gradle

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
plugins {
2+
id 'com.android.application'
3+
id 'com.google.gms.google-services'
4+
}
5+
6+
android {
7+
compileSdkVersion 30
8+
buildToolsVersion "30.0.3"
9+
10+
defaultConfig {
11+
applicationId "com.example.myproject"
12+
minSdkVersion 26
13+
targetSdkVersion 30
14+
versionCode 1
15+
versionName "1.0"
16+
17+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
18+
}
19+
20+
buildTypes {
21+
release {
22+
minifyEnabled false
23+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
24+
}
25+
}
26+
compileOptions {
27+
sourceCompatibility JavaVersion.VERSION_1_8
28+
targetCompatibility JavaVersion.VERSION_1_8
29+
}
30+
}
31+
32+
dependencies {
33+
34+
implementation 'androidx.appcompat:appcompat:1.3.0'
35+
implementation 'com.google.android.material:material:1.4.0'
36+
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
37+
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
38+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
39+
testImplementation 'junit:junit:4.+'
40+
implementation 'com.google.firebase:firebase-auth:21.0.1'
41+
implementation 'com.google.firebase:firebase-database:20.0.0'
42+
implementation 'com.google.firebase:firebase-storage:20.0.0'
43+
44+
implementation 'com.github.MdFarhanRaja:SearchableSpinner:2.0'
45+
implementation 'com.github.chivorns:smartmaterialspinner:1.5.0'
46+
implementation "androidx.biometric:biometric:1.1.0"
47+
implementation 'androidx.biometric:biometric:1.0.0-rc01'
48+
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
49+
implementation 'com.github.chrisbanes:PhotoView:2.2.0'
50+
51+
androidTestImplementation 'com.android.support.test:runner:1.0.2'
52+
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
53+
54+
55+
}

MyProject/app/google-services.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"project_info": {
3+
"project_number": "902243075682",
4+
"project_id": "myproject-79157",
5+
"storage_bucket": "myproject-79157.appspot.com"
6+
},
7+
"client": [
8+
{
9+
"client_info": {
10+
"mobilesdk_app_id": "1:902243075682:android:a44e40137d62eaee7a333b",
11+
"android_client_info": {
12+
"package_name": "com.example.myproject"
13+
}
14+
},
15+
"oauth_client": [
16+
{
17+
"client_id": "902243075682-uets5d0pfgb7gh2a6eqtjvjkc578dumj.apps.googleusercontent.com",
18+
"client_type": 3
19+
}
20+
],
21+
"api_key": [
22+
{
23+
"current_key": "AIzaSyBhhc3rdyKFrmBPw0WuCN0QJ81CGaMfD7o"
24+
}
25+
],
26+
"services": {
27+
"appinvite_service": {
28+
"other_platform_oauth_client": [
29+
{
30+
"client_id": "902243075682-uets5d0pfgb7gh2a6eqtjvjkc578dumj.apps.googleusercontent.com",
31+
"client_type": 3
32+
}
33+
]
34+
}
35+
}
36+
}
37+
],
38+
"configuration_version": "1"
39+
}

0 commit comments

Comments
 (0)