diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/.gitignore @@ -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 diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/.name b/.idea/.name new file mode 100644 index 0000000..842a53e --- /dev/null +++ b/.idea/.name @@ -0,0 +1 @@ +Book Sharing 2.1 \ No newline at end of file diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..61a9130 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..18de3ac --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,21 @@ + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..a5f05cd --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d5d35ec --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/.gitignore b/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..a466767 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,42 @@ +plugins { + id 'com.android.application' + id 'com.google.gms.google-services' +} + +android { + compileSdkVersion 30 + buildToolsVersion "30.0.3" + + defaultConfig { + applicationId "com.example.booksharing21" + minSdkVersion 16 + targetSdkVersion 30 + 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 + } +} + +dependencies { + + implementation 'androidx.appcompat:appcompat:1.2.0' + implementation 'com.google.android.material:material:1.3.0' + implementation 'androidx.constraintlayout:constraintlayout:2.0.4' + implementation 'com.google.firebase:firebase-auth:20.0.3' + implementation 'com.google.firebase:firebase-database:19.7.0' + testImplementation 'junit:junit:4.+' + androidTestImplementation 'androidx.test.ext:junit:1.1.2' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' +} \ No newline at end of file diff --git a/app/google-services.json b/app/google-services.json new file mode 100644 index 0000000..3988046 --- /dev/null +++ b/app/google-services.json @@ -0,0 +1,40 @@ +{ + "project_info": { + "project_number": "456140314141", + "firebase_url": "https://book-sharing2-default-rtdb.europe-west1.firebasedatabase.app", + "project_id": "book-sharing2", + "storage_bucket": "book-sharing2.appspot.com" + }, + "client": [ + { + "client_info": { + "mobilesdk_app_id": "1:456140314141:android:ad2e20e9262ce91ceed8f4", + "android_client_info": { + "package_name": "com.example.booksharing21" + } + }, + "oauth_client": [ + { + "client_id": "456140314141-s896pq88hj9l7oin85j277917r4k2r2g.apps.googleusercontent.com", + "client_type": 3 + } + ], + "api_key": [ + { + "current_key": "AIzaSyB3KRPr8IdLXgFjSywMbWuuMlHlVzqPluk" + } + ], + "services": { + "appinvite_service": { + "other_platform_oauth_client": [ + { + "client_id": "456140314141-s896pq88hj9l7oin85j277917r4k2r2g.apps.googleusercontent.com", + "client_type": 3 + } + ] + } + } + } + ], + "configuration_version": "1" +} \ No newline at end of file diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/app/proguard-rules.pro @@ -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 \ No newline at end of file diff --git a/app/src/androidTest/java/com/example/booksharing21/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/example/booksharing21/ExampleInstrumentedTest.java new file mode 100644 index 0000000..8a70e49 --- /dev/null +++ b/app/src/androidTest/java/com/example/booksharing21/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.example.booksharing21; + +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 Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.example.booksharing21", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..c34eb03 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/HomeActivity.java b/app/src/main/java/com/example/booksharing21/HomeActivity.java new file mode 100644 index 0000000..c135e51 --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/HomeActivity.java @@ -0,0 +1,14 @@ +package com.example.booksharing21; + +import androidx.appcompat.app.AppCompatActivity; + +import android.os.Bundle; + +public class HomeActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_home); + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/MainActivity.java b/app/src/main/java/com/example/booksharing21/MainActivity.java new file mode 100644 index 0000000..e446254 --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/MainActivity.java @@ -0,0 +1,129 @@ +package com.example.booksharing21; + +import androidx.annotation.NonNull; +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.os.Bundle; +import android.util.Patterns; +import android.view.View; +import android.widget.Button; +import android.widget.EditText; +import android.widget.TextView; +import android.widget.Toast; + +import com.google.android.gms.tasks.OnCompleteListener; +import com.google.android.gms.tasks.Task; +import com.google.firebase.auth.AuthResult; +import com.google.firebase.auth.FirebaseAuth; + +public class MainActivity extends AppCompatActivity implements View.OnClickListener { + + private TextView register; + + private EditText editTextemail, editTextpassword; + private Button login; + private FirebaseAuth mAuth; + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + + + register = (TextView) findViewById(R.id.reg); + register.setOnClickListener(this); + + login = (Button) findViewById(R.id.log); + login.setOnClickListener(this); + + editTextpassword = (EditText) findViewById(R.id.password) ; + editTextemail = (EditText) findViewById(R.id.email); + + mAuth = FirebaseAuth.getInstance(); + + + + + } + + @Override + public void onClick(View v) { + switch (v.getId()) { + case R.id.reg: + startActivity(new Intent(this, RegisterActivity.class)); + break; + case R.id.log: + UserLogin(); + break; + + } + } + + private void UserLogin(){ + + String email = editTextemail.getText().toString().trim(); + String password = editTextpassword.getText().toString().trim(); + + + if (email.isEmpty()){ + editTextemail.setError("Email is Required"); + editTextemail.requestFocus(); + return; + } + + if (!Patterns.EMAIL_ADDRESS.matcher(email).matches()){ + editTextemail.setError("Please provide valid email"); + editTextemail.requestFocus(); + return; + } + + if (password.isEmpty()){ + editTextpassword.setError("Password is Required"); + editTextpassword.requestFocus(); + return; + } + + if (password.length()< 8 ){ + editTextpassword.setError("Password should have at least 8 characters"); + editTextpassword.requestFocus(); + return; + } + + + mAuth.signInWithEmailAndPassword(email,password).addOnCompleteListener(new OnCompleteListener() { + @Override + public void onComplete(@NonNull Task task) { + if(task.isSuccessful()){ + + startActivity(new Intent(MainActivity.this, HomeActivity.class)); + + + }else{ + Toast.makeText(MainActivity.this, "Failed To Login, Please try again", Toast.LENGTH_LONG).show(); + + } + + + + + } + }); + + + + + + + + + + + + } + + + + +} \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/RegisterActivity.java b/app/src/main/java/com/example/booksharing21/RegisterActivity.java new file mode 100644 index 0000000..ba09457 --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/RegisterActivity.java @@ -0,0 +1,156 @@ +package com.example.booksharing21; + +import androidx.annotation.NonNull; +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.os.Bundle; +import android.util.Patterns; +import android.view.View; +import android.widget.Button; +import android.widget.EditText; +import android.widget.TextView; +import android.widget.Toast; + +import com.google.android.gms.tasks.OnCompleteListener; +import com.google.android.gms.tasks.Task; +import com.google.firebase.auth.AuthResult; +import com.google.firebase.auth.FirebaseAuth; +import com.google.firebase.database.FirebaseDatabase; + +public class RegisterActivity extends AppCompatActivity implements View.OnClickListener { + + private FirebaseAuth mAuth; + private TextView banner, RegisterUser; + private EditText editp1,editp2,editusername,editemail ; + + + + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_register); + + mAuth = FirebaseAuth.getInstance(); + banner = (TextView) findViewById(R.id.banner); + banner.setOnClickListener(this); + + RegisterUser = (Button) findViewById(R.id.reg1); + RegisterUser.setOnClickListener(this); + + + // Assigning variables to Design ID + + editp1 = (EditText) findViewById(R.id.password); + editp2 = (EditText) findViewById(R.id.password2); + editusername = (EditText) findViewById(R.id.username); + editemail = (EditText) findViewById(R.id.email); + + + } + + @Override + public void onClick(View v) { + switch (v.getId()){ + case R.id.banner: + startActivity(new Intent(this, MainActivity.class)); + break; + case R.id.reg1: + RegisterUser(); + startActivity(new Intent(this, MainActivity.class)); + break; + } +} + + private void RegisterUser() { + String email = editemail.getText().toString().trim(); + String password = editp1.getText().toString().trim(); + String password2 = editp2.getText().toString().trim(); + String username = editusername.getText().toString().trim(); + + if (email.isEmpty()){ + editemail.setError("Email is Required"); + editemail.requestFocus(); + return; + } + if (!Patterns.EMAIL_ADDRESS.matcher(email).matches()){ + editemail.setError("Please provide valid email"); + editemail.requestFocus(); + return; + } + if (username.isEmpty()) { + editusername.setError("Username is Required"); + editusername.requestFocus(); + return; + } + + if (password.isEmpty()){ + editp1.setError("Password is Required"); + editp1.requestFocus(); + return; + } + + if (password2.isEmpty()){ + editp2.setError("Password is Required"); + editp2.requestFocus(); + return; + } + + if (password.length()< 8 ){ + editp1.setError("Password should have at least 8 characters"); + editp1.requestFocus(); + return; + } + + mAuth.createUserWithEmailAndPassword(email,password) + .addOnCompleteListener(new OnCompleteListener() { + + @Override + public void onComplete(@NonNull Task task) { + + if (task.isSuccessful()){ + User user = new User (username,password,email); + FirebaseDatabase.getInstance().getReference("Book Sharing") + .child(FirebaseAuth.getInstance().getCurrentUser().getUid()) + .setValue(user).addOnCompleteListener(new OnCompleteListener() { + + @Override + public void onComplete(@NonNull Task task) { + + if (task.isSuccessful()){ + Toast.makeText(RegisterActivity.this, "User has been registered successfully", Toast.LENGTH_LONG).show(); + + }else{ + + Toast.makeText(RegisterActivity.this, "Failed Try Again", Toast.LENGTH_LONG).show(); + + } + + } + }); + + + }else{ + + Toast.makeText(RegisterActivity.this, "Failed Try Again", Toast.LENGTH_LONG).show(); + + + } + } + }); + + + + + + + + + + + + + } +} \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/SplashActivity.java b/app/src/main/java/com/example/booksharing21/SplashActivity.java new file mode 100644 index 0000000..4e5ae9e --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/SplashActivity.java @@ -0,0 +1,32 @@ +package com.example.booksharing21; + +import androidx.appcompat.app.AppCompatActivity; + +import android.content.Intent; +import android.os.Bundle; +import android.os.Handler; + +public class SplashActivity extends AppCompatActivity { + + private static int SPLASH_TIME_OUT = 4000; + + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_splash); + + + // Splash page + new Handler().postDelayed(new Runnable() { + @Override + public void run() { + Intent homeIntent = new Intent(SplashActivity.this, com.example.booksharing21.MainActivity.class); + startActivity(homeIntent); + finish(); + } + }, SPLASH_TIME_OUT); + + } + +} \ No newline at end of file diff --git a/app/src/main/java/com/example/booksharing21/User.java b/app/src/main/java/com/example/booksharing21/User.java new file mode 100644 index 0000000..d1ccde8 --- /dev/null +++ b/app/src/main/java/com/example/booksharing21/User.java @@ -0,0 +1,26 @@ +package com.example.booksharing21; + +public class User { + + public String username,password , email; + + + public User(){ + + } + + public User(String username , String password , String email){ + + this.username = username ; + this.password = password; + this.email = email; + + + } + + + + + + +} diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/drawable/booksharinglogo.png b/app/src/main/res/drawable/booksharinglogo.png new file mode 100644 index 0000000..f69fd3d Binary files /dev/null and b/app/src/main/res/drawable/booksharinglogo.png differ diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/app/src/main/res/layout/activity_home.xml b/app/src/main/res/layout/activity_home.xml new file mode 100644 index 0000000..bd40776 --- /dev/null +++ b/app/src/main/res/layout/activity_home.xml @@ -0,0 +1,23 @@ + + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..5ba3914 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,105 @@ + + + + + + + + + + + + + + + +