Skip to content

Commit

Permalink
FINAL COMMIT Part-1
Browse files Browse the repository at this point in the history
  • Loading branch information
yesiamrajeev committed Sep 17, 2023
1 parent 9087679 commit daf9f5e
Show file tree
Hide file tree
Showing 49 changed files with 840 additions and 593 deletions.
3 changes: 0 additions & 3 deletions .idea/.gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion .idea/.name

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

111 changes: 0 additions & 111 deletions README.md

This file was deleted.

53 changes: 53 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
plugins {
id 'com.android.application'
id 'com.google.gms.google-services'
}

android {
namespace 'com.ps.yatra360'
//multiDexEnabled true
compileSdkVersion 33

defaultConfig {
applicationId "com.ps.yatra360"
minSdk 16
targetSdk 33
versionCode 1
versionName "1.0"
multiDexEnabled true

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
implementation ("com.google.android.gms:play-services-maps:17.0.0")
implementation ("com.google.android.gms:play-services-location:18.0.0")

implementation ("com.google.maps:google-maps-services:0.17.0")
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.firebase:firebase-auth-ktx:22.1.2'
implementation 'com.google.firebase:firebase-database-ktx:20.2.2'
implementation 'com.google.firebase:firebase-storage-ktx:20.2.1'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation 'com.intuit.sdp:sdp-android:1.1.0'
implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation 'androidx.multidex:multidex:2.0.1' // Use the latest version

}
48 changes: 0 additions & 48 deletions app/build.gradle.kts

This file was deleted.

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": "866808743726",
"project_id": "yatra-360",
"storage_bucket": "yatra-360.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:866808743726:android:d905e61ffe1bd30ff05cbf",
"android_client_info": {
"package_name": "com.ps.yatra360"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyAskyGjc300wXjsMXKIQkG8I5_3dtXKZ9s"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.techyatra;
package com.ps.yatra360;

import android.content.Context;

Expand All @@ -21,6 +21,6 @@ public class ExampleInstrumentedTest {
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.example.techyatra", appContext.getPackageName());
assertEquals("com.ps.yatra360", appContext.getPackageName());
}
}
12 changes: 0 additions & 12 deletions app/src/debug/res/values/dimens.xml

This file was deleted.

24 changes: 21 additions & 3 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,34 @@
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.TechYatra"
android:theme="@style/Theme.Yatra360"
tools:targetApi="31">
<activity
android:name=".registration"
android:exported="false" />
<activity
android:name=".login"
android:exported="false" />
<activity
android:name=".splash"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

<meta-data
android:name="android.app.lib_name"
android:value="" />
</activity>
<activity
android:name=".MainActivity"
android:exported="true">
Expand All @@ -31,6 +48,7 @@
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/API_KEY" />
<activity android:name=".MapActivity"/>
</application>

</manifest>
Loading

0 comments on commit daf9f5e

Please sign in to comment.