Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add team#17 #1

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
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
7 changes: 7 additions & 0 deletions team#17-1/.idea/discord.xml

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

6 changes: 6 additions & 0 deletions team#17-1/.idea/vcs.xml

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

56 changes: 56 additions & 0 deletions team#17-1/.idea/workspace.xml

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

15 changes: 15 additions & 0 deletions team#17-1/Readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
-> Backend Completed.
-> Authentication Completed.
-> Project Screen was completed but due to some bug recycler view is not showing the projects, however add projects is working fine.
-> Navigation completed
-> Tasks and subtasks UI and connection to backend are still incomplete.

Demo video :- https://drive.google.com/file/d/1wKZsKB3bYrr0zJ02gFXQNmtSXE33fELL/view?usp=drivesdk

Database graphs in following images: -


![Screenshot (424)](https://user-images.githubusercontent.com/85061899/194932751-7e8b91dd-55eb-4b00-aa08-dc5dda0d475f.png)
![Screenshot (425)](https://user-images.githubusercontent.com/85061899/194932762-0809b8bf-0b4c-40e8-bf87-291858716ad6.png)
![Screenshot (426)](https://user-images.githubusercontent.com/85061899/194932773-4398b1ef-d6ff-4f85-b66b-de68873ff602.png)
![Screenshot (427)](https://user-images.githubusercontent.com/85061899/194932780-0e2b0dee-f233-41d1-b37f-9be74d49e13f.png)
15 changes: 15 additions & 0 deletions team#17-1/ToDoListApp/.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 team#17-1/ToDoListApp/.idea/.gitignore

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

6 changes: 6 additions & 0 deletions team#17-1/ToDoListApp/.idea/compiler.xml

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

7 changes: 7 additions & 0 deletions team#17-1/ToDoListApp/.idea/discord.xml

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

19 changes: 19 additions & 0 deletions team#17-1/ToDoListApp/.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 team#17-1/ToDoListApp/.idea/misc.xml

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

6 changes: 6 additions & 0 deletions team#17-1/ToDoListApp/.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 team#17-1/ToDoListApp/app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
63 changes: 63 additions & 0 deletions team#17-1/ToDoListApp/app/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'com.google.gms.google-services'
id("androidx.navigation.safeargs.kotlin")
}

android {
namespace 'com.example.todolistapp'
compileSdk 33

defaultConfig {
applicationId "com.example.todolistapp"
minSdk 21
targetSdk 33
versionCode 1
versionName "1.0"

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
}
kotlinOptions {
jvmTarget = '1.8'
}
}

dependencies {

implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.2'
implementation 'com.google.firebase:firebase-auth-ktx:21.0.8'
implementation 'com.google.firebase:firebase-firestore-ktx:24.3.1'
implementation 'com.google.firebase:firebase-storage-ktx:20.0.2'
testImplementation 'junit:junit:4.13.2'
implementation("io.coil-kt:coil:1.2.0")
implementation("io.coil-kt:coil-svg:1.2.0")
implementation 'com.github.bumptech.glide:glide:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.google.firebase:firebase-storage:20.0.2'
implementation 'androidx.cardview:cardview:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.0-alpha02"
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.6.0-alpha02"
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.0-alpha02"
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'


}
39 changes: 39 additions & 0 deletions team#17-1/ToDoListApp/app/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"project_info": {
"project_number": "438458089078",
"project_id": "todolistapp-8cd9f",
"storage_bucket": "todolistapp-8cd9f.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:438458089078:android:1f70b8654770c5c348a957",
"android_client_info": {
"package_name": "com.example.todolistapp"
}
},
"oauth_client": [
{
"client_id": "438458089078-cmriv1pjdfh1acu424jra3httgividnd.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyBXHG3qq2yezP_0EBXggFF2xFhewEP2P5Q"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "438458089078-cmriv1pjdfh1acu424jra3httgividnd.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}
21 changes: 21 additions & 0 deletions team#17-1/ToDoListApp/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
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
package com.example.todolistapp

import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4

import org.junit.Test
import org.junit.runner.RunWith

import org.junit.Assert.*

/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.example.todolistapp", appContext.packageName)
}
}
33 changes: 33 additions & 0 deletions team#17-1/ToDoListApp/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.INTERNET"/>
<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.ToDoListApp"
tools:targetApi="31">
<activity
android:name=".MainActivity"
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="" />
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
</activity>
</application>

</manifest>
Loading