Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
software566 committed Jan 13, 2025
0 parents commit 83b4e63
Show file tree
Hide file tree
Showing 52 changed files with 1,487 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 27 additions & 0 deletions .idea/appInsightsSettings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions .idea/runConfigurations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

73 changes: 73 additions & 0 deletions .idea/runConfigurations/authentication.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
55 changes: 55 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
plugins {
id("com.android.application")
id("com.google.gms.google-services")
}

android {
namespace = "com.example.authentication"
compileSdk = 35

defaultConfig {
applicationId = "com.example.authentication"
minSdk = 24
targetSdk = 35
versionCode = 1
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

buildFeatures {
buildConfig = true
}

buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}

dependencies {
implementation(libs.appcompat)
implementation(libs.material)
implementation(libs.activity)
implementation(libs.constraintlayout)
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)
androidTestImplementation(libs.espresso.core)

// Firebase dependencies
implementation("com.google.firebase:firebase-bom:33.7.0")
implementation("com.google.firebase:firebase-messaging:24.1.0")
implementation("com.google.firebase:firebase-analytics:22.1.2")
implementation("com.google.firebase:firebase-auth:23.1.0")
implementation("com.google.android.gms:play-services-auth:21.3.0")
}
29 changes: 29 additions & 0 deletions app/google-services (1).json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "615926808254",
"project_id": "nth-facility-416119",
"storage_bucket": "nth-facility-416119.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:615926808254:android:e921a3efbbb0cf6f82e8ef",
"android_client_info": {
"package_name": "com.authentication"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyB4sAzMBIKoUMMV3dlclxBdG9bm30qr5fk"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
48 changes: 48 additions & 0 deletions app/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
{
"project_info": {
"project_number": "615926808254",
"project_id": "nth-facility-416119",
"storage_bucket": "nth-facility-416119.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:615926808254:android:e921a3efbbb0cf6f82e8ef",
"android_client_info": {
"package_name": "com.authentication"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyB4sAzMBIKoUMMV3dlclxBdG9bm30qr5fk"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
},
{
"client_info": {
"mobilesdk_app_id": "1:615926808254:android:aa0c4e313ec6718d82e8ef",
"android_client_info": {
"package_name": "com.example.authentication"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyB4sAzMBIKoUMMV3dlclxBdG9bm30qr5fk"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
21 changes: 21 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
Loading

0 comments on commit 83b4e63

Please sign in to comment.