-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1f2bd57
commit 728e466
Showing
12,383 changed files
with
1,932,199 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
App_Prototype\App\.idea | ||
App_Prototype\ | ||
.idea |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+17 Bytes
App_Prototype/App/.gradle/8.4/dependencies-accessors/dependencies-accessors.lock
Binary file not shown.
Empty file.
Binary file not shown.
Binary file added
BIN
+17 Bytes
App_Prototype/App/.gradle/8.4/executionHistory/executionHistory.lock
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Binary file added
BIN
+17 Bytes
App_Prototype/App/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
2 changes: 2 additions & 0 deletions
2
App_Prototype/App/.gradle/buildOutputCleanup/cache.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#Fri Apr 12 11:01:53 EDT 2024 | ||
gradle.version=8.4 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#Fri Apr 12 10:22:59 EDT 2024 | ||
java.home=C\:\\Program Files\\Android\\Android Studio\\jbr |
Binary file not shown.
Empty file.
125 changes: 125 additions & 0 deletions
125
...source_out/py310Debug/out/com/example/myapplication/databinding/ActivityLoginBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
// Generated by view binder compiler. Do not edit! | ||
package com.example.myapplication.databinding; | ||
|
||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import android.widget.Button; | ||
import android.widget.EditText; | ||
import android.widget.ImageView; | ||
import android.widget.TextView; | ||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
import androidx.constraintlayout.widget.ConstraintLayout; | ||
import androidx.viewbinding.ViewBinding; | ||
import androidx.viewbinding.ViewBindings; | ||
import com.example.myapplication.R; | ||
import java.lang.NullPointerException; | ||
import java.lang.Override; | ||
import java.lang.String; | ||
|
||
public final class ActivityLoginBinding implements ViewBinding { | ||
@NonNull | ||
private final ConstraintLayout rootView; | ||
|
||
@NonNull | ||
public final EditText editTextPassword; | ||
|
||
@NonNull | ||
public final EditText editTextUsername; | ||
|
||
@NonNull | ||
public final ImageView imageView; | ||
|
||
@NonNull | ||
public final Button signInButton; | ||
|
||
@NonNull | ||
public final TextView textView; | ||
|
||
@NonNull | ||
public final TextView textViewRegister; | ||
|
||
private ActivityLoginBinding(@NonNull ConstraintLayout rootView, | ||
@NonNull EditText editTextPassword, @NonNull EditText editTextUsername, | ||
@NonNull ImageView imageView, @NonNull Button signInButton, @NonNull TextView textView, | ||
@NonNull TextView textViewRegister) { | ||
this.rootView = rootView; | ||
this.editTextPassword = editTextPassword; | ||
this.editTextUsername = editTextUsername; | ||
this.imageView = imageView; | ||
this.signInButton = signInButton; | ||
this.textView = textView; | ||
this.textViewRegister = textViewRegister; | ||
} | ||
|
||
@Override | ||
@NonNull | ||
public ConstraintLayout getRoot() { | ||
return rootView; | ||
} | ||
|
||
@NonNull | ||
public static ActivityLoginBinding inflate(@NonNull LayoutInflater inflater) { | ||
return inflate(inflater, null, false); | ||
} | ||
|
||
@NonNull | ||
public static ActivityLoginBinding inflate(@NonNull LayoutInflater inflater, | ||
@Nullable ViewGroup parent, boolean attachToParent) { | ||
View root = inflater.inflate(R.layout.activity_login, parent, false); | ||
if (attachToParent) { | ||
parent.addView(root); | ||
} | ||
return bind(root); | ||
} | ||
|
||
@NonNull | ||
public static ActivityLoginBinding bind(@NonNull View rootView) { | ||
// The body of this method is generated in a way you would not otherwise write. | ||
// This is done to optimize the compiled bytecode for size and performance. | ||
int id; | ||
missingId: { | ||
id = R.id.editTextPassword; | ||
EditText editTextPassword = ViewBindings.findChildViewById(rootView, id); | ||
if (editTextPassword == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.editTextUsername; | ||
EditText editTextUsername = ViewBindings.findChildViewById(rootView, id); | ||
if (editTextUsername == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.imageView; | ||
ImageView imageView = ViewBindings.findChildViewById(rootView, id); | ||
if (imageView == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.signInButton; | ||
Button signInButton = ViewBindings.findChildViewById(rootView, id); | ||
if (signInButton == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.textView; | ||
TextView textView = ViewBindings.findChildViewById(rootView, id); | ||
if (textView == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.textViewRegister; | ||
TextView textViewRegister = ViewBindings.findChildViewById(rootView, id); | ||
if (textViewRegister == null) { | ||
break missingId; | ||
} | ||
|
||
return new ActivityLoginBinding((ConstraintLayout) rootView, editTextPassword, | ||
editTextUsername, imageView, signInButton, textView, textViewRegister); | ||
} | ||
String missingId = rootView.getResources().getResourceName(id); | ||
throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | ||
} | ||
} |
81 changes: 81 additions & 0 deletions
81
..._source_out/py310Debug/out/com/example/myapplication/databinding/ActivityMainBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// Generated by view binder compiler. Do not edit! | ||
package com.example.myapplication.databinding; | ||
|
||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import android.widget.FrameLayout; | ||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
import androidx.constraintlayout.widget.ConstraintLayout; | ||
import androidx.viewbinding.ViewBinding; | ||
import androidx.viewbinding.ViewBindings; | ||
import com.example.myapplication.R; | ||
import com.google.android.material.bottomnavigation.BottomNavigationView; | ||
import java.lang.NullPointerException; | ||
import java.lang.Override; | ||
import java.lang.String; | ||
|
||
public final class ActivityMainBinding implements ViewBinding { | ||
@NonNull | ||
private final ConstraintLayout rootView; | ||
|
||
@NonNull | ||
public final BottomNavigationView bottomNavigationView; | ||
|
||
@NonNull | ||
public final FrameLayout frameLayout; | ||
|
||
private ActivityMainBinding(@NonNull ConstraintLayout rootView, | ||
@NonNull BottomNavigationView bottomNavigationView, @NonNull FrameLayout frameLayout) { | ||
this.rootView = rootView; | ||
this.bottomNavigationView = bottomNavigationView; | ||
this.frameLayout = frameLayout; | ||
} | ||
|
||
@Override | ||
@NonNull | ||
public ConstraintLayout getRoot() { | ||
return rootView; | ||
} | ||
|
||
@NonNull | ||
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) { | ||
return inflate(inflater, null, false); | ||
} | ||
|
||
@NonNull | ||
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater, | ||
@Nullable ViewGroup parent, boolean attachToParent) { | ||
View root = inflater.inflate(R.layout.activity_main, parent, false); | ||
if (attachToParent) { | ||
parent.addView(root); | ||
} | ||
return bind(root); | ||
} | ||
|
||
@NonNull | ||
public static ActivityMainBinding bind(@NonNull View rootView) { | ||
// The body of this method is generated in a way you would not otherwise write. | ||
// This is done to optimize the compiled bytecode for size and performance. | ||
int id; | ||
missingId: { | ||
id = R.id.bottomNavigationView; | ||
BottomNavigationView bottomNavigationView = ViewBindings.findChildViewById(rootView, id); | ||
if (bottomNavigationView == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.frame_layout; | ||
FrameLayout frameLayout = ViewBindings.findChildViewById(rootView, id); | ||
if (frameLayout == null) { | ||
break missingId; | ||
} | ||
|
||
return new ActivityMainBinding((ConstraintLayout) rootView, bottomNavigationView, | ||
frameLayout); | ||
} | ||
String missingId = rootView.getResources().getResourceName(id); | ||
throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | ||
} | ||
} |
103 changes: 103 additions & 0 deletions
103
...out/py310Debug/out/com/example/myapplication/databinding/ActivityNotificationBinding.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
// Generated by view binder compiler. Do not edit! | ||
package com.example.myapplication.databinding; | ||
|
||
import android.view.LayoutInflater; | ||
import android.view.View; | ||
import android.view.ViewGroup; | ||
import android.widget.Button; | ||
import android.widget.EditText; | ||
import android.widget.TextView; | ||
import androidx.annotation.NonNull; | ||
import androidx.annotation.Nullable; | ||
import androidx.constraintlayout.widget.ConstraintLayout; | ||
import androidx.viewbinding.ViewBinding; | ||
import androidx.viewbinding.ViewBindings; | ||
import com.example.myapplication.R; | ||
import java.lang.NullPointerException; | ||
import java.lang.Override; | ||
import java.lang.String; | ||
|
||
public final class ActivityNotificationBinding implements ViewBinding { | ||
@NonNull | ||
private final ConstraintLayout rootView; | ||
|
||
@NonNull | ||
public final TextView textView2; | ||
|
||
@NonNull | ||
public final EditText txtEmail; | ||
|
||
@NonNull | ||
public final EditText txtMessage; | ||
|
||
@NonNull | ||
public final Button txtSend; | ||
|
||
private ActivityNotificationBinding(@NonNull ConstraintLayout rootView, | ||
@NonNull TextView textView2, @NonNull EditText txtEmail, @NonNull EditText txtMessage, | ||
@NonNull Button txtSend) { | ||
this.rootView = rootView; | ||
this.textView2 = textView2; | ||
this.txtEmail = txtEmail; | ||
this.txtMessage = txtMessage; | ||
this.txtSend = txtSend; | ||
} | ||
|
||
@Override | ||
@NonNull | ||
public ConstraintLayout getRoot() { | ||
return rootView; | ||
} | ||
|
||
@NonNull | ||
public static ActivityNotificationBinding inflate(@NonNull LayoutInflater inflater) { | ||
return inflate(inflater, null, false); | ||
} | ||
|
||
@NonNull | ||
public static ActivityNotificationBinding inflate(@NonNull LayoutInflater inflater, | ||
@Nullable ViewGroup parent, boolean attachToParent) { | ||
View root = inflater.inflate(R.layout.activity_notification, parent, false); | ||
if (attachToParent) { | ||
parent.addView(root); | ||
} | ||
return bind(root); | ||
} | ||
|
||
@NonNull | ||
public static ActivityNotificationBinding bind(@NonNull View rootView) { | ||
// The body of this method is generated in a way you would not otherwise write. | ||
// This is done to optimize the compiled bytecode for size and performance. | ||
int id; | ||
missingId: { | ||
id = R.id.textView2; | ||
TextView textView2 = ViewBindings.findChildViewById(rootView, id); | ||
if (textView2 == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.txtEmail; | ||
EditText txtEmail = ViewBindings.findChildViewById(rootView, id); | ||
if (txtEmail == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.txtMessage; | ||
EditText txtMessage = ViewBindings.findChildViewById(rootView, id); | ||
if (txtMessage == null) { | ||
break missingId; | ||
} | ||
|
||
id = R.id.txtSend; | ||
Button txtSend = ViewBindings.findChildViewById(rootView, id); | ||
if (txtSend == null) { | ||
break missingId; | ||
} | ||
|
||
return new ActivityNotificationBinding((ConstraintLayout) rootView, textView2, txtEmail, | ||
txtMessage, txtSend); | ||
} | ||
String missingId = rootView.getResources().getResourceName(id); | ||
throw new NullPointerException("Missing required view with ID: ".concat(missingId)); | ||
} | ||
} |
Oops, something went wrong.