Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .idea/.name

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

2 changes: 1 addition & 1 deletion .idea/compiler.xml

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

28 changes: 28 additions & 0 deletions .idea/deploymentTargetDropDown.xml

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

4 changes: 2 additions & 2 deletions .idea/gradle.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/jarRepositories.xml

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

3 changes: 1 addition & 2 deletions .idea/misc.xml

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

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

This file was deleted.

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.

6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
# MyLoginApp

Simple Login Design for android application

Full Video Tutorial is available in Youtube Link : https://youtu.be/sOJRJtM_iu0

![LOGIN](https://user-images.githubusercontent.com/68380115/126171145-4212b2e5-db0a-41b3-b18a-5697222f2596.PNG)
27 changes: 23 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
import org.gradle.process.internal.JavaExecAction

plugins {
id 'com.android.application'

}

android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
compileSdk 34
buildToolsVersion '34.0.0'

defaultConfig {
applicationId "com.example.myloginapp"
minSdkVersion 22
targetSdkVersion 30
minSdk 30
targetSdk 30
versionCode 1
versionName "1.0"

Expand All @@ -26,8 +29,13 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'com.example.myloginapp'
}

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


dependencies {

implementation 'androidx.appcompat:appcompat:1.3.0'
Expand All @@ -36,4 +44,15 @@ dependencies {
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

implementation platform('com.google.firebase:firebase-bom:27.1.0')
implementation 'com.google.firebase:firebase-analytics'
implementation 'com.google.firebase:firebase-auth'
implementation 'com.google.firebase:firebase-firestore'

implementation 'com.github.denzcoskun:ImageSlideshow:0.1.0'

implementation 'com.github.bumptech.glide:glide:4.12.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'

}
29 changes: 29 additions & 0 deletions app/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "293925004758",
"project_id": "e-cycle-tech-92375",
"storage_bucket": "e-cycle-tech-92375.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:293925004758:android:40dc772b9d7583d1b47077",
"android_client_info": {
"package_name": "com.example.myloginapp"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyCAuQrQPNY9Sy8UpTizdoPXWX40xI4v__g"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
41 changes: 38 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myloginapp">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.INTERNET" />

<application
android:allowBackup="true"
Expand All @@ -9,13 +10,47 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.MyLoginApp">
<activity android:name=".MainActivity">
<activity
android:name=".activities.DescontoActivity"
android:exported="false" />
<activity
android:name=".activities.PaymentActivity"
android:exported="false" />
<activity
android:name=".activities.AddAddressActivity"
android:exported="false" />
<activity
android:name=".activities.AddressActivity"
android:exported="false" />
<activity
android:name=".activities.CartActivity"
android:exported="false" />
<activity
android:name=".activities.ShowAllActivity"
android:exported="false" />
<activity
android:name=".activities.DetailedActivity"
android:exported="false" />
<activity
android:name=".activities.RegistrationActivity"
android:exported="false" />
<activity
android:name=".activities.MainActivity"
android:exported="false" />
<activity
android:name=".activities.LoginActivity"
android:exported="false" />
<activity android:name=".activities.OnBoardingActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<meta-data
android:name="preloaded_fonts"
android:resource="@array/preloaded_fonts" />
</application>

</manifest>
Binary file added app/src/main/ic_launcher-playstore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/src/main/java/color/WHITE.java
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

42 changes: 0 additions & 42 deletions app/src/main/java/com/example/myloginapp/MainActivity.java

This file was deleted.

Loading