Skip to content

Commit

Permalink
First Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
may-andro committed Dec 18, 2019
1 parent 5ef529b commit 6ef3462
Show file tree
Hide file tree
Showing 92 changed files with 2,969 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
*.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
122 changes: 122 additions & 0 deletions .idea/codeStyles/Project.xml

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

5 changes: 5 additions & 0 deletions .idea/codeStyles/codeStyleConfig.xml

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

19 changes: 19 additions & 0 deletions .idea/gradle.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.

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

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

6 changes: 6 additions & 0 deletions .idea/vcs.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
108 changes: 108 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

apply plugin: 'kotlin-kapt'

apply plugin: "androidx.navigation.safeargs.kotlin"

apply plugin: 'com.google.gms.google-services'

android {
compileSdkVersion versions.compileSdkVersion
buildToolsVersion versions.buildToolVersion

defaultConfig {
applicationId "com.mayandro.firebasephoneauth"
minSdkVersion versions.minSdkVersion
targetSdkVersion versions.targetSdkVersion
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
dataBinding {
enabled = true
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

// Kotlin
implementation deps.kotlin.kotlinSDK
implementation 'androidx.core:core-ktx:1.1.0'

// Coroutine
implementation deps.kotlin.coroutine

// App dependencies
implementation deps.androidx.appcompat
implementation deps.androidx.constraintlayout
implementation deps.androidx.recyclerview
implementation deps.androidx.cardview
implementation deps.androidx.viewpager2

// Timber
implementation deps.logger.timber

// design
implementation deps.design.material

// Architecture Components
implementation deps.arch.extensions
implementation deps.arch.viewmodel
kapt deps.arch.compiler

// Room
implementation deps.database.room
kapt deps.database.compiler

//Navigation
implementation deps.arch.navigationui
implementation deps.arch.navigationfragment

// Retrofit 2
implementation deps.network.retrofit
implementation deps.network.retrofitgson
implementation deps.network.retrofitrx
implementation deps.network.okhttplogger

// Glide
implementation deps.imageLib.glide

// Databinding compiler
kapt deps.binding.databinding

// Rx Plugins
implementation deps.rx.permissions

// JetPack Shared Preference Plugins
implementation deps.sharedpreferences.preference

// Dagger 2
implementation deps.dagger.dagger
implementation deps.dagger.daggerSupport
kapt deps.dagger.daggerCompiler
kapt deps.dagger.daggerProcessor

//Phone
implementation deps.playservicesauth.playservicesauth
implementation deps.playservicesauth.playservicesauthapiphone

//Firebase
implementation deps.firebase.auth
implementation deps.firebase.analytics
}
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": "1039434398181",
"firebase_url": "https://fir-authdemo-77fa0.firebaseio.com",
"project_id": "fir-authdemo-77fa0",
"storage_bucket": "fir-authdemo-77fa0.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:1039434398181:android:3a574dc2490bb42ce3d70c",
"android_client_info": {
"package_name": "com.mayandro.firebasephoneauth"
}
},
"oauth_client": [
{
"client_id": "1039434398181-oodccjco314ur1groav6f3g0mddd6moo.apps.googleusercontent.com",
"client_type": 1,
"android_info": {
"package_name": "com.mayandro.firebasephoneauth",
"certificate_hash": "82f836a84ad7a59699e1a2560dbbf1ac25acc875"
}
},
{
"client_id": "1039434398181-sgrgq998bv3nc2re7l3kal420aavb06s.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyDM8Pe3U5a0qx7A-sZpaBVbDNAeITo3jd4"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "1039434398181-sgrgq998bv3nc2re7l3kal420aavb06s.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"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 6ef3462

Please sign in to comment.