diff --git a/android_apps/SnapChatClone/.gitignore b/android_apps/SnapChatClone/.gitignore
new file mode 100644
index 000000000..aa724b770
--- /dev/null
+++ b/android_apps/SnapChatClone/.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/android_apps/SnapChatClone/README.md b/android_apps/SnapChatClone/README.md
new file mode 100644
index 000000000..eee527513
--- /dev/null
+++ b/android_apps/SnapChatClone/README.md
@@ -0,0 +1,46 @@
+
SnapChat Clone
+
+
+
+
Simple Snapchat like app
+
+
+
+ ### :zap: Features:
+ - [x] Create User account
+ - [x] Send snaps(Choose from Device storage)
+ - [x] Send small message along with snap
+ - [x] View Snap
+ - [x] Automatically delete snap after view
+
+
+
+ ### :sunny: Recomended updates:
+ - [ ] Good UI
+ - [ ] Increase upload speed of images
+
+
+
+ ### 🛠️ Tools Used:
+ ![android](https://img.shields.io/badge/Android%20Studio-ED8B00?style=for-the-badge&logo=android&logoColor=white)
+ ![Kotlin](https://img.shields.io/badge/Kotlin-0095D5?&style=for-the-badge&logo=kotlin&logoColor=white)
+ ![Firebase](https://img.shields.io/badge/firebase-ffca28?style=for-the-badge&logo=firebase)
+
+
+
+ ### :confused: How to use:
+
+
+ 1. Download android studio (v3 or higer recomended)
+ 2. Clone the repository using github CLI
+
+ ` gh repo clone AdityaVSM/SnapChatClone `
+
+ 3.Setup Firebase Project. Read official documentation to know more about setting up a project in firebase here
+ 4.Enjoy using the app :blush:
+
+
+ Feel free to contribute:computer:
+
+ ### Thank you:smile:, Happy coding :muscle:
+
diff --git a/android_apps/SnapChatClone/app/.gitignore b/android_apps/SnapChatClone/app/.gitignore
new file mode 100644
index 000000000..42afabfd2
--- /dev/null
+++ b/android_apps/SnapChatClone/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/build.gradle b/android_apps/SnapChatClone/app/build.gradle
new file mode 100644
index 000000000..f4418db18
--- /dev/null
+++ b/android_apps/SnapChatClone/app/build.gradle
@@ -0,0 +1,53 @@
+plugins {
+ id 'com.android.application'
+ id 'kotlin-android'
+}
+
+android {
+ compileSdkVersion 30
+ buildToolsVersion "30.0.2"
+
+ defaultConfig {
+ applicationId "com.example.snapchatclone"
+ minSdkVersion 26
+ 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
+ }
+ kotlinOptions {
+ jvmTarget = '1.8'
+ }
+}
+
+dependencies {
+
+ implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
+ implementation 'androidx.core:core-ktx:1.3.2'
+ implementation 'androidx.appcompat:appcompat:1.2.0'
+ implementation 'com.google.android.material:material:1.3.0'
+ implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
+ testImplementation 'junit:junit:4.+'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.2'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
+ implementation platform('com.google.firebase:firebase-bom:27.1.0')
+ implementation 'com.google.firebase:firebase-auth-ktx:20.0.4'
+ implementation 'com.google.firebase:firebase-storage-ktx'
+ implementation 'com.google.firebase:firebase-database-ktx'
+
+ implementation 'com.github.bumptech.glide:glide:4.12.0'
+ annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
+}
+apply plugin: 'com.google.gms.google-services'
diff --git a/android_apps/SnapChatClone/app/google-services.json b/android_apps/SnapChatClone/app/google-services.json
new file mode 100644
index 000000000..bbf358937
--- /dev/null
+++ b/android_apps/SnapChatClone/app/google-services.json
@@ -0,0 +1,39 @@
+{
+ "project_info": {
+ "project_number": "867489977492",
+ "project_id": "snapchat-e191b",
+ "storage_bucket": "snapchat-e191b.appspot.com"
+ },
+ "client": [
+ {
+ "client_info": {
+ "mobilesdk_app_id": "1:867489977492:android:cacf17a8c841d166699081",
+ "android_client_info": {
+ "package_name": "com.example.snapchatclone"
+ }
+ },
+ "oauth_client": [
+ {
+ "client_id": "867489977492-94j0iho548618oh7qiuk98qr4u4t98jd.apps.googleusercontent.com",
+ "client_type": 3
+ }
+ ],
+ "api_key": [
+ {
+ "current_key": "AIzaSyBtsCEMkXJbnN56MdwbPYmreylQ6EG5Fkk"
+ }
+ ],
+ "services": {
+ "appinvite_service": {
+ "other_platform_oauth_client": [
+ {
+ "client_id": "867489977492-94j0iho548618oh7qiuk98qr4u4t98jd.apps.googleusercontent.com",
+ "client_type": 3
+ }
+ ]
+ }
+ }
+ }
+ ],
+ "configuration_version": "1"
+}
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/proguard-rules.pro b/android_apps/SnapChatClone/app/proguard-rules.pro
new file mode 100644
index 000000000..481bb4348
--- /dev/null
+++ b/android_apps/SnapChatClone/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/android_apps/SnapChatClone/app/src/androidTest/java/com/example/snapchatclone/ExampleInstrumentedTest.kt b/android_apps/SnapChatClone/app/src/androidTest/java/com/example/snapchatclone/ExampleInstrumentedTest.kt
new file mode 100644
index 000000000..30f6162b6
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/androidTest/java/com/example/snapchatclone/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package com.example.snapchatclone
+
+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.snapchatclone", appContext.packageName)
+ }
+}
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/AndroidManifest.xml b/android_apps/SnapChatClone/app/src/main/AndroidManifest.xml
new file mode 100644
index 000000000..ea2273655
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/AndroidManifest.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/ChoseUserActivity.kt b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/ChoseUserActivity.kt
new file mode 100644
index 000000000..31dd7890f
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/ChoseUserActivity.kt
@@ -0,0 +1,57 @@
+package com.example.snapchatclone
+
+import android.content.Intent
+import androidx.appcompat.app.AppCompatActivity
+import android.os.Bundle
+import android.util.Log
+import android.widget.AdapterView
+import android.widget.ArrayAdapter
+import android.widget.ListView
+import com.google.firebase.FirebaseError
+import com.google.firebase.auth.FirebaseAuth
+import com.google.firebase.database.*
+import com.google.firebase.ktx.Firebase
+
+class ChoseUserActivity : AppCompatActivity() {
+ var chooseUserListView: ListView? = null
+ var emailsArrayList:ArrayList = ArrayList()
+ var userNameArrayList:ArrayList = ArrayList()
+ var keys:ArrayList = ArrayList()
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_chose_user)
+
+ chooseUserListView = findViewById(R.id.chooseUserListView)
+ val arrayAdapter = ArrayAdapter(this,android.R.layout.simple_list_item_1,userNameArrayList)
+ chooseUserListView?.adapter = arrayAdapter
+
+ var userName = "";
+ FirebaseDatabase.getInstance().getReference().child("users").addChildEventListener(object :ChildEventListener {
+ override fun onChildAdded(snapshot: DataSnapshot, previousChildName: String?) {
+ userName = snapshot?.child("userName")?.value as String
+ userNameArrayList.add(userName)
+ keys.add(snapshot.key.toString())
+ arrayAdapter.notifyDataSetChanged()
+ }
+
+ override fun onChildChanged(snapshot: DataSnapshot, previousChildName: String?) {}
+ override fun onChildRemoved(snapshot: DataSnapshot) {}
+ override fun onChildMoved(snapshot: DataSnapshot, previousChildName: String?) {}
+ override fun onCancelled(error: DatabaseError) {}
+ })
+ chooseUserListView?.onItemClickListener = AdapterView.OnItemClickListener { parent, view, position, id ->
+ val snapMap: Any = mapOf("from" to userName, "imageName" to intent.getStringExtra("imageName"), "imageUrl" to intent.getStringExtra("imageUrl"), "message" to intent.getStringExtra("message")) as Any
+ FirebaseDatabase.getInstance().getReference().child("users").child(keys.get(position)).child("snaps").push().setValue(snapMap)
+
+ val intent = Intent(this,SnapsActivity::class.java)
+ intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)
+ startActivity(intent)
+ }
+
+ }
+
+
+
+}
+
diff --git a/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/CreateSnapActivity.kt b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/CreateSnapActivity.kt
new file mode 100644
index 000000000..0187a80f7
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/CreateSnapActivity.kt
@@ -0,0 +1,108 @@
+package com.example.snapchatclone
+
+import android.app.Activity
+import android.content.Intent
+import android.content.pm.PackageManager
+import android.graphics.Bitmap
+import android.graphics.drawable.BitmapDrawable
+import android.net.Uri
+import android.os.Bundle
+import android.provider.MediaStore
+import android.util.Log
+import android.view.View
+import android.widget.EditText
+import android.widget.ImageView
+import android.widget.Toast
+import androidx.appcompat.app.AppCompatActivity
+import com.google.android.gms.tasks.Task
+import com.google.firebase.storage.FirebaseStorage
+import java.io.ByteArrayOutputStream
+import java.util.*
+
+
+class CreateSnapActivity : AppCompatActivity() {
+
+ var createSnapImageView:ImageView? = null
+ var messageEditText:EditText? = null
+ val imageName = UUID.randomUUID().toString()+ ".jpg";
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_create_snap)
+
+ createSnapImageView = findViewById(R.id.createSnapImageView)
+ messageEditText = findViewById(R.id.messageEditText)
+ }
+
+ fun getPhoto(){
+ val intent = Intent(Intent.ACTION_PICK, MediaStore.Images.Media.EXTERNAL_CONTENT_URI)
+ startActivityForResult(intent, 1)
+ }
+
+ fun chooseImage(view: View){
+ if(checkSelfPermission(android.Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED){
+ requestPermissions(arrayOf(android.Manifest.permission.READ_EXTERNAL_STORAGE), 1)
+ }else{
+ getPhoto()
+ }
+ }
+
+ override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
+ super.onActivityResult(requestCode, resultCode, data)
+ val selectedImage = data!!.data
+
+ if(requestCode == 1 && resultCode == Activity.RESULT_OK && data != null){
+ try{
+ val bitmap = MediaStore.Images.Media.getBitmap(this.contentResolver, selectedImage)
+ createSnapImageView?.setImageBitmap(bitmap)
+ }catch (e: Exception){
+ e.printStackTrace()
+ }
+ }
+ }
+
+ override fun onRequestPermissionsResult(requestCode: Int, permissions: Array, grantResults: IntArray) {
+ if(requestCode == 1){
+ if(grantResults.size > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED){
+ getPhoto()
+ }
+ }
+ super.onRequestPermissionsResult(requestCode, permissions, grantResults)
+ }
+
+ fun nextClicked(view: View){
+ createSnapImageView?.isDrawingCacheEnabled = true
+ createSnapImageView?.buildDrawingCache()
+ val bitmap = (createSnapImageView?.drawable as BitmapDrawable).bitmap
+ val baos = ByteArrayOutputStream()
+ bitmap?.compress(Bitmap.CompressFormat.JPEG, 100, baos)
+ val data = baos.toByteArray()
+
+ //FirebaseStorage.getInstance().getReference().child("Images").child(imageName)
+
+ var uploadTask = FirebaseStorage.getInstance().getReference().child("Images").child(imageName).putBytes(data)
+ uploadTask.addOnSuccessListener { taskSnapshot ->
+ if (taskSnapshot.metadata != null) {
+ if (taskSnapshot.metadata!!.reference != null) {
+ val result: Task = taskSnapshot.storage.downloadUrl
+ result.addOnSuccessListener { uri ->
+ val imageUrl: String = uri.toString()
+ Log.i("Download url : ", imageUrl.toString())
+
+ val intent = Intent(this, ChoseUserActivity::class.java)
+ intent.putExtra("imageUrl", imageUrl)
+ intent.putExtra("imageName", imageName)
+ intent.putExtra("message", messageEditText?.text.toString())
+ startActivity(intent)
+ }
+ }
+ }
+ }.addOnFailureListener {
+ // Handle unsuccessful uploads
+ Toast.makeText(this, "Upload failed", Toast.LENGTH_SHORT).show()
+ }
+
+
+
+ }
+}
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/MainActivity.kt b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/MainActivity.kt
new file mode 100644
index 000000000..4c207e116
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/MainActivity.kt
@@ -0,0 +1,62 @@
+package com.example.snapchatclone
+
+import android.content.Intent
+import androidx.appcompat.app.AppCompatActivity
+import android.os.Bundle
+import android.util.Log
+import android.view.View
+import android.widget.EditText
+import android.widget.Toast
+import com.google.firebase.auth.FirebaseAuth
+import com.google.firebase.database.FirebaseDatabase
+import com.google.firebase.ktx.Firebase
+
+class MainActivity : AppCompatActivity() {
+ var userNameEditText:EditText?=null
+ var emailEditText : EditText?=null
+ var passwordEditText : EditText?=null
+ val mAuth = FirebaseAuth.getInstance()
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_main)
+
+ userNameEditText = findViewById(R.id.userNameEditText)
+ emailEditText = findViewById(R.id.emailEditText);
+ passwordEditText = findViewById(R.id.passwordEditText)
+
+ if(mAuth.currentUser != null){
+ login()
+ }
+ }
+
+ fun goClicked(view: View){
+ //Check if we can login the user
+
+ mAuth.signInWithEmailAndPassword(emailEditText?.text.toString(), passwordEditText?.text.toString())
+ .addOnCompleteListener(this) { task ->
+ if (task.isSuccessful) {
+ login();
+ } else {
+ // Sign up user
+ mAuth.createUserWithEmailAndPassword(emailEditText?.text.toString(), passwordEditText?.text.toString())
+ .addOnCompleteListener(this) { task ->
+ if(task.isSuccessful){
+ //Add to database
+ FirebaseDatabase.getInstance().getReference().child("users").child(task.result!!.user?.uid!!).child("email").setValue(emailEditText?.text.toString())
+ FirebaseDatabase.getInstance().getReference().child("users").child(task.result!!.user?.uid!!).child("userName").setValue(userNameEditText?.text.toString())
+ login()
+ }else{
+ Toast.makeText(this,"Login failed. Try again", Toast.LENGTH_SHORT).show()
+ }
+ }
+ }
+ }
+ }
+
+ fun login(){
+ //Move to next activity
+ val intent = Intent(this, SnapsActivity::class.java)
+ startActivity(intent)
+ }
+}
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/SnapsActivity.kt b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/SnapsActivity.kt
new file mode 100644
index 000000000..1ad505db2
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/SnapsActivity.kt
@@ -0,0 +1,93 @@
+package com.example.snapchatclone
+
+import android.content.Intent
+import androidx.appcompat.app.AppCompatActivity
+import android.os.Bundle
+import android.view.ContextMenu
+import android.view.Menu
+import android.view.MenuItem
+import android.widget.Adapter
+import android.widget.AdapterView
+import android.widget.ArrayAdapter
+import android.widget.ListView
+import com.google.firebase.auth.FirebaseAuth
+import com.google.firebase.database.ChildEventListener
+import com.google.firebase.database.DataSnapshot
+import com.google.firebase.database.DatabaseError
+import com.google.firebase.database.FirebaseDatabase
+
+class SnapsActivity : AppCompatActivity() {
+ val mAuth = FirebaseAuth.getInstance()
+ var snapsListView:ListView ?= null;
+ //var emailList:ArrayList = ArrayList();
+ var userNameList:ArrayList = ArrayList()
+ var snaps:ArrayList = ArrayList()
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_snaps)
+
+ snapsListView = findViewById(R.id.snapListView)
+ val arrayAdapter = ArrayAdapter(this,android.R.layout.simple_list_item_1,userNameList);
+ snapsListView?.adapter = arrayAdapter
+
+ FirebaseDatabase.getInstance().getReference().child("users").child(mAuth?.currentUser!!.uid).child("snaps").addChildEventListener(object : ChildEventListener {
+ override fun onChildAdded(snapshot: DataSnapshot, previousChildName: String?) {
+ userNameList.add(snapshot.child("from").value as String)
+ snaps.add(snapshot)
+ arrayAdapter.notifyDataSetChanged()
+ }
+ override fun onChildChanged(snapshot: DataSnapshot, previousChildName: String?) {}
+ override fun onChildRemoved(snapshot: DataSnapshot) {
+ var index = 0;
+ for(snap:DataSnapshot in snaps){
+ if(snap.key == snapshot.key){
+ snaps.removeAt(index)
+ userNameList.removeAt(index)
+ }
+ index++;
+ }
+ arrayAdapter.notifyDataSetChanged()
+ }
+ override fun onChildMoved(snapshot: DataSnapshot, previousChildName: String?) {}
+ override fun onCancelled(error: DatabaseError) {}
+ })
+ snapsListView?.onItemClickListener = AdapterView.OnItemClickListener { parent, view, position, id ->
+ FirebaseDatabase.getInstance().getReference()
+ val snapshot = snaps.get(position)
+ var intent = Intent(this, ViewSnapActivity::class.java)
+
+ intent.putExtra("imageName",snapshot.child("imageName").value as String)
+ intent.putExtra("imageUrl",snapshot.child("imageUrl").value as String)
+ intent.putExtra("message",snapshot.child("message").value as String)
+ intent.putExtra("snapKey",snapshot.key)
+
+ startActivity(intent)
+ }
+ }
+
+ override fun onCreateOptionsMenu(menu: Menu?):Boolean{
+ val inflater = menuInflater;
+ inflater.inflate(R.menu.snaps,menu)
+ return super.onCreateOptionsMenu(menu)
+ }
+
+ override fun onOptionsItemSelected(item: MenuItem): Boolean {
+
+ if(item?.itemId == R.id.createSnap){
+ val intent = Intent(this,CreateSnapActivity::class.java)
+ startActivity(intent)
+ }else if(item?.itemId == R.id.logout){
+ mAuth.signOut()
+ finish()
+ }
+
+ return super.onOptionsItemSelected(item)
+ }
+
+ override fun onBackPressed() {
+ mAuth.signOut()
+ super.onBackPressed()
+ }
+
+}
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/ViewSnapActivity.kt b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/ViewSnapActivity.kt
new file mode 100644
index 000000000..9f123062e
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/java/com/example/snapchatclone/ViewSnapActivity.kt
@@ -0,0 +1,70 @@
+package com.example.snapchatclone
+
+import android.graphics.Bitmap
+import android.graphics.BitmapFactory
+import android.os.AsyncTask
+import androidx.appcompat.app.AppCompatActivity
+import android.os.Bundle
+import android.view.View
+import android.widget.ImageView
+import android.widget.TextView
+import com.bumptech.glide.Glide
+import com.google.firebase.auth.FirebaseAuth
+import com.google.firebase.database.FirebaseDatabase
+import com.google.firebase.storage.FirebaseStorage
+import java.lang.Exception
+import java.net.HttpURLConnection
+import java.net.URL
+
+
+class ViewSnapActivity : AppCompatActivity() {
+ var messageTextView: TextView? = null
+ var mAuth = FirebaseAuth.getInstance()
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_new_snap)
+
+ messageTextView = findViewById(R.id.messageTextView)
+ var snapsImageView: ImageView = findViewById(R.id.snapImageView)
+
+ messageTextView?.text = intent.getStringExtra("message")
+
+ var url = intent.getStringExtra("imageUrl")
+ Glide.with(this).load(url).dontAnimate().dontTransform().into(snapsImageView)
+ // Glide.with(.getContext()).load(url).placeholder(R.drawable.default_profile).dontAnimate().into(view);
+ }
+
+ /*val task = ImageDownoader()
+ val myImage: Bitmap
+ try {
+ myImage = task.execute(intent.getStringExtra("imageUrl")).get()
+ snapsImageView?.setImageBitmap(myImage)
+ } catch (e: Exception) {
+ e.printStackTrace()
+ }
+
+ }
+
+ inner class ImageDownoader : AsyncTask() {
+ override fun doInBackground(vararg urls: String?): Bitmap? {
+ try {
+ val url = URL(urls[0])
+ val connection = url.openConnection() as HttpURLConnection
+ connection.connect()
+ val `is` = connection.inputStream
+ return BitmapFactory.decodeStream(`is`)
+ } catch (e: Exception) {
+ e.printStackTrace()
+ return null
+ }
+ }
+ }*/
+
+ override fun onBackPressed() {
+ super.onBackPressed()
+
+ intent.getStringExtra("snapKey")?.let { FirebaseDatabase.getInstance().getReference().child("users").child(mAuth?.currentUser!!.uid).child("snaps").child(it).removeValue() }
+ intent.getStringExtra("imageName")?.let { FirebaseStorage.getInstance().getReference().child("Images").child(it).delete() }
+ }
+}
diff --git a/android_apps/SnapChatClone/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/android_apps/SnapChatClone/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
new file mode 100644
index 000000000..2b068d114
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/drawable/ic_launcher_background.xml b/android_apps/SnapChatClone/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 000000000..07d5da9cb
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/android_apps/SnapChatClone/app/src/main/res/layout/activity_chose_user.xml b/android_apps/SnapChatClone/app/src/main/res/layout/activity_chose_user.xml
new file mode 100644
index 000000000..9f87d96c8
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/layout/activity_chose_user.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/layout/activity_create_snap.xml b/android_apps/SnapChatClone/app/src/main/res/layout/activity_create_snap.xml
new file mode 100644
index 000000000..f2e729330
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/layout/activity_create_snap.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/layout/activity_main.xml b/android_apps/SnapChatClone/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 000000000..b50695255
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/layout/activity_new_snap.xml b/android_apps/SnapChatClone/app/src/main/res/layout/activity_new_snap.xml
new file mode 100644
index 000000000..d48a14ac8
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/layout/activity_new_snap.xml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/layout/activity_snaps.xml b/android_apps/SnapChatClone/app/src/main/res/layout/activity_snaps.xml
new file mode 100644
index 000000000..cb00cce84
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/layout/activity_snaps.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/menu/snaps.xml b/android_apps/SnapChatClone/app/src/main/res/menu/snaps.xml
new file mode 100644
index 000000000..600cbd86d
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/menu/snaps.xml
@@ -0,0 +1,10 @@
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/android_apps/SnapChatClone/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/android_apps/SnapChatClone/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 000000000..eca70cfe5
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 000000000..a571e6009
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 000000000..61da551c5
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 000000000..c41dd2853
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 000000000..db5080a75
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 000000000..6dba46dab
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..da31a871c
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 000000000..15ac68172
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..b216f2d31
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 000000000..f25a41974
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/android_apps/SnapChatClone/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 000000000..e96783ccc
Binary files /dev/null and b/android_apps/SnapChatClone/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/android_apps/SnapChatClone/app/src/main/res/values-night/themes.xml b/android_apps/SnapChatClone/app/src/main/res/values-night/themes.xml
new file mode 100644
index 000000000..654a2ad63
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/values/colors.xml b/android_apps/SnapChatClone/app/src/main/res/values/colors.xml
new file mode 100644
index 000000000..f8c6127d3
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/values/colors.xml
@@ -0,0 +1,10 @@
+
+
+ #FFBB86FC
+ #FF6200EE
+ #FF3700B3
+ #FF03DAC5
+ #FF018786
+ #FF000000
+ #FFFFFFFF
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/values/strings.xml b/android_apps/SnapChatClone/app/src/main/res/values/strings.xml
new file mode 100644
index 000000000..b2d3da8f7
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ SnapChat clone
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/main/res/values/themes.xml b/android_apps/SnapChatClone/app/src/main/res/values/themes.xml
new file mode 100644
index 000000000..7465c4ffb
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/main/res/values/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/app/src/test/java/com/example/snapchatclone/ExampleUnitTest.kt b/android_apps/SnapChatClone/app/src/test/java/com/example/snapchatclone/ExampleUnitTest.kt
new file mode 100644
index 000000000..02ca7f39f
--- /dev/null
+++ b/android_apps/SnapChatClone/app/src/test/java/com/example/snapchatclone/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package com.example.snapchatclone
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/build.gradle b/android_apps/SnapChatClone/build.gradle
new file mode 100644
index 000000000..dccc04d18
--- /dev/null
+++ b/android_apps/SnapChatClone/build.gradle
@@ -0,0 +1,28 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ ext.kotlin_version = "1.4.21"
+ repositories {
+ google()
+ jcenter()
+ mavenCentral()
+ }
+ dependencies {
+ classpath "com.android.tools.build:gradle:4.1.1"
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
+ classpath 'com.google.gms:google-services:4.3.5'
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/gradle.properties b/android_apps/SnapChatClone/gradle.properties
new file mode 100644
index 000000000..98bed167d
--- /dev/null
+++ b/android_apps/SnapChatClone/gradle.properties
@@ -0,0 +1,21 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app"s APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Automatically convert third-party libraries to use AndroidX
+android.enableJetifier=true
+# Kotlin code style for this project: "official" or "obsolete":
+kotlin.code.style=official
\ No newline at end of file
diff --git a/android_apps/SnapChatClone/gradle/wrapper/gradle-wrapper.jar b/android_apps/SnapChatClone/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 000000000..f6b961fd5
Binary files /dev/null and b/android_apps/SnapChatClone/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/android_apps/SnapChatClone/gradle/wrapper/gradle-wrapper.properties b/android_apps/SnapChatClone/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 000000000..80edb3977
--- /dev/null
+++ b/android_apps/SnapChatClone/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Sat Apr 24 19:48:07 IST 2021
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip
diff --git a/android_apps/SnapChatClone/gradlew b/android_apps/SnapChatClone/gradlew
new file mode 100644
index 000000000..cccdd3d51
--- /dev/null
+++ b/android_apps/SnapChatClone/gradlew
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/android_apps/SnapChatClone/gradlew.bat b/android_apps/SnapChatClone/gradlew.bat
new file mode 100644
index 000000000..f9553162f
--- /dev/null
+++ b/android_apps/SnapChatClone/gradlew.bat
@@ -0,0 +1,84 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windows variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/android_apps/SnapChatClone/settings.gradle b/android_apps/SnapChatClone/settings.gradle
new file mode 100644
index 000000000..16c3c9819
--- /dev/null
+++ b/android_apps/SnapChatClone/settings.gradle
@@ -0,0 +1,2 @@
+include ':app'
+rootProject.name = "SnapChat clone"
\ No newline at end of file