Skip to content

Commit d4bd11b

Browse files
committed
Initial commit
0 parents  commit d4bd11b

File tree

175 files changed

+5996
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+5996
-0
lines changed

.gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
*.iml
2+
.gradle
3+
/local.properties
4+
/.idea/workspace.xml
5+
/.idea/libraries
6+
.DS_Store
7+
/build
8+
/captures
9+
.externalNativeBuild

.idea/caches/build_file_checksums.ser

537 Bytes
Binary file not shown.

.idea/codeStyles/Project.xml

+29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

app/build.gradle

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 25
5+
defaultConfig {
6+
applicationId "com.example.star_0733.project"
7+
minSdkVersion 19
8+
targetSdkVersion 25
9+
versionCode 1
10+
versionName "1.0"
11+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
12+
}
13+
buildTypes {
14+
release {
15+
minifyEnabled false
16+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
17+
}
18+
}
19+
}
20+
21+
22+
23+
24+
dependencies {
25+
//noinspection GradleCompatible
26+
implementation 'com.google.firebase:firebase-auth:11.8.0'
27+
implementation 'com.google.firebase:firebase-core:11.8.0'
28+
implementation 'com.firebaseui:firebase-ui:0.6.2'
29+
implementation 'com.google.firebase:firebase-database:11.8.0'
30+
implementation 'com.google.firebase:firebase-storage:11.8.0'
31+
implementation fileTree(dir: 'libs', include: ['*.jar'])
32+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
33+
exclude group: 'com.android.support', module: 'support-annotations'
34+
})
35+
//noinspection GradleCompatible
36+
implementation 'com.android.support:appcompat-v7:25.4.0'
37+
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
38+
implementation 'com.android.support:cardview-v7:25.4.0'
39+
implementation 'com.android.support:design:25.4.0'
40+
41+
testImplementation 'junit:junit:4.12'
42+
}
43+
44+
apply plugin: 'com.google.gms.google-services'

app/google-services.json

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"project_info": {
3+
"project_number": "77727934620",
4+
"firebase_url": "https://miniproject-8b2db.firebaseio.com",
5+
"project_id": "miniproject-8b2db",
6+
"storage_bucket": "miniproject-8b2db.appspot.com"
7+
},
8+
"client": [
9+
{
10+
"client_info": {
11+
"mobilesdk_app_id": "1:77727934620:android:2377120909906f79",
12+
"android_client_info": {
13+
"package_name": "com.example.star_0733.project"
14+
}
15+
},
16+
"oauth_client": [
17+
{
18+
"client_id": "77727934620-nutgcdrl8f70aljj0uuegl1t2oaqi5tr.apps.googleusercontent.com",
19+
"client_type": 3
20+
}
21+
],
22+
"api_key": [
23+
{
24+
"current_key": "AIzaSyCJH70aYDADhYlLZRSLwFpaEj2vtqJ6lkc"
25+
}
26+
],
27+
"services": {
28+
"analytics_service": {
29+
"status": 1
30+
},
31+
"appinvite_service": {
32+
"status": 1,
33+
"other_platform_oauth_client": []
34+
},
35+
"ads_service": {
36+
"status": 2
37+
}
38+
}
39+
}
40+
],
41+
"configuration_version": "1"
42+
}

app/proguard-rules.pro

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in C:\Users\sumit\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}
18+
19+
# Uncomment this to preserve the line number information for
20+
# debugging stack traces.
21+
#-keepattributes SourceFile,LineNumberTable
22+
23+
# If you keep the line number information, uncomment this to
24+
# hide the original source file name.
25+
#-renamesourcefileattribute SourceFile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package com.example.star_0733.project;
2+
3+
import android.content.Context;
4+
import android.support.test.InstrumentationRegistry;
5+
import android.support.test.runner.AndroidJUnit4;
6+
7+
import org.junit.Test;
8+
import org.junit.runner.RunWith;
9+
10+
import static org.junit.Assert.*;
11+
12+
/**
13+
* Instrumentation test, which will execute on an Android device.
14+
*
15+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
16+
*/
17+
@RunWith(AndroidJUnit4.class)
18+
public class ExampleInstrumentedTest {
19+
@Test
20+
public void useAppContext() throws Exception {
21+
// Context of the app under test.
22+
Context appContext = InstrumentationRegistry.getTargetContext();
23+
24+
assertEquals("com.example.star_0733.project", appContext.getPackageName());
25+
}
26+
}

app/src/main/AndroidManifest.xml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3+
package="com.example.star_0733.project">
4+
5+
<uses-permission android:name="android.permission.INTERNET" />
6+
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
7+
8+
<application
9+
android:allowBackup="true"
10+
android:icon="@mipmap/start"
11+
android:label="Smart College"
12+
android:roundIcon="@mipmap/ic_launcher_round"
13+
android:supportsRtl="true"
14+
android:theme="@style/AppTheme">
15+
<activity android:name=".Wel_come">
16+
<intent-filter>
17+
<action android:name="android.intent.action.MAIN" />
18+
<category android:name="android.intent.category.LAUNCHER" />
19+
</intent-filter>
20+
</activity>
21+
<activity android:name=".login_page" />
22+
<activity android:name=".Forget" />
23+
<activity android:name=".tc" />
24+
<activity
25+
android:name=".Home"
26+
android:label="@string/title_activity_home"
27+
android:theme="@style/AppTheme" />
28+
<activity
29+
android:name=".Branch"
30+
android:label="@string/title_activity_brach"
31+
android:theme="@style/AppTheme" />
32+
<activity
33+
android:name=".Semester"
34+
android:label="Semester"
35+
android:theme="@style/AppTheme" />
36+
<activity
37+
android:name=".Chat"
38+
android:label="Chat"
39+
android:theme="@style/AppTheme" />
40+
41+
<activity android:name=".Register" />
42+
43+
<activity android:name=".faculty_home" />
44+
45+
<activity android:name=".Upload_document" />
46+
47+
<activity android:name=".View_doc" />
48+
49+
<activity android:name=".doc_notice" />
50+
51+
<activity android:name=".faculty_chat"/>
52+
53+
</application>
54+
55+
</manifest>

app/src/main/chat-web.png

26.4 KB
Loading

app/src/main/email-web.png

5.3 KB
Loading

app/src/main/ic_launcher-web.png

30.9 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package com.example.star_0733.project;
2+
3+
import android.os.Bundle;
4+
import android.support.annotation.Nullable;
5+
import android.support.v4.app.Fragment;
6+
import android.view.LayoutInflater;
7+
import android.view.View;
8+
import android.view.ViewGroup;
9+
import android.widget.Toast;
10+
11+
public class About_hardik extends Fragment {
12+
13+
@Nullable
14+
@Override
15+
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
16+
View view = inflater.inflate(R.layout.about_hardik,container,false);
17+
return view;
18+
}
19+
20+
@Override
21+
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
22+
super.onViewCreated(view, savedInstanceState);
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
package com.example.star_0733.project;
2+
3+
import android.os.Bundle;
4+
import android.support.annotation.Nullable;
5+
import android.support.v4.app.Fragment;
6+
import android.view.LayoutInflater;
7+
import android.view.View;
8+
import android.view.ViewGroup;
9+
import android.widget.Toast;
10+
11+
public class About_sanket extends Fragment {
12+
13+
@Nullable
14+
@Override
15+
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
16+
View view = inflater.inflate(R.layout.about_sanket,container,false);
17+
return view;
18+
}
19+
20+
@Override
21+
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
22+
super.onViewCreated(view, savedInstanceState);
23+
}
24+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
package com.example.star_0733.project;
2+
3+
import android.os.Bundle;
4+
import android.support.annotation.Nullable;
5+
import android.support.v4.app.Fragment;
6+
import android.view.LayoutInflater;
7+
import android.view.View;
8+
import android.view.ViewGroup;
9+
10+
public class About_sumit extends Fragment {
11+
12+
@Nullable
13+
@Override
14+
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
15+
View view = inflater.inflate(R.layout.about_sumit,container,false);
16+
return view;
17+
}
18+
19+
@Override
20+
public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
21+
super.onViewCreated(view, savedInstanceState);
22+
}
23+
}

0 commit comments

Comments
 (0)