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
79 changes: 79 additions & 0 deletions exolearn-master/app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
plugins {
alias(libs.plugins.android.application)
id("com.google.gms.google-services")
}

android {
namespace = "com.example.exolearnapp"
compileSdk = 34

defaultConfig {
applicationId = "com.example.exolearnapp"
minSdk = 24
targetSdk = 34
versionCode = 1
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

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

dependencies {

implementation(libs.appcompat)
implementation(libs.material)
implementation(libs.activity)
implementation(libs.constraintlayout)
testImplementation(libs.junit)
androidTestImplementation(libs.ext.junit)
androidTestImplementation(libs.espresso.core)

//CSV Reader
implementation (libs.opencsv)
implementation (libs.commons.csv)

//Animation
implementation (libs.lottie)

//Flexbox Layout for responsiveness in app
implementation (libs.flexbox)

//Recycler View animation
implementation (libs.recyclerview.animators)

//Firebase BOM
implementation(platform(libs.firebase.bom))

//Firebase dependencies
//analytics
implementation(libs.firebase.analytics)

//Authentication
implementation(libs.firebase.auth)

//FireStore
implementation(libs.firebase.firestore)

//Splash Screen
implementation(libs.core.splashscreen)

//Google Material
implementation (libs.material)



}
29 changes: 29 additions & 0 deletions exolearn-master/app/google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"project_info": {
"project_number": "307006698335",
"project_id": "exolearn-44370",
"storage_bucket": "exolearn-44370.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:307006698335:android:1e56a9d4b853ae4db87cea",
"android_client_info": {
"package_name": "com.example.exolearnapp"
}
},
"oauth_client": [],
"api_key": [
{
"current_key": "AIzaSyDy13n_MYdAA7sknkYFoSk9hT39xOHertY"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": []
}
}
}
],
"configuration_version": "1"
}
21 changes: 21 additions & 0 deletions exolearn-master/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,26 @@
package com.example.exolearnapp;

import android.content.Context;

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

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

import static org.junit.Assert.*;

/**
* Instrumented test, which will execute on an Android device.
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
assertEquals("com.example.exolearnapp", appContext.getPackageName());
}
}
66 changes: 66 additions & 0 deletions exolearn-master/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<?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" /> <!-- Declare that your app queries for email handling apps -->
<queries>
<intent>
<action android:name="android.intent.action.VIEW" />

<data android:scheme="mailto" />
</intent>
</queries>

<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.ExoLearnApp"
tools:targetApi="31">
<activity
android:name=".learningmodel.activities.QuizActivity"
android:exported="false" />
<activity
android:name=".learningmodel.activities.LessonActivity"
android:exported="false" />
<activity
android:name=".learningmodel.activities.RoadmapActivity"
android:exported="false" />
<activity
android:name=".login.ForgotPasswordActivity"
android:exported="false" />
<activity
android:name=".login.RegisterationActivity"
android:exported="false" />
<activity
android:name=".login.MainLoginActivity"
android:exported="false" />
<activity
android:name=".planetpage.ExoplanetInformationPage"
android:exported="false" />
<activity
android:name=".planetpage.Exoplaner3DVisualization"
android:exported="false" />
<activity
android:name=".homescreen.MainHomePage"
android:exported="false" />
<activity
android:name=".searchscreen.ExoplanetSearch"
android:exported="false" />
<activity
android:name=".MainActivity"
android:exported="true"
android:theme="@style/Theme.ExoLearnApp">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

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

</manifest>
Loading