code setup
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
|
||||
*.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
|
||||
.aab
|
||||
local.properties
|
||||
|
||||
|
||||
Generated
+3
@@ -0,0 +1,3 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
Generated
+1
@@ -0,0 +1 @@
|
||||
redeyedtest
|
||||
Generated
+6
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CompilerConfiguration">
|
||||
<bytecodeTargetLevel target="17" />
|
||||
</component>
|
||||
</project>
|
||||
Generated
+17
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="deploymentTargetDropDown">
|
||||
<targetSelectedWithDropDown>
|
||||
<Target>
|
||||
<type value="QUICK_BOOT_TARGET" />
|
||||
<deviceKey>
|
||||
<Key>
|
||||
<type value="VIRTUAL_DEVICE_PATH" />
|
||||
<value value="$USER_HOME$/.android/avd/Pixel_7_Pro_API_TiramisuPrivacySandbox.avd" />
|
||||
</Key>
|
||||
</deviceKey>
|
||||
</Target>
|
||||
</targetSelectedWithDropDown>
|
||||
<timeTargetWasSelectedWithDropDown value="2024-04-29T13:56:25.675999Z" />
|
||||
</component>
|
||||
</project>
|
||||
Generated
+19
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="GradleSettings">
|
||||
<option name="linkedExternalProjectsSettings">
|
||||
<GradleProjectSettings>
|
||||
<option name="testRunner" value="GRADLE" />
|
||||
<option name="distributionType" value="DEFAULT_WRAPPED" />
|
||||
<option name="externalProjectPath" value="$PROJECT_DIR$" />
|
||||
<option name="gradleJvm" value="jbr-17" />
|
||||
<option name="modules">
|
||||
<set>
|
||||
<option value="$PROJECT_DIR$" />
|
||||
<option value="$PROJECT_DIR$/app" />
|
||||
</set>
|
||||
</option>
|
||||
</GradleProjectSettings>
|
||||
</option>
|
||||
</component>
|
||||
</project>
|
||||
Generated
+6
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="KotlinJpsPluginSettings">
|
||||
<option name="version" value="1.8.10" />
|
||||
</component>
|
||||
</project>
|
||||
Generated
+10
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" default="true" project-jdk-name="jbr-17" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/build/classes" />
|
||||
</component>
|
||||
<component name="ProjectType">
|
||||
<option name="id" value="Android" />
|
||||
</component>
|
||||
</project>
|
||||
Generated
+6
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
@@ -0,0 +1,163 @@
|
||||
|
||||
plugins {
|
||||
id 'com.android.application'
|
||||
id 'org.jetbrains.kotlin.android'
|
||||
id 'kotlin-kapt'
|
||||
id 'kotlin-parcelize'
|
||||
id 'androidx.navigation.safeargs.kotlin'
|
||||
id 'com.google.gms.google-services'
|
||||
id 'com.google.firebase.crashlytics'
|
||||
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'Manaknight'
|
||||
compileSdk 33
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.manaknight.app"
|
||||
minSdk 23
|
||||
targetSdk 33
|
||||
versionCode 1
|
||||
versionName "1.0.0"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
|
||||
buildConfigField "String", "BASE_URL", "\"https://mkdlabs.com/\""
|
||||
buildConfigField "String", "PROJECT_ID", "\"cmVkZXllZHRlc3Q6amJucWlmMW9zNGJyam1kcTU1amc5bzNmZXJubmhvNXM5/\""
|
||||
buildConfigField "String", "GOOGLE_CLIENT_ID", "\"156797262081-o4r3u8jj2tccv9ptil7k97d7ve5pstru.apps.googleusercontent.com\""
|
||||
}
|
||||
|
||||
android.applicationVariants.all { variant ->
|
||||
variant.outputs.all {
|
||||
outputFileName = "${variant.applicationId}-${variant.versionName}.apk"
|
||||
}
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = '17'
|
||||
}
|
||||
buildFeatures {
|
||||
viewBinding true
|
||||
buildConfig = true
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'androidx.core:core-ktx:1.9.0'
|
||||
implementation 'androidx.appcompat:appcompat:1.6.0'
|
||||
implementation 'com.google.android.material:material:1.7.0'
|
||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
|
||||
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
|
||||
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
|
||||
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
|
||||
implementation 'androidx.annotation:annotation:1.5.0'
|
||||
|
||||
//Firebase
|
||||
implementation platform('com.google.firebase:firebase-bom:31.2.2')
|
||||
implementation 'com.google.firebase:firebase-crashlytics-ktx'
|
||||
implementation 'com.google.firebase:firebase-analytics-ktx'
|
||||
implementation 'com.google.android.gms:play-services-mlkit-text-recognition:18.0.2'
|
||||
implementation 'com.google.firebase:firebase-auth-ktx'
|
||||
implementation 'com.google.firebase:firebase-messaging-ktx'
|
||||
|
||||
//Graph Chart
|
||||
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
|
||||
|
||||
//Google APIs
|
||||
implementation 'com.google.android.gms:play-services-maps:18.1.0'
|
||||
implementation 'com.google.android.gms:play-services-location:21.0.1'
|
||||
implementation 'com.google.android.libraries.places:places:3.0.0'
|
||||
implementation 'com.google.maps.android:android-maps-utils:2.2.0'
|
||||
implementation 'com.google.android.gms:play-services-auth:20.4.1'
|
||||
implementation 'com.google.android.gms:play-services-fitness:20.0.0'
|
||||
|
||||
//In-App Update
|
||||
//implementation 'com.google.android.play:core:1.10.3'
|
||||
|
||||
//ColorPicker
|
||||
implementation 'com.github.duanhong169:colorpicker:1.1.6'
|
||||
implementation 'com.github.duanhong169:checkerboarddrawable:1.0.2'
|
||||
|
||||
//ViewPager
|
||||
implementation 'androidx.viewpager2:viewpager2:1.0.0'
|
||||
|
||||
//Splash screen
|
||||
implementation "androidx.core:core-splashscreen:1.0.0"
|
||||
|
||||
//Text Utils
|
||||
implementation "com.intuit.sdp:sdp-android:1.1.0"
|
||||
implementation 'androidx.core:core-ktx:1.9.0'
|
||||
implementation 'com.google.android.play:app-update-ktx:2.0.1'
|
||||
implementation 'com.google.android.gms:play-services-vision:20.1.3'
|
||||
|
||||
// Koin
|
||||
def koin_android_version= "3.3.0"
|
||||
implementation "io.insert-koin:koin-android:$koin_android_version"
|
||||
|
||||
// Retrofit
|
||||
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
|
||||
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
|
||||
// Requests interceptor
|
||||
implementation "com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.2"
|
||||
//Image processing
|
||||
implementation 'com.github.bumptech.glide:glide:4.14.2'
|
||||
kapt 'com.github.bumptech.glide:compiler:4.14.2'
|
||||
|
||||
//Permissions
|
||||
implementation 'com.karumi:dexter:6.2.3'
|
||||
|
||||
//CameraX
|
||||
def camerax_version = "1.2.2"
|
||||
implementation "androidx.camera:camera-core:${camerax_version}"
|
||||
implementation "androidx.camera:camera-camera2:${camerax_version}"
|
||||
implementation "androidx.camera:camera-lifecycle:${camerax_version}"
|
||||
|
||||
implementation "androidx.camera:camera-view:${camerax_version}"
|
||||
implementation "androidx.camera:camera-extensions:${camerax_version}"
|
||||
|
||||
//IAP
|
||||
def billing_version = "6.0.1"
|
||||
implementation("com.android.billingclient:billing-ktx:$billing_version")
|
||||
|
||||
//Loader
|
||||
implementation "com.github.sakshampruthi:custom-loading-screen:1.16"
|
||||
implementation 'com.github.simonebortolin:FlowLayoutManager:1.8.0'
|
||||
|
||||
implementation 'com.madgag.spongycastle:core:1.54.0.0'
|
||||
implementation 'com.madgag.spongycastle:prov:1.54.0.0'
|
||||
implementation 'com.madgag.spongycastle:pkix:1.54.0.0'
|
||||
implementation 'com.madgag.spongycastle:pg:1.54.0.0'
|
||||
|
||||
implementation 'com.airbnb.android:lottie:6.0.0'
|
||||
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.22'
|
||||
implementation("com.tbuonomo:dotsindicator:4.3")
|
||||
|
||||
implementation 'com.facebook.shimmer:shimmer:0.5.0'
|
||||
|
||||
implementation 'com.google.android.material:material:1.3.0-alpha03'
|
||||
|
||||
// JWT
|
||||
implementation 'io.jsonwebtoken:jjwt-api:0.11.2'
|
||||
implementation 'io.jsonwebtoken:jjwt-impl:0.11.2'
|
||||
implementation 'io.jsonwebtoken:jjwt-jackson:0.11.2'
|
||||
|
||||
//Card view
|
||||
implementation 'androidx.cardview:cardview:1.0.0'
|
||||
|
||||
// STRIPE
|
||||
implementation 'com.stripe:stripe-android:14.2.1'
|
||||
implementation "com.stripe:stripe-java:19.45.0"
|
||||
}
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||
<!--
|
||||
This file is automatically generated by Crashlytics to uniquely
|
||||
identify the mapping file for your Android application.
|
||||
|
||||
Do NOT modify or commit to source control!
|
||||
-->
|
||||
<string name="com.google.firebase.crashlytics.mapping_file_id" tools:ignore="UnusedResources,TypographyDashes" translatable="false">00000000000000000000000000000000</string>
|
||||
</resources>
|
||||
+86
@@ -0,0 +1,86 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.widget.Toolbar;
|
||||
import androidx.drawerlayout.widget.DrawerLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
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 DrawerLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final DrawerLayout activityMain;
|
||||
|
||||
@NonNull
|
||||
public final Toolbar myToolbar;
|
||||
|
||||
@NonNull
|
||||
public final BottomNavigationView navView;
|
||||
|
||||
private ActivityMainBinding(@NonNull DrawerLayout rootView, @NonNull DrawerLayout activityMain,
|
||||
@NonNull Toolbar myToolbar, @NonNull BottomNavigationView navView) {
|
||||
this.rootView = rootView;
|
||||
this.activityMain = activityMain;
|
||||
this.myToolbar = myToolbar;
|
||||
this.navView = navView;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public DrawerLayout 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: {
|
||||
DrawerLayout activityMain = (DrawerLayout) rootView;
|
||||
|
||||
id = R.id.my_toolbar;
|
||||
Toolbar myToolbar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (myToolbar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.nav_view;
|
||||
BottomNavigationView navView = ViewBindings.findChildViewById(rootView, id);
|
||||
if (navView == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityMainBinding((DrawerLayout) rootView, activityMain, myToolbar, navView);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+112
@@ -0,0 +1,112 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
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.google.android.material.textview.MaterialTextView;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class BottomUpdateProfileBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final MaterialTextView btnCamera;
|
||||
|
||||
@NonNull
|
||||
public final MaterialTextView btnGallery;
|
||||
|
||||
@NonNull
|
||||
public final MaterialTextView imageView6;
|
||||
|
||||
@NonNull
|
||||
public final TextView textView29;
|
||||
|
||||
@NonNull
|
||||
public final View view;
|
||||
|
||||
private BottomUpdateProfileBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull MaterialTextView btnCamera, @NonNull MaterialTextView btnGallery,
|
||||
@NonNull MaterialTextView imageView6, @NonNull TextView textView29, @NonNull View view) {
|
||||
this.rootView = rootView;
|
||||
this.btnCamera = btnCamera;
|
||||
this.btnGallery = btnGallery;
|
||||
this.imageView6 = imageView6;
|
||||
this.textView29 = textView29;
|
||||
this.view = view;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static BottomUpdateProfileBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static BottomUpdateProfileBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.bottom_update_profile, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static BottomUpdateProfileBinding 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.btnCamera;
|
||||
MaterialTextView btnCamera = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnCamera == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btnGallery;
|
||||
MaterialTextView btnGallery = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnGallery == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imageView6;
|
||||
MaterialTextView imageView6 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imageView6 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textView29;
|
||||
TextView textView29 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textView29 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.view;
|
||||
View view = ViewBindings.findChildViewById(rootView, id);
|
||||
if (view == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new BottomUpdateProfileBinding((ConstraintLayout) rootView, btnCamera, btnGallery,
|
||||
imageView6, textView29, view);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+104
@@ -0,0 +1,104 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.FrameLayout;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.widget.AppCompatButton;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class DialogAlertViewBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final FrameLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatButton buttonAlertDialogClose;
|
||||
|
||||
@NonNull
|
||||
public final CardView dialogCardView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imageViewAlertDialog;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvAlertDialogMsg;
|
||||
|
||||
private DialogAlertViewBinding(@NonNull FrameLayout rootView,
|
||||
@NonNull AppCompatButton buttonAlertDialogClose, @NonNull CardView dialogCardView,
|
||||
@NonNull ImageView imageViewAlertDialog, @NonNull TextView tvAlertDialogMsg) {
|
||||
this.rootView = rootView;
|
||||
this.buttonAlertDialogClose = buttonAlertDialogClose;
|
||||
this.dialogCardView = dialogCardView;
|
||||
this.imageViewAlertDialog = imageViewAlertDialog;
|
||||
this.tvAlertDialogMsg = tvAlertDialogMsg;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public FrameLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static DialogAlertViewBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static DialogAlertViewBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.dialog_alert_view, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static DialogAlertViewBinding 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.buttonAlertDialogClose;
|
||||
AppCompatButton buttonAlertDialogClose = ViewBindings.findChildViewById(rootView, id);
|
||||
if (buttonAlertDialogClose == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.dialogCardView;
|
||||
CardView dialogCardView = ViewBindings.findChildViewById(rootView, id);
|
||||
if (dialogCardView == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imageViewAlertDialog;
|
||||
ImageView imageViewAlertDialog = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imageViewAlertDialog == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvAlertDialogMsg;
|
||||
TextView tvAlertDialogMsg = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvAlertDialogMsg == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new DialogAlertViewBinding((FrameLayout) rootView, buttonAlertDialogClose,
|
||||
dialogCardView, imageViewAlertDialog, tvAlertDialogMsg);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+113
@@ -0,0 +1,113 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentAlertsBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout llNoAlerts;
|
||||
|
||||
@NonNull
|
||||
public final RecyclerView rcvNewAlerts;
|
||||
|
||||
@NonNull
|
||||
public final TextView textView20;
|
||||
|
||||
@NonNull
|
||||
public final TextView textView21;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvTagNew;
|
||||
|
||||
private FragmentAlertsBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull LinearLayout llNoAlerts, @NonNull RecyclerView rcvNewAlerts,
|
||||
@NonNull TextView textView20, @NonNull TextView textView21, @NonNull TextView tvTagNew) {
|
||||
this.rootView = rootView;
|
||||
this.llNoAlerts = llNoAlerts;
|
||||
this.rcvNewAlerts = rcvNewAlerts;
|
||||
this.textView20 = textView20;
|
||||
this.textView21 = textView21;
|
||||
this.tvTagNew = tvTagNew;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentAlertsBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentAlertsBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_alerts, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentAlertsBinding 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.llNoAlerts;
|
||||
LinearLayout llNoAlerts = ViewBindings.findChildViewById(rootView, id);
|
||||
if (llNoAlerts == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.rcvNewAlerts;
|
||||
RecyclerView rcvNewAlerts = ViewBindings.findChildViewById(rootView, id);
|
||||
if (rcvNewAlerts == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textView20;
|
||||
TextView textView20 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textView20 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textView21;
|
||||
TextView textView21 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textView21 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvTagNew;
|
||||
TextView tvTagNew = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvTagNew == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentAlertsBinding((ConstraintLayout) rootView, llNoAlerts, rcvNewAlerts,
|
||||
textView20, textView21, tvTagNew);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+58
@@ -0,0 +1,58 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
|
||||
public final class FragmentDropdownItemBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final TextView rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView textView;
|
||||
|
||||
private FragmentDropdownItemBinding(@NonNull TextView rootView, @NonNull TextView textView) {
|
||||
this.rootView = rootView;
|
||||
this.textView = textView;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public TextView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentDropdownItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentDropdownItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_dropdown_item, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentDropdownItemBinding bind(@NonNull View rootView) {
|
||||
if (rootView == null) {
|
||||
throw new NullPointerException("rootView");
|
||||
}
|
||||
|
||||
TextView textView = (TextView) rootView;
|
||||
|
||||
return new FragmentDropdownItemBinding((TextView) rootView, textView);
|
||||
}
|
||||
}
|
||||
+93
@@ -0,0 +1,93 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentForgetPasswordBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final Button continueButton;
|
||||
|
||||
@NonNull
|
||||
public final EditText forgetPassword;
|
||||
|
||||
@NonNull
|
||||
public final TextView textView2;
|
||||
|
||||
private FragmentForgetPasswordBinding(@NonNull RelativeLayout rootView,
|
||||
@NonNull Button continueButton, @NonNull EditText forgetPassword,
|
||||
@NonNull TextView textView2) {
|
||||
this.rootView = rootView;
|
||||
this.continueButton = continueButton;
|
||||
this.forgetPassword = forgetPassword;
|
||||
this.textView2 = textView2;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentForgetPasswordBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentForgetPasswordBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_forget_password, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentForgetPasswordBinding 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.continueButton;
|
||||
Button continueButton = ViewBindings.findChildViewById(rootView, id);
|
||||
if (continueButton == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.forgetPassword;
|
||||
EditText forgetPassword = ViewBindings.findChildViewById(rootView, id);
|
||||
if (forgetPassword == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textView2;
|
||||
TextView textView2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textView2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentForgetPasswordBinding((RelativeLayout) rootView, continueButton,
|
||||
forgetPassword, textView2);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+69
@@ -0,0 +1,69 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.LinearLayout;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentFriendListBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RecyclerView recyclerview637093b5;
|
||||
|
||||
private FragmentFriendListBinding(@NonNull LinearLayout rootView,
|
||||
@NonNull RecyclerView recyclerview637093b5) {
|
||||
this.rootView = rootView;
|
||||
this.recyclerview637093b5 = recyclerview637093b5;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentFriendListBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentFriendListBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_friend_list, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentFriendListBinding 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.recyclerview_637093b5;
|
||||
RecyclerView recyclerview637093b5 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (recyclerview637093b5 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentFriendListBinding((LinearLayout) rootView, recyclerview637093b5);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+169
@@ -0,0 +1,169 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentHomeBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView appCompatTextView2;
|
||||
|
||||
@NonNull
|
||||
public final ImageView iViconbutton56bdcb7c;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout iconbutton56bdcb7c;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout linearlayoutE7b214eb;
|
||||
|
||||
@NonNull
|
||||
public final ConstraintLayout lytHead;
|
||||
|
||||
@NonNull
|
||||
public final ImageView profile;
|
||||
|
||||
@NonNull
|
||||
public final RecyclerView recyclerview851cde32;
|
||||
|
||||
@NonNull
|
||||
public final TextView textview70a0c52b;
|
||||
|
||||
@NonNull
|
||||
public final TextView tviconbutton56bdcb7c;
|
||||
|
||||
@NonNull
|
||||
public final ImageView videos;
|
||||
|
||||
private FragmentHomeBinding(@NonNull RelativeLayout rootView,
|
||||
@NonNull TextView appCompatTextView2, @NonNull ImageView iViconbutton56bdcb7c,
|
||||
@NonNull LinearLayout iconbutton56bdcb7c, @NonNull LinearLayout linearlayoutE7b214eb,
|
||||
@NonNull ConstraintLayout lytHead, @NonNull ImageView profile,
|
||||
@NonNull RecyclerView recyclerview851cde32, @NonNull TextView textview70a0c52b,
|
||||
@NonNull TextView tviconbutton56bdcb7c, @NonNull ImageView videos) {
|
||||
this.rootView = rootView;
|
||||
this.appCompatTextView2 = appCompatTextView2;
|
||||
this.iViconbutton56bdcb7c = iViconbutton56bdcb7c;
|
||||
this.iconbutton56bdcb7c = iconbutton56bdcb7c;
|
||||
this.linearlayoutE7b214eb = linearlayoutE7b214eb;
|
||||
this.lytHead = lytHead;
|
||||
this.profile = profile;
|
||||
this.recyclerview851cde32 = recyclerview851cde32;
|
||||
this.textview70a0c52b = textview70a0c52b;
|
||||
this.tviconbutton56bdcb7c = tviconbutton56bdcb7c;
|
||||
this.videos = videos;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentHomeBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentHomeBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_home, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentHomeBinding 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.appCompatTextView2;
|
||||
TextView appCompatTextView2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (appCompatTextView2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.iViconbutton_56bdcb7c;
|
||||
ImageView iViconbutton56bdcb7c = ViewBindings.findChildViewById(rootView, id);
|
||||
if (iViconbutton56bdcb7c == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.iconbutton_56bdcb7c;
|
||||
LinearLayout iconbutton56bdcb7c = ViewBindings.findChildViewById(rootView, id);
|
||||
if (iconbutton56bdcb7c == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.linearlayout_e7b214eb;
|
||||
LinearLayout linearlayoutE7b214eb = ViewBindings.findChildViewById(rootView, id);
|
||||
if (linearlayoutE7b214eb == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.lytHead;
|
||||
ConstraintLayout lytHead = ViewBindings.findChildViewById(rootView, id);
|
||||
if (lytHead == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.profile;
|
||||
ImageView profile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (profile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.recyclerview_851cde32;
|
||||
RecyclerView recyclerview851cde32 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (recyclerview851cde32 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textview_70a0c52b;
|
||||
TextView textview70a0c52b = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textview70a0c52b == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tviconbutton_56bdcb7c;
|
||||
TextView tviconbutton56bdcb7c = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tviconbutton56bdcb7c == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.videos;
|
||||
ImageView videos = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videos == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentHomeBinding((RelativeLayout) rootView, appCompatTextView2,
|
||||
iViconbutton56bdcb7c, iconbutton56bdcb7c, linearlayoutE7b214eb, lytHead, profile,
|
||||
recyclerview851cde32, textview70a0c52b, tviconbutton56bdcb7c, videos);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+168
@@ -0,0 +1,168 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
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.google.android.material.button.MaterialButton;
|
||||
import com.google.android.material.textfield.TextInputEditText;
|
||||
import com.google.android.material.textfield.TextInputLayout;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentLoginBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView btnForgetPassword;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton btnLogin;
|
||||
|
||||
@NonNull
|
||||
public final TextView btnSignup;
|
||||
|
||||
@NonNull
|
||||
public final TextInputEditText edTxtPass;
|
||||
|
||||
@NonNull
|
||||
public final TextInputLayout edTxtPassword;
|
||||
|
||||
@NonNull
|
||||
public final TextInputLayout edTxtUserName;
|
||||
|
||||
@NonNull
|
||||
public final TextInputEditText edTxtUsername;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvAccount;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvWelcomeAuthLogin;
|
||||
|
||||
@NonNull
|
||||
public final View view;
|
||||
|
||||
private FragmentLoginBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull TextView btnForgetPassword, @NonNull MaterialButton btnLogin,
|
||||
@NonNull TextView btnSignup, @NonNull TextInputEditText edTxtPass,
|
||||
@NonNull TextInputLayout edTxtPassword, @NonNull TextInputLayout edTxtUserName,
|
||||
@NonNull TextInputEditText edTxtUsername, @NonNull TextView tvAccount,
|
||||
@NonNull TextView tvWelcomeAuthLogin, @NonNull View view) {
|
||||
this.rootView = rootView;
|
||||
this.btnForgetPassword = btnForgetPassword;
|
||||
this.btnLogin = btnLogin;
|
||||
this.btnSignup = btnSignup;
|
||||
this.edTxtPass = edTxtPass;
|
||||
this.edTxtPassword = edTxtPassword;
|
||||
this.edTxtUserName = edTxtUserName;
|
||||
this.edTxtUsername = edTxtUsername;
|
||||
this.tvAccount = tvAccount;
|
||||
this.tvWelcomeAuthLogin = tvWelcomeAuthLogin;
|
||||
this.view = view;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentLoginBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentLoginBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_login, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentLoginBinding 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.btnForgetPassword;
|
||||
TextView btnForgetPassword = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnForgetPassword == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btnLogin;
|
||||
MaterialButton btnLogin = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnLogin == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btnSignup;
|
||||
TextView btnSignup = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSignup == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtPass;
|
||||
TextInputEditText edTxtPass = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtPass == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtPassword;
|
||||
TextInputLayout edTxtPassword = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtPassword == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtUserName;
|
||||
TextInputLayout edTxtUserName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtUserName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtUsername;
|
||||
TextInputEditText edTxtUsername = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtUsername == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvAccount;
|
||||
TextView tvAccount = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvAccount == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvWelcomeAuthLogin;
|
||||
TextView tvWelcomeAuthLogin = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvWelcomeAuthLogin == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.view;
|
||||
View view = ViewBindings.findChildViewById(rootView, id);
|
||||
if (view == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentLoginBinding((ConstraintLayout) rootView, btnForgetPassword, btnLogin,
|
||||
btnSignup, edTxtPass, edTxtPassword, edTxtUserName, edTxtUsername, tvAccount,
|
||||
tvWelcomeAuthLogin, view);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+146
@@ -0,0 +1,146 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.google.android.material.button.MaterialButton;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentProfileBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton btnLogout;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton buttonEditProfile;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ivEdit;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ivUser;
|
||||
|
||||
@NonNull
|
||||
public final CardView materialCardView2;
|
||||
|
||||
@NonNull
|
||||
public final TextView textViewEmail;
|
||||
|
||||
@NonNull
|
||||
public final TextView textViewFirstName;
|
||||
|
||||
@NonNull
|
||||
public final TextView textViewLastName;
|
||||
|
||||
private FragmentProfileBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull MaterialButton btnLogout, @NonNull MaterialButton buttonEditProfile,
|
||||
@NonNull ImageView ivEdit, @NonNull ImageView ivUser, @NonNull CardView materialCardView2,
|
||||
@NonNull TextView textViewEmail, @NonNull TextView textViewFirstName,
|
||||
@NonNull TextView textViewLastName) {
|
||||
this.rootView = rootView;
|
||||
this.btnLogout = btnLogout;
|
||||
this.buttonEditProfile = buttonEditProfile;
|
||||
this.ivEdit = ivEdit;
|
||||
this.ivUser = ivUser;
|
||||
this.materialCardView2 = materialCardView2;
|
||||
this.textViewEmail = textViewEmail;
|
||||
this.textViewFirstName = textViewFirstName;
|
||||
this.textViewLastName = textViewLastName;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentProfileBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentProfileBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_profile, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentProfileBinding 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.btnLogout;
|
||||
MaterialButton btnLogout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnLogout == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.buttonEditProfile;
|
||||
MaterialButton buttonEditProfile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (buttonEditProfile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ivEdit;
|
||||
ImageView ivEdit = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ivEdit == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ivUser;
|
||||
ImageView ivUser = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ivUser == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.materialCardView2;
|
||||
CardView materialCardView2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (materialCardView2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textViewEmail;
|
||||
TextView textViewEmail = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textViewEmail == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textViewFirstName;
|
||||
TextView textViewFirstName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textViewFirstName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textViewLastName;
|
||||
TextView textViewLastName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textViewLastName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentProfileBinding((ConstraintLayout) rootView, btnLogout, buttonEditProfile,
|
||||
ivEdit, ivUser, materialCardView2, textViewEmail, textViewFirstName, textViewLastName);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+125
@@ -0,0 +1,125 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.google.android.material.button.MaterialButton;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentProfileEditBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton buttonSave;
|
||||
|
||||
@NonNull
|
||||
public final EditText editTextFirstName;
|
||||
|
||||
@NonNull
|
||||
public final EditText editTextLastName;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ivEdit;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ivUser;
|
||||
|
||||
@NonNull
|
||||
public final CardView materialCardView2;
|
||||
|
||||
private FragmentProfileEditBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull MaterialButton buttonSave, @NonNull EditText editTextFirstName,
|
||||
@NonNull EditText editTextLastName, @NonNull ImageView ivEdit, @NonNull ImageView ivUser,
|
||||
@NonNull CardView materialCardView2) {
|
||||
this.rootView = rootView;
|
||||
this.buttonSave = buttonSave;
|
||||
this.editTextFirstName = editTextFirstName;
|
||||
this.editTextLastName = editTextLastName;
|
||||
this.ivEdit = ivEdit;
|
||||
this.ivUser = ivUser;
|
||||
this.materialCardView2 = materialCardView2;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentProfileEditBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentProfileEditBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_profile_edit, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentProfileEditBinding 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.buttonSave;
|
||||
MaterialButton buttonSave = ViewBindings.findChildViewById(rootView, id);
|
||||
if (buttonSave == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.editTextFirstName;
|
||||
EditText editTextFirstName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (editTextFirstName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.editTextLastName;
|
||||
EditText editTextLastName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (editTextLastName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ivEdit;
|
||||
ImageView ivEdit = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ivEdit == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ivUser;
|
||||
ImageView ivUser = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ivUser == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.materialCardView2;
|
||||
CardView materialCardView2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (materialCardView2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentProfileEditBinding((ConstraintLayout) rootView, buttonSave,
|
||||
editTextFirstName, editTextLastName, ivEdit, ivUser, materialCardView2);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+214
@@ -0,0 +1,214 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.AutoCompleteTextView;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.RelativeLayout;
|
||||
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 java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentRecordVideoBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView appCompatTextView2;
|
||||
|
||||
@NonNull
|
||||
public final AutoCompleteTextView autoCompleteTextView;
|
||||
|
||||
@NonNull
|
||||
public final Button buttonDf91c240;
|
||||
|
||||
@NonNull
|
||||
public final EditText edittext2aca91c0;
|
||||
|
||||
@NonNull
|
||||
public final ImageView home;
|
||||
|
||||
@NonNull
|
||||
public final ImageView iViconbuttonFdfd1f58;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout iconbuttonFdfd1f58;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout linearlayout954aa57a;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout linearlayout9b9713e7;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout linearlayoutA469f35f;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout linearlayoutA9b8ff26;
|
||||
|
||||
@NonNull
|
||||
public final ConstraintLayout lytHead;
|
||||
|
||||
@NonNull
|
||||
public final ImageView profile;
|
||||
|
||||
@NonNull
|
||||
public final TextView tviconbuttonFdfd1f58;
|
||||
|
||||
private FragmentRecordVideoBinding(@NonNull RelativeLayout rootView,
|
||||
@NonNull TextView appCompatTextView2, @NonNull AutoCompleteTextView autoCompleteTextView,
|
||||
@NonNull Button buttonDf91c240, @NonNull EditText edittext2aca91c0, @NonNull ImageView home,
|
||||
@NonNull ImageView iViconbuttonFdfd1f58, @NonNull LinearLayout iconbuttonFdfd1f58,
|
||||
@NonNull LinearLayout linearlayout954aa57a, @NonNull LinearLayout linearlayout9b9713e7,
|
||||
@NonNull LinearLayout linearlayoutA469f35f, @NonNull LinearLayout linearlayoutA9b8ff26,
|
||||
@NonNull ConstraintLayout lytHead, @NonNull ImageView profile,
|
||||
@NonNull TextView tviconbuttonFdfd1f58) {
|
||||
this.rootView = rootView;
|
||||
this.appCompatTextView2 = appCompatTextView2;
|
||||
this.autoCompleteTextView = autoCompleteTextView;
|
||||
this.buttonDf91c240 = buttonDf91c240;
|
||||
this.edittext2aca91c0 = edittext2aca91c0;
|
||||
this.home = home;
|
||||
this.iViconbuttonFdfd1f58 = iViconbuttonFdfd1f58;
|
||||
this.iconbuttonFdfd1f58 = iconbuttonFdfd1f58;
|
||||
this.linearlayout954aa57a = linearlayout954aa57a;
|
||||
this.linearlayout9b9713e7 = linearlayout9b9713e7;
|
||||
this.linearlayoutA469f35f = linearlayoutA469f35f;
|
||||
this.linearlayoutA9b8ff26 = linearlayoutA9b8ff26;
|
||||
this.lytHead = lytHead;
|
||||
this.profile = profile;
|
||||
this.tviconbuttonFdfd1f58 = tviconbuttonFdfd1f58;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentRecordVideoBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentRecordVideoBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_record_video, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentRecordVideoBinding 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.appCompatTextView2;
|
||||
TextView appCompatTextView2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (appCompatTextView2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.autoCompleteTextView;
|
||||
AutoCompleteTextView autoCompleteTextView = ViewBindings.findChildViewById(rootView, id);
|
||||
if (autoCompleteTextView == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.button_df91c240;
|
||||
Button buttonDf91c240 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (buttonDf91c240 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edittext_2aca91c0;
|
||||
EditText edittext2aca91c0 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edittext2aca91c0 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.home;
|
||||
ImageView home = ViewBindings.findChildViewById(rootView, id);
|
||||
if (home == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.iViconbutton_fdfd1f58;
|
||||
ImageView iViconbuttonFdfd1f58 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (iViconbuttonFdfd1f58 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.iconbutton_fdfd1f58;
|
||||
LinearLayout iconbuttonFdfd1f58 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (iconbuttonFdfd1f58 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.linearlayout_954aa57a;
|
||||
LinearLayout linearlayout954aa57a = ViewBindings.findChildViewById(rootView, id);
|
||||
if (linearlayout954aa57a == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.linearlayout_9b9713e7;
|
||||
LinearLayout linearlayout9b9713e7 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (linearlayout9b9713e7 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.linearlayout_a469f35f;
|
||||
LinearLayout linearlayoutA469f35f = ViewBindings.findChildViewById(rootView, id);
|
||||
if (linearlayoutA469f35f == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.linearlayout_a9b8ff26;
|
||||
LinearLayout linearlayoutA9b8ff26 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (linearlayoutA9b8ff26 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.lytHead;
|
||||
ConstraintLayout lytHead = ViewBindings.findChildViewById(rootView, id);
|
||||
if (lytHead == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.profile;
|
||||
ImageView profile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (profile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tviconbutton_fdfd1f58;
|
||||
TextView tviconbuttonFdfd1f58 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tviconbuttonFdfd1f58 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentRecordVideoBinding((RelativeLayout) rootView, appCompatTextView2,
|
||||
autoCompleteTextView, buttonDf91c240, edittext2aca91c0, home, iViconbuttonFdfd1f58,
|
||||
iconbuttonFdfd1f58, linearlayout954aa57a, linearlayout9b9713e7, linearlayoutA469f35f,
|
||||
linearlayoutA9b8ff26, lytHead, profile, tviconbuttonFdfd1f58);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+177
@@ -0,0 +1,177 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.google.android.material.textfield.TextInputEditText;
|
||||
import com.google.android.material.textfield.TextInputLayout;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentResetPasswordBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final EditText code1;
|
||||
|
||||
@NonNull
|
||||
public final EditText code2;
|
||||
|
||||
@NonNull
|
||||
public final EditText code3;
|
||||
|
||||
@NonNull
|
||||
public final EditText code4;
|
||||
|
||||
@NonNull
|
||||
public final EditText code5;
|
||||
|
||||
@NonNull
|
||||
public final EditText code6;
|
||||
|
||||
@NonNull
|
||||
public final TextInputLayout edTxtPassword;
|
||||
|
||||
@NonNull
|
||||
public final TextInputEditText newPassword;
|
||||
|
||||
@NonNull
|
||||
public final Button submitButton;
|
||||
|
||||
@NonNull
|
||||
public final TextView textView2;
|
||||
|
||||
@NonNull
|
||||
public final TextView textView3;
|
||||
|
||||
private FragmentResetPasswordBinding(@NonNull RelativeLayout rootView, @NonNull EditText code1,
|
||||
@NonNull EditText code2, @NonNull EditText code3, @NonNull EditText code4,
|
||||
@NonNull EditText code5, @NonNull EditText code6, @NonNull TextInputLayout edTxtPassword,
|
||||
@NonNull TextInputEditText newPassword, @NonNull Button submitButton,
|
||||
@NonNull TextView textView2, @NonNull TextView textView3) {
|
||||
this.rootView = rootView;
|
||||
this.code1 = code1;
|
||||
this.code2 = code2;
|
||||
this.code3 = code3;
|
||||
this.code4 = code4;
|
||||
this.code5 = code5;
|
||||
this.code6 = code6;
|
||||
this.edTxtPassword = edTxtPassword;
|
||||
this.newPassword = newPassword;
|
||||
this.submitButton = submitButton;
|
||||
this.textView2 = textView2;
|
||||
this.textView3 = textView3;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentResetPasswordBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentResetPasswordBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_reset_password, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentResetPasswordBinding 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.code1;
|
||||
EditText code1 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (code1 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.code2;
|
||||
EditText code2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (code2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.code3;
|
||||
EditText code3 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (code3 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.code4;
|
||||
EditText code4 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (code4 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.code5;
|
||||
EditText code5 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (code5 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.code6;
|
||||
EditText code6 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (code6 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtPassword;
|
||||
TextInputLayout edTxtPassword = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtPassword == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.newPassword;
|
||||
TextInputEditText newPassword = ViewBindings.findChildViewById(rootView, id);
|
||||
if (newPassword == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.submitButton;
|
||||
Button submitButton = ViewBindings.findChildViewById(rootView, id);
|
||||
if (submitButton == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textView2;
|
||||
TextView textView2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textView2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textView3;
|
||||
TextView textView3 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textView3 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentResetPasswordBinding((RelativeLayout) rootView, code1, code2, code3, code4,
|
||||
code5, code6, edTxtPassword, newPassword, submitButton, textView2, textView3);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+80
@@ -0,0 +1,80 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.RelativeLayout;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentRoomListBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView addRoom;
|
||||
|
||||
@NonNull
|
||||
public final RecyclerView recyclerview637093b5;
|
||||
|
||||
private FragmentRoomListBinding(@NonNull RelativeLayout rootView, @NonNull ImageView addRoom,
|
||||
@NonNull RecyclerView recyclerview637093b5) {
|
||||
this.rootView = rootView;
|
||||
this.addRoom = addRoom;
|
||||
this.recyclerview637093b5 = recyclerview637093b5;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentRoomListBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentRoomListBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_room_list, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentRoomListBinding 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.addRoom;
|
||||
ImageView addRoom = ViewBindings.findChildViewById(rootView, id);
|
||||
if (addRoom == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.recyclerview_637093b5;
|
||||
RecyclerView recyclerview637093b5 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (recyclerview637093b5 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentRoomListBinding((RelativeLayout) rootView, addRoom, recyclerview637093b5);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+254
@@ -0,0 +1,254 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.CheckBox;
|
||||
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.google.android.material.button.MaterialButton;
|
||||
import com.google.android.material.textfield.TextInputEditText;
|
||||
import com.google.android.material.textfield.TextInputLayout;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentSignUpBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton btnCreateAccount;
|
||||
|
||||
@NonNull
|
||||
public final TextView btnSignin;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox cbAgree;
|
||||
|
||||
@NonNull
|
||||
public final TextInputLayout edTxtEmail;
|
||||
|
||||
@NonNull
|
||||
public final TextInputLayout edTxtFullName;
|
||||
|
||||
@NonNull
|
||||
public final TextInputEditText edTxtName;
|
||||
|
||||
@NonNull
|
||||
public final TextInputLayout edTxtPassword;
|
||||
|
||||
@NonNull
|
||||
public final TextInputLayout edTxtUserName;
|
||||
|
||||
@NonNull
|
||||
public final TextInputEditText edTxtUsername;
|
||||
|
||||
@NonNull
|
||||
public final TextInputEditText edtEmail;
|
||||
|
||||
@NonNull
|
||||
public final TextInputEditText edtPass;
|
||||
|
||||
@NonNull
|
||||
public final Button ivBack;
|
||||
|
||||
@NonNull
|
||||
public final Button ivDashLin1;
|
||||
|
||||
@NonNull
|
||||
public final TextView textViewAuthSignUp;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvAccount;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvAgree;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvInvalid;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvNotMatch;
|
||||
|
||||
private FragmentSignUpBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull MaterialButton btnCreateAccount, @NonNull TextView btnSignin,
|
||||
@NonNull CheckBox cbAgree, @NonNull TextInputLayout edTxtEmail,
|
||||
@NonNull TextInputLayout edTxtFullName, @NonNull TextInputEditText edTxtName,
|
||||
@NonNull TextInputLayout edTxtPassword, @NonNull TextInputLayout edTxtUserName,
|
||||
@NonNull TextInputEditText edTxtUsername, @NonNull TextInputEditText edtEmail,
|
||||
@NonNull TextInputEditText edtPass, @NonNull Button ivBack, @NonNull Button ivDashLin1,
|
||||
@NonNull TextView textViewAuthSignUp, @NonNull TextView tvAccount, @NonNull TextView tvAgree,
|
||||
@NonNull TextView tvInvalid, @NonNull TextView tvNotMatch) {
|
||||
this.rootView = rootView;
|
||||
this.btnCreateAccount = btnCreateAccount;
|
||||
this.btnSignin = btnSignin;
|
||||
this.cbAgree = cbAgree;
|
||||
this.edTxtEmail = edTxtEmail;
|
||||
this.edTxtFullName = edTxtFullName;
|
||||
this.edTxtName = edTxtName;
|
||||
this.edTxtPassword = edTxtPassword;
|
||||
this.edTxtUserName = edTxtUserName;
|
||||
this.edTxtUsername = edTxtUsername;
|
||||
this.edtEmail = edtEmail;
|
||||
this.edtPass = edtPass;
|
||||
this.ivBack = ivBack;
|
||||
this.ivDashLin1 = ivDashLin1;
|
||||
this.textViewAuthSignUp = textViewAuthSignUp;
|
||||
this.tvAccount = tvAccount;
|
||||
this.tvAgree = tvAgree;
|
||||
this.tvInvalid = tvInvalid;
|
||||
this.tvNotMatch = tvNotMatch;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentSignUpBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentSignUpBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_sign_up, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentSignUpBinding 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.btnCreateAccount;
|
||||
MaterialButton btnCreateAccount = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnCreateAccount == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btnSignin;
|
||||
TextView btnSignin = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSignin == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.cbAgree;
|
||||
CheckBox cbAgree = ViewBindings.findChildViewById(rootView, id);
|
||||
if (cbAgree == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtEmail;
|
||||
TextInputLayout edTxtEmail = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtEmail == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtFullName;
|
||||
TextInputLayout edTxtFullName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtFullName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtName;
|
||||
TextInputEditText edTxtName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtPassword;
|
||||
TextInputLayout edTxtPassword = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtPassword == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtUserName;
|
||||
TextInputLayout edTxtUserName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtUserName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edTxtUsername;
|
||||
TextInputEditText edTxtUsername = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edTxtUsername == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edtEmail;
|
||||
TextInputEditText edtEmail = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edtEmail == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edtPass;
|
||||
TextInputEditText edtPass = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edtPass == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ivBack;
|
||||
Button ivBack = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ivBack == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ivDashLin1;
|
||||
Button ivDashLin1 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ivDashLin1 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textViewAuthSignUp;
|
||||
TextView textViewAuthSignUp = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textViewAuthSignUp == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvAccount;
|
||||
TextView tvAccount = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvAccount == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tv_agree;
|
||||
TextView tvAgree = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvAgree == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvInvalid;
|
||||
TextView tvInvalid = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvInvalid == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvNotMatch;
|
||||
TextView tvNotMatch = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvNotMatch == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentSignUpBinding((ConstraintLayout) rootView, btnCreateAccount, btnSignin,
|
||||
cbAgree, edTxtEmail, edTxtFullName, edTxtName, edTxtPassword, edTxtUserName,
|
||||
edTxtUsername, edtEmail, edtPass, ivBack, ivDashLin1, textViewAuthSignUp, tvAccount,
|
||||
tvAgree, tvInvalid, tvNotMatch);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+114
@@ -0,0 +1,114 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.google.android.material.button.MaterialButton;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentSplashBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton btnGoogle;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton btnSplashRegister;
|
||||
|
||||
@NonNull
|
||||
public final MaterialButton buttonSplashLogin;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imageViewSplash;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout linearLayout;
|
||||
|
||||
private FragmentSplashBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull MaterialButton btnGoogle, @NonNull MaterialButton btnSplashRegister,
|
||||
@NonNull MaterialButton buttonSplashLogin, @NonNull ImageView imageViewSplash,
|
||||
@NonNull LinearLayout linearLayout) {
|
||||
this.rootView = rootView;
|
||||
this.btnGoogle = btnGoogle;
|
||||
this.btnSplashRegister = btnSplashRegister;
|
||||
this.buttonSplashLogin = buttonSplashLogin;
|
||||
this.imageViewSplash = imageViewSplash;
|
||||
this.linearLayout = linearLayout;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentSplashBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentSplashBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_splash, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentSplashBinding 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.btnGoogle;
|
||||
MaterialButton btnGoogle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnGoogle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btnSplashRegister;
|
||||
MaterialButton btnSplashRegister = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSplashRegister == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.buttonSplashLogin;
|
||||
MaterialButton buttonSplashLogin = ViewBindings.findChildViewById(rootView, id);
|
||||
if (buttonSplashLogin == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imageViewSplash;
|
||||
ImageView imageViewSplash = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imageViewSplash == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.linearLayout;
|
||||
LinearLayout linearLayout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (linearLayout == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentSplashBinding((ConstraintLayout) rootView, btnGoogle, btnSplashRegister,
|
||||
buttonSplashLogin, imageViewSplash, linearLayout);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+125
@@ -0,0 +1,125 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.SurfaceView;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
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 java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentVideoUiBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView appCompatTextView2;
|
||||
|
||||
@NonNull
|
||||
public final Button btnStop;
|
||||
|
||||
@NonNull
|
||||
public final ImageView home;
|
||||
|
||||
@NonNull
|
||||
public final ConstraintLayout lytHead;
|
||||
|
||||
@NonNull
|
||||
public final SurfaceView preview;
|
||||
|
||||
@NonNull
|
||||
public final ImageView profile;
|
||||
|
||||
private FragmentVideoUiBinding(@NonNull LinearLayout rootView,
|
||||
@NonNull TextView appCompatTextView2, @NonNull Button btnStop, @NonNull ImageView home,
|
||||
@NonNull ConstraintLayout lytHead, @NonNull SurfaceView preview, @NonNull ImageView profile) {
|
||||
this.rootView = rootView;
|
||||
this.appCompatTextView2 = appCompatTextView2;
|
||||
this.btnStop = btnStop;
|
||||
this.home = home;
|
||||
this.lytHead = lytHead;
|
||||
this.preview = preview;
|
||||
this.profile = profile;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentVideoUiBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentVideoUiBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_video_ui, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentVideoUiBinding 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.appCompatTextView2;
|
||||
TextView appCompatTextView2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (appCompatTextView2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_stop;
|
||||
Button btnStop = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnStop == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.home;
|
||||
ImageView home = ViewBindings.findChildViewById(rootView, id);
|
||||
if (home == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.lytHead;
|
||||
ConstraintLayout lytHead = ViewBindings.findChildViewById(rootView, id);
|
||||
if (lytHead == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.preview;
|
||||
SurfaceView preview = ViewBindings.findChildViewById(rootView, id);
|
||||
if (preview == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.profile;
|
||||
ImageView profile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (profile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentVideoUiBinding((LinearLayout) rootView, appCompatTextView2, btnStop, home,
|
||||
lytHead, preview, profile);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+115
@@ -0,0 +1,115 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class FragmentVideosBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView appCompatTextView2;
|
||||
|
||||
@NonNull
|
||||
public final ImageView home;
|
||||
|
||||
@NonNull
|
||||
public final ConstraintLayout lytHead;
|
||||
|
||||
@NonNull
|
||||
public final ImageView profile;
|
||||
|
||||
@NonNull
|
||||
public final RecyclerView recyclerview85f82ce2;
|
||||
|
||||
private FragmentVideosBinding(@NonNull LinearLayout rootView,
|
||||
@NonNull TextView appCompatTextView2, @NonNull ImageView home,
|
||||
@NonNull ConstraintLayout lytHead, @NonNull ImageView profile,
|
||||
@NonNull RecyclerView recyclerview85f82ce2) {
|
||||
this.rootView = rootView;
|
||||
this.appCompatTextView2 = appCompatTextView2;
|
||||
this.home = home;
|
||||
this.lytHead = lytHead;
|
||||
this.profile = profile;
|
||||
this.recyclerview85f82ce2 = recyclerview85f82ce2;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentVideosBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentVideosBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.fragment_videos, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static FragmentVideosBinding 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.appCompatTextView2;
|
||||
TextView appCompatTextView2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (appCompatTextView2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.home;
|
||||
ImageView home = ViewBindings.findChildViewById(rootView, id);
|
||||
if (home == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.lytHead;
|
||||
ConstraintLayout lytHead = ViewBindings.findChildViewById(rootView, id);
|
||||
if (lytHead == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.profile;
|
||||
ImageView profile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (profile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.recyclerview_85f82ce2;
|
||||
RecyclerView recyclerview85f82ce2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (recyclerview85f82ce2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new FragmentVideosBinding((LinearLayout) rootView, appCompatTextView2, home, lytHead,
|
||||
profile, recyclerview85f82ce2);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+112
@@ -0,0 +1,112 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class HolderVideoBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final CardView rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoId;
|
||||
|
||||
@NonNull
|
||||
public final ImageView videoImage;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoPrice;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoUrl;
|
||||
|
||||
private HolderVideoBinding(@NonNull CardView rootView, @NonNull TextView videoId,
|
||||
@NonNull ImageView videoImage, @NonNull TextView videoPrice, @NonNull TextView videoTitle,
|
||||
@NonNull TextView videoUrl) {
|
||||
this.rootView = rootView;
|
||||
this.videoId = videoId;
|
||||
this.videoImage = videoImage;
|
||||
this.videoPrice = videoPrice;
|
||||
this.videoTitle = videoTitle;
|
||||
this.videoUrl = videoUrl;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public CardView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static HolderVideoBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static HolderVideoBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.holder_video, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static HolderVideoBinding 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.video_id;
|
||||
TextView videoId = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoId == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.video_image;
|
||||
ImageView videoImage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoImage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.video_price;
|
||||
TextView videoPrice = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoPrice == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.video_title;
|
||||
TextView videoTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.video_url;
|
||||
TextView videoUrl = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoUrl == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new HolderVideoBinding((CardView) rootView, videoId, videoImage, videoPrice,
|
||||
videoTitle, videoUrl);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class HolderVideoslistBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final CardView rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoslistId;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoslistImage;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoslistPrice;
|
||||
|
||||
@NonNull
|
||||
public final TextView videoslistUrl;
|
||||
|
||||
private HolderVideoslistBinding(@NonNull CardView rootView, @NonNull TextView videoslistId,
|
||||
@NonNull TextView videoslistImage, @NonNull TextView videoslistPrice,
|
||||
@NonNull TextView videoslistUrl) {
|
||||
this.rootView = rootView;
|
||||
this.videoslistId = videoslistId;
|
||||
this.videoslistImage = videoslistImage;
|
||||
this.videoslistPrice = videoslistPrice;
|
||||
this.videoslistUrl = videoslistUrl;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public CardView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static HolderVideoslistBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static HolderVideoslistBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.holder_videoslist, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static HolderVideoslistBinding 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.videoslist_id;
|
||||
TextView videoslistId = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoslistId == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.videoslist_Image;
|
||||
TextView videoslistImage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoslistImage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.videoslist_Price;
|
||||
TextView videoslistPrice = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoslistPrice == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.videoslist_url;
|
||||
TextView videoslistUrl = ViewBindings.findChildViewById(rootView, id);
|
||||
if (videoslistUrl == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new HolderVideoslistBinding((CardView) rootView, videoslistId, videoslistImage,
|
||||
videoslistPrice, videoslistUrl);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+92
@@ -0,0 +1,92 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
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.google.android.material.imageview.ShapeableImageView;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ItemAppAlertBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ShapeableImageView imageView4;
|
||||
|
||||
@NonNull
|
||||
public final TextView textViewAlertMsg;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvTimeAgo;
|
||||
|
||||
private ItemAppAlertBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull ShapeableImageView imageView4, @NonNull TextView textViewAlertMsg,
|
||||
@NonNull TextView tvTimeAgo) {
|
||||
this.rootView = rootView;
|
||||
this.imageView4 = imageView4;
|
||||
this.textViewAlertMsg = textViewAlertMsg;
|
||||
this.tvTimeAgo = tvTimeAgo;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ItemAppAlertBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ItemAppAlertBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.item_app_alert, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ItemAppAlertBinding 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.imageView4;
|
||||
ShapeableImageView imageView4 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imageView4 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.textViewAlertMsg;
|
||||
TextView textViewAlertMsg = ViewBindings.findChildViewById(rootView, id);
|
||||
if (textViewAlertMsg == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvTimeAgo;
|
||||
TextView tvTimeAgo = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvTimeAgo == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ItemAppAlertBinding((ConstraintLayout) rootView, imageView4, textViewAlertMsg,
|
||||
tvTimeAgo);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+123
@@ -0,0 +1,123 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ItemBroadcastVideoBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final CardView cvImage;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imageView;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvCountry;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvName;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvPrice;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvUploadTime;
|
||||
|
||||
private ItemBroadcastVideoBinding(@NonNull ConstraintLayout rootView, @NonNull CardView cvImage,
|
||||
@NonNull ImageView imageView, @NonNull TextView tvCountry, @NonNull TextView tvName,
|
||||
@NonNull TextView tvPrice, @NonNull TextView tvUploadTime) {
|
||||
this.rootView = rootView;
|
||||
this.cvImage = cvImage;
|
||||
this.imageView = imageView;
|
||||
this.tvCountry = tvCountry;
|
||||
this.tvName = tvName;
|
||||
this.tvPrice = tvPrice;
|
||||
this.tvUploadTime = tvUploadTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ItemBroadcastVideoBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ItemBroadcastVideoBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.item_broadcast_video, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ItemBroadcastVideoBinding 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.cvImage;
|
||||
CardView cvImage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (cvImage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imageView;
|
||||
ImageView imageView = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imageView == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvCountry;
|
||||
TextView tvCountry = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvCountry == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvName;
|
||||
TextView tvName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvPrice;
|
||||
TextView tvPrice = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvPrice == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tvUploadTime;
|
||||
TextView tvUploadTime = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvUploadTime == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ItemBroadcastVideoBinding((ConstraintLayout) rootView, cvImage, imageView,
|
||||
tvCountry, tvName, tvPrice, tvUploadTime);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+113
@@ -0,0 +1,113 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ReceiveImageMessageItemBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgMessage;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgProfile;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtDate;
|
||||
|
||||
@NonNull
|
||||
public final CardView txtMessage;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtUsername;
|
||||
|
||||
private ReceiveImageMessageItemBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull ImageView imgMessage, @NonNull ImageView imgProfile, @NonNull TextView txtDate,
|
||||
@NonNull CardView txtMessage, @NonNull TextView txtUsername) {
|
||||
this.rootView = rootView;
|
||||
this.imgMessage = imgMessage;
|
||||
this.imgProfile = imgProfile;
|
||||
this.txtDate = txtDate;
|
||||
this.txtMessage = txtMessage;
|
||||
this.txtUsername = txtUsername;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveImageMessageItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveImageMessageItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.receive_image_message_item, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveImageMessageItemBinding 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.imgMessage;
|
||||
ImageView imgMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imgProfile;
|
||||
ImageView imgProfile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgProfile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtDate;
|
||||
TextView txtDate = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtDate == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtMessage;
|
||||
CardView txtMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtUsername;
|
||||
TextView txtUsername = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtUsername == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ReceiveImageMessageItemBinding((ConstraintLayout) rootView, imgMessage, imgProfile,
|
||||
txtDate, txtMessage, txtUsername);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+102
@@ -0,0 +1,102 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
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 java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ReceiveTextMessageItemBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgProfile;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtDate;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtMessage;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtUsername;
|
||||
|
||||
private ReceiveTextMessageItemBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull ImageView imgProfile, @NonNull TextView txtDate, @NonNull TextView txtMessage,
|
||||
@NonNull TextView txtUsername) {
|
||||
this.rootView = rootView;
|
||||
this.imgProfile = imgProfile;
|
||||
this.txtDate = txtDate;
|
||||
this.txtMessage = txtMessage;
|
||||
this.txtUsername = txtUsername;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveTextMessageItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveTextMessageItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.receive_text_message_item, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveTextMessageItemBinding 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.imgProfile;
|
||||
ImageView imgProfile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgProfile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtDate;
|
||||
TextView txtDate = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtDate == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtMessage;
|
||||
TextView txtMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtUsername;
|
||||
TextView txtUsername = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtUsername == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ReceiveTextMessageItemBinding((ConstraintLayout) rootView, imgProfile, txtDate,
|
||||
txtMessage, txtUsername);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+113
@@ -0,0 +1,113 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ReceiveVideoMessageItemBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgMessage;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgProfile;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtDate;
|
||||
|
||||
@NonNull
|
||||
public final CardView txtMessage;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtUsername;
|
||||
|
||||
private ReceiveVideoMessageItemBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull ImageView imgMessage, @NonNull ImageView imgProfile, @NonNull TextView txtDate,
|
||||
@NonNull CardView txtMessage, @NonNull TextView txtUsername) {
|
||||
this.rootView = rootView;
|
||||
this.imgMessage = imgMessage;
|
||||
this.imgProfile = imgProfile;
|
||||
this.txtDate = txtDate;
|
||||
this.txtMessage = txtMessage;
|
||||
this.txtUsername = txtUsername;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveVideoMessageItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveVideoMessageItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.receive_video_message_item, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ReceiveVideoMessageItemBinding 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.imgMessage;
|
||||
ImageView imgMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imgProfile;
|
||||
ImageView imgProfile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgProfile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtDate;
|
||||
TextView txtDate = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtDate == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtMessage;
|
||||
CardView txtMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtUsername;
|
||||
TextView txtUsername = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtUsername == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ReceiveVideoMessageItemBinding((ConstraintLayout) rootView, imgMessage, imgProfile,
|
||||
txtDate, txtMessage, txtUsername);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class RoomDataBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final CardView rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView dataId;
|
||||
|
||||
private RoomDataBinding(@NonNull CardView rootView, @NonNull TextView dataId) {
|
||||
this.rootView = rootView;
|
||||
this.dataId = dataId;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public CardView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static RoomDataBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static RoomDataBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.room_data, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static RoomDataBinding 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.data_id;
|
||||
TextView dataId = ViewBindings.findChildViewById(rootView, id);
|
||||
if (dataId == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new RoomDataBinding((CardView) rootView, dataId);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+92
@@ -0,0 +1,92 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class SendImageMessageItemBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgMessage;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtDate;
|
||||
|
||||
@NonNull
|
||||
public final CardView txtMessage;
|
||||
|
||||
private SendImageMessageItemBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull ImageView imgMessage, @NonNull TextView txtDate, @NonNull CardView txtMessage) {
|
||||
this.rootView = rootView;
|
||||
this.imgMessage = imgMessage;
|
||||
this.txtDate = txtDate;
|
||||
this.txtMessage = txtMessage;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendImageMessageItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendImageMessageItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.send_image_message_item, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendImageMessageItemBinding 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.imgMessage;
|
||||
ImageView imgMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtDate;
|
||||
TextView txtDate = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtDate == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtMessage;
|
||||
CardView txtMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new SendImageMessageItemBinding((ConstraintLayout) rootView, imgMessage, txtDate,
|
||||
txtMessage);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+79
@@ -0,0 +1,79 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
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 java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class SendTextMessageItemBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtDate;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtMessage;
|
||||
|
||||
private SendTextMessageItemBinding(@NonNull ConstraintLayout rootView, @NonNull TextView txtDate,
|
||||
@NonNull TextView txtMessage) {
|
||||
this.rootView = rootView;
|
||||
this.txtDate = txtDate;
|
||||
this.txtMessage = txtMessage;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendTextMessageItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendTextMessageItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.send_text_message_item, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendTextMessageItemBinding 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.txtDate;
|
||||
TextView txtDate = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtDate == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtMessage;
|
||||
TextView txtMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new SendTextMessageItemBinding((ConstraintLayout) rootView, txtDate, txtMessage);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+92
@@ -0,0 +1,92 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class SendVideoMessageItemBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgMessage;
|
||||
|
||||
@NonNull
|
||||
public final TextView txtDate;
|
||||
|
||||
@NonNull
|
||||
public final CardView txtMessage;
|
||||
|
||||
private SendVideoMessageItemBinding(@NonNull ConstraintLayout rootView,
|
||||
@NonNull ImageView imgMessage, @NonNull TextView txtDate, @NonNull CardView txtMessage) {
|
||||
this.rootView = rootView;
|
||||
this.imgMessage = imgMessage;
|
||||
this.txtDate = txtDate;
|
||||
this.txtMessage = txtMessage;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendVideoMessageItemBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendVideoMessageItemBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.send_video_message_item, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SendVideoMessageItemBinding 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.imgMessage;
|
||||
ImageView imgMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtDate;
|
||||
TextView txtDate = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtDate == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.txtMessage;
|
||||
CardView txtMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (txtMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new SendVideoMessageItemBinding((ConstraintLayout) rootView, imgMessage, txtDate,
|
||||
txtMessage);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+164
@@ -0,0 +1,164 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.widget.LinearLayoutCompat;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class SimpleChatViewWidgetBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView btnAdd;
|
||||
|
||||
@NonNull
|
||||
public final ImageView btnSend;
|
||||
|
||||
@NonNull
|
||||
public final EditText edtMessage;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgCamera;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgImage;
|
||||
|
||||
@NonNull
|
||||
public final ImageView imgVideo;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout layoutChatInputHolder;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayoutCompat moreLayout;
|
||||
|
||||
@NonNull
|
||||
public final RecyclerView rvChats;
|
||||
|
||||
@NonNull
|
||||
public final ConstraintLayout simpleChatView;
|
||||
|
||||
private SimpleChatViewWidgetBinding(@NonNull ConstraintLayout rootView, @NonNull ImageView btnAdd,
|
||||
@NonNull ImageView btnSend, @NonNull EditText edtMessage, @NonNull ImageView imgCamera,
|
||||
@NonNull ImageView imgImage, @NonNull ImageView imgVideo,
|
||||
@NonNull LinearLayout layoutChatInputHolder, @NonNull LinearLayoutCompat moreLayout,
|
||||
@NonNull RecyclerView rvChats, @NonNull ConstraintLayout simpleChatView) {
|
||||
this.rootView = rootView;
|
||||
this.btnAdd = btnAdd;
|
||||
this.btnSend = btnSend;
|
||||
this.edtMessage = edtMessage;
|
||||
this.imgCamera = imgCamera;
|
||||
this.imgImage = imgImage;
|
||||
this.imgVideo = imgVideo;
|
||||
this.layoutChatInputHolder = layoutChatInputHolder;
|
||||
this.moreLayout = moreLayout;
|
||||
this.rvChats = rvChats;
|
||||
this.simpleChatView = simpleChatView;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SimpleChatViewWidgetBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SimpleChatViewWidgetBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.simple_chat_view_widget, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static SimpleChatViewWidgetBinding 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.btnAdd;
|
||||
ImageView btnAdd = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnAdd == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btnSend;
|
||||
ImageView btnSend = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSend == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.edtMessage;
|
||||
EditText edtMessage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edtMessage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imgCamera;
|
||||
ImageView imgCamera = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgCamera == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imgImage;
|
||||
ImageView imgImage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgImage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.imgVideo;
|
||||
ImageView imgVideo = ViewBindings.findChildViewById(rootView, id);
|
||||
if (imgVideo == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.layoutChatInputHolder;
|
||||
LinearLayout layoutChatInputHolder = ViewBindings.findChildViewById(rootView, id);
|
||||
if (layoutChatInputHolder == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.moreLayout;
|
||||
LinearLayoutCompat moreLayout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (moreLayout == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.rvChats;
|
||||
RecyclerView rvChats = ViewBindings.findChildViewById(rootView, id);
|
||||
if (rvChats == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
ConstraintLayout simpleChatView = (ConstraintLayout) rootView;
|
||||
|
||||
return new SimpleChatViewWidgetBinding((ConstraintLayout) rootView, btnAdd, btnSend,
|
||||
edtMessage, imgCamera, imgImage, imgVideo, layoutChatInputHolder, moreLayout, rvChats,
|
||||
simpleChatView);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
+68
@@ -0,0 +1,68 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package Manaknight.databinding;
|
||||
|
||||
import Manaknight.R;
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.cardview.widget.CardView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class UserDataBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final CardView rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView dataId;
|
||||
|
||||
private UserDataBinding(@NonNull CardView rootView, @NonNull TextView dataId) {
|
||||
this.rootView = rootView;
|
||||
this.dataId = dataId;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public CardView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static UserDataBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static UserDataBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.user_data, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static UserDataBinding 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.data_id;
|
||||
TextView dataId = ViewBindings.findChildViewById(rootView, id);
|
||||
if (dataId == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new UserDataBinding((CardView) rootView, dataId);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="default_web_client_id" translatable="false">156797262081-o4r3u8jj2tccv9ptil7k97d7ve5pstru.apps.googleusercontent.com</string>
|
||||
<string name="gcm_defaultSenderId" translatable="false">156797262081</string>
|
||||
<string name="google_api_key" translatable="false">AIzaSyCsLsKIfgluJcDrGuVt3_QAi48CpoM8LGs</string>
|
||||
<string name="google_app_id" translatable="false">1:156797262081:android:f8f3c7b303e4ba57606300</string>
|
||||
<string name="google_crash_reporting_api_key" translatable="false">AIzaSyCsLsKIfgluJcDrGuVt3_QAi48CpoM8LGs</string>
|
||||
<string name="google_storage_bucket" translatable="false">assistant-of-mine.appspot.com</string>
|
||||
<string name="project_id" translatable="false">assistant-of-mine</string>
|
||||
</resources>
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package Manaknight.test;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||
public static final String APPLICATION_ID = "com.manaknight.app.test";
|
||||
public static final String BUILD_TYPE = "debug";
|
||||
// Field from default config.
|
||||
public static final String BASE_URL = "https://mkdlabs.com/";
|
||||
// Field from default config.
|
||||
public static final String GOOGLE_CLIENT_ID = "156797262081-o4r3u8jj2tccv9ptil7k97d7ve5pstru.apps.googleusercontent.com";
|
||||
// Field from default config.
|
||||
public static final String PROJECT_ID = "cmVkZXllZHRlc3Q6amJucWlmMW9zNGJyam1kcTU1amc5bzNmZXJubmhvNXM5/";
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package Manaknight;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||
public static final String APPLICATION_ID = "com.manaknight.app";
|
||||
public static final String BUILD_TYPE = "debug";
|
||||
public static final int VERSION_CODE = 1;
|
||||
public static final String VERSION_NAME = "1.0.0";
|
||||
// Field from default config.
|
||||
public static final String BASE_URL = "https://mkdlabs.com/";
|
||||
// Field from default config.
|
||||
public static final String GOOGLE_CLIENT_ID = "156797262081-o4r3u8jj2tccv9ptil7k97d7ve5pstru.apps.googleusercontent.com";
|
||||
// Field from default config.
|
||||
public static final String PROJECT_ID = "cmVkZXllZHRlc3Q6amJucWlmMW9zNGJyam1kcTU1amc5bzNmZXJubmhvNXM5/";
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
package com.manaknight.app.ui
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class HomeFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionHomeFragmentToRecordVideoFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_HomeFragment_to_RecordVideoFragment)
|
||||
|
||||
public fun actionHomeFragmentToVideosFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_HomeFragment_to_VideosFragment)
|
||||
|
||||
public fun actionHomeFragmentToProfileFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_HomeFragment_to_ProfileFragment)
|
||||
}
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
package com.manaknight.app.ui
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class RecordVideoFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionRecordVideoFragmentToVideoUiFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_RecordVideoFragment_to_VideoUiFragment)
|
||||
|
||||
public fun actionRecordVideoFragmentToVideosFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_RecordVideoFragment_to_VideosFragment)
|
||||
|
||||
public fun actionRecordVideoFragmentToProfileFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_RecordVideoFragment_to_ProfileFragment)
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package com.manaknight.app.ui
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class VideoUiFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionVideoUiFragmentToVideosFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_VideoUiFragment_to_VideosFragment)
|
||||
|
||||
public fun actionVideoUiFragmentToProfileFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_VideoUiFragment_to_ProfileFragment)
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package com.manaknight.app.ui
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class VideosFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionVideosFragmentToVideosFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_VideosFragment_to_VideosFragment)
|
||||
|
||||
public fun actionVideosFragmentToProfileFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_VideosFragment_to_ProfileFragment)
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package com.manaknight.app.ui.fragments
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class ForgetPasswordFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun resetPasswordFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.resetPasswordFragment)
|
||||
}
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
package com.manaknight.app.ui.fragments
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class LoginFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionLoginFragmentToHomeFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_loginFragment_to_homeFragment)
|
||||
|
||||
public fun actionLoginFragmentToSignUpFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_loginFragment_to_signUpFragment)
|
||||
|
||||
public fun actionLoginFragmentToForgetPasswordFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_loginFragment_to_forgetPasswordFragment)
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package com.manaknight.app.ui.fragments
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class ProfileEditFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionProfileEditFragmentToHomeFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_profileEditFragment_to_homeFragment)
|
||||
|
||||
public fun actionProfileEditFragmentToLoginFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_profileEditFragment_to_loginFragment)
|
||||
}
|
||||
}
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
package com.manaknight.app.ui.fragments
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class ProfileFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionProfileFragmentToProfileEditFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_profileFragment_to_profileEditFragment)
|
||||
}
|
||||
}
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
package com.manaknight.app.ui.fragments
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class ResetPasswordFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun loginFragment(): NavDirections = ActionOnlyNavDirections(R.id.loginFragment)
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package com.manaknight.app.ui.fragments
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class SignUpFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionSignUpFragmentToHomeFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_signUpFragment_to_homeFragment)
|
||||
|
||||
public fun actionSignUpFragmentToLoginFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_signUpFragment_to_loginFragment)
|
||||
}
|
||||
}
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
package com.manaknight.app.ui.fragments
|
||||
|
||||
import Manaknight.R
|
||||
import androidx.navigation.ActionOnlyNavDirections
|
||||
import androidx.navigation.NavDirections
|
||||
|
||||
public class SplashFragmentDirections private constructor() {
|
||||
public companion object {
|
||||
public fun actionSplashFragmentToLoginFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_splashFragment_to_loginFragment)
|
||||
|
||||
public fun actionSplashFragmentToSignUpFragment(): NavDirections =
|
||||
ActionOnlyNavDirections(R.id.action_splashFragment_to_signUpFragment)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{"compiler-4.14.2.jar (com.github.bumptech.glide:compiler:4.14.2)":true}
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"compiler-4.14.2.jar (com.github.bumptech.glide:compiler:4.14.2)":true}
|
||||
Binary file not shown.
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "APK",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "com.manaknight.app",
|
||||
"variantName": "debug",
|
||||
"elements": [
|
||||
{
|
||||
"type": "SINGLE",
|
||||
"filters": [],
|
||||
"attributes": [],
|
||||
"versionCode": 1,
|
||||
"versionName": "1.0.0",
|
||||
"outputFile": "com.manaknight.app-1.0.0.apk"
|
||||
}
|
||||
],
|
||||
"elementType": "File"
|
||||
}
|
||||
@@ -0,0 +1,2 @@
|
||||
#- File Locator -
|
||||
listingFile=../../apk/debug/output-metadata.json
|
||||
@@ -0,0 +1,2 @@
|
||||
#- File Locator -
|
||||
listingFile=../../../outputs/apk/androidTest/debug/output-metadata.json
|
||||
@@ -0,0 +1,2 @@
|
||||
appMetadataVersion=1.1
|
||||
androidGradlePluginVersion=7.3.1
|
||||
@@ -0,0 +1,470 @@
|
||||
{
|
||||
"10": [
|
||||
"BSA",
|
||||
"BankSA (division of Westpac Bank)"
|
||||
],
|
||||
"11": [
|
||||
"STG and SGP",
|
||||
"St George Bank (division of Westpac Bank)"
|
||||
],
|
||||
"12": [
|
||||
"BQL",
|
||||
"Bank of Queensland"
|
||||
],
|
||||
"14": [
|
||||
"PIB",
|
||||
"Rabobank"
|
||||
],
|
||||
"15": [
|
||||
"T&C",
|
||||
"Town & Country Bank"
|
||||
],
|
||||
"18": [
|
||||
"MBL",
|
||||
"Macquarie Bank"
|
||||
],
|
||||
"19": [
|
||||
"BOM and BML",
|
||||
"Bank of Melbourne (division of Westpac Bank)"
|
||||
],
|
||||
"21": [
|
||||
"CMB",
|
||||
"JP Morgan Chase Bank"
|
||||
],
|
||||
"22": [
|
||||
"BNP",
|
||||
"BNP Paribas"
|
||||
],
|
||||
"23": [
|
||||
"BAL",
|
||||
"Bank of America"
|
||||
],
|
||||
"24": [
|
||||
"CTI",
|
||||
"Citibank"
|
||||
],
|
||||
"25": [
|
||||
"BPS",
|
||||
"BNP Paribas Securities"
|
||||
],
|
||||
"26": [
|
||||
"BTA",
|
||||
"Bankers Trust Australia (division of Westpac Bank)"
|
||||
],
|
||||
"29": [
|
||||
"BOT",
|
||||
"Bank of Tokyo-Mitsubishi"
|
||||
],
|
||||
"30": [
|
||||
"BWA",
|
||||
"Bankwest (division of Commonwealth Bank)"
|
||||
],
|
||||
"31": [
|
||||
"MCU",
|
||||
"Bankmecu"
|
||||
],
|
||||
"33": [
|
||||
"STG and SGP",
|
||||
"St George Bank (division of Westpac Bank)"
|
||||
],
|
||||
"34": [
|
||||
"HBA and HSB",
|
||||
"HSBC Bank Australia"
|
||||
],
|
||||
"35": [
|
||||
"BOC and BCA",
|
||||
"Bank of China"
|
||||
],
|
||||
"40": [
|
||||
"CST",
|
||||
"Commonwealth Bank of Australia"
|
||||
],
|
||||
"41": [
|
||||
"DBA",
|
||||
"Deutsche Bank"
|
||||
],
|
||||
"42": [
|
||||
"TBT",
|
||||
"Commonwealth Bank of Australia"
|
||||
],
|
||||
"45": [
|
||||
"OCB",
|
||||
"OCBC Bank"
|
||||
],
|
||||
"46": [
|
||||
"ADV",
|
||||
"Advance Bank (division of Westpac Bank)"
|
||||
],
|
||||
"47": [
|
||||
"CBL",
|
||||
"Challenge Bank (division of Westpac Bank)"
|
||||
],
|
||||
"48": [
|
||||
"MET or SUN",
|
||||
"Suncorp-Metway"
|
||||
],
|
||||
"52": [
|
||||
"TBT",
|
||||
"Commonwealth Bank of Australia"
|
||||
],
|
||||
"55": [
|
||||
"BOM and BML",
|
||||
"Bank of Melbourne (division of Westpac Bank)"
|
||||
],
|
||||
"57": [
|
||||
"ASL",
|
||||
"Australian Settlements"
|
||||
],
|
||||
"61": [
|
||||
"ADL",
|
||||
"Adelaide Bank (division of Bendigo and Adelaide Bank)"
|
||||
],
|
||||
"70": [
|
||||
"CUS",
|
||||
"Indue"
|
||||
],
|
||||
"73": [
|
||||
"WBC",
|
||||
"Westpac Banking Corporation"
|
||||
],
|
||||
"76": [
|
||||
"CBA",
|
||||
"Commonwealth Bank of Australia"
|
||||
],
|
||||
"78": [
|
||||
"NAB",
|
||||
"National Australia Bank"
|
||||
],
|
||||
"80": [
|
||||
"CRU",
|
||||
"Cuscal"
|
||||
],
|
||||
"90": [
|
||||
"APO",
|
||||
"Australia Post"
|
||||
],
|
||||
"325": [
|
||||
"BYB",
|
||||
"Beyond Bank Australia"
|
||||
],
|
||||
"432": [
|
||||
"SCB",
|
||||
"Standard Chartered Bank"
|
||||
],
|
||||
"510": [
|
||||
"CNA",
|
||||
"Citibank N.A."
|
||||
],
|
||||
"512": [
|
||||
"CFC",
|
||||
"Community First Credit Union"
|
||||
],
|
||||
"514": [
|
||||
"QTM",
|
||||
"QT Mutual Bank"
|
||||
],
|
||||
"517": [
|
||||
"VOL",
|
||||
"Australian Settlements Limited"
|
||||
],
|
||||
"533": [
|
||||
"BCC",
|
||||
"Bananacoast Community Credit Union"
|
||||
],
|
||||
"611": [
|
||||
"SEL",
|
||||
"Select Credit Union"
|
||||
],
|
||||
"630": [
|
||||
"ABS",
|
||||
"ABS Building Society"
|
||||
],
|
||||
"632": [
|
||||
"BAE",
|
||||
"B&E"
|
||||
],
|
||||
"633": [
|
||||
"BBL",
|
||||
"Bendigo Bank"
|
||||
],
|
||||
"634": [
|
||||
"UFS",
|
||||
"Uniting Financial Services"
|
||||
],
|
||||
"636": [
|
||||
"HAY",
|
||||
"Cuscal Limited"
|
||||
],
|
||||
"637": [
|
||||
"GBS",
|
||||
"Greater Building Society"
|
||||
],
|
||||
"638": [
|
||||
"HBS",
|
||||
"Heritage Bank"
|
||||
],
|
||||
"639": [
|
||||
"HOM",
|
||||
"Home Building Society (division of Bank of Queensland)"
|
||||
],
|
||||
"640": [
|
||||
"HUM",
|
||||
"Hume Bank"
|
||||
],
|
||||
"641": [
|
||||
"IMB and AUB",
|
||||
"IMB"
|
||||
],
|
||||
"642": [
|
||||
"ADC",
|
||||
"Australian Defence Credit Union"
|
||||
],
|
||||
"645": [
|
||||
"MPB and BAY",
|
||||
"Wide Bay Australia"
|
||||
],
|
||||
"646": [
|
||||
"MMB",
|
||||
"Maitland Mutual Building Society"
|
||||
],
|
||||
"647": [
|
||||
"IMB and AUB",
|
||||
"IMB"
|
||||
],
|
||||
"650": [
|
||||
"NEW",
|
||||
"Newcastle Permanent Building Society"
|
||||
],
|
||||
"653": [
|
||||
"PPB",
|
||||
"Pioneer Permanent Building Society (division of Bank of Queensland)"
|
||||
],
|
||||
"654": [
|
||||
"ECU",
|
||||
"ECU Australia"
|
||||
],
|
||||
"655": [
|
||||
"ROK",
|
||||
"The Rock Building Society"
|
||||
],
|
||||
"656": [
|
||||
"MPB and BAY",
|
||||
"Wide Bay Australia"
|
||||
],
|
||||
"657": [
|
||||
"GBS",
|
||||
"Greater Building Society"
|
||||
],
|
||||
"659": [
|
||||
"SGE",
|
||||
"SGE Credit Union"
|
||||
],
|
||||
"664": [
|
||||
"MET or SUN",
|
||||
"Suncorp-Metway"
|
||||
],
|
||||
"670": [
|
||||
"YOU",
|
||||
"Cuscal Limited"
|
||||
],
|
||||
"676": [
|
||||
"GTW",
|
||||
"Gateway Credit Union"
|
||||
],
|
||||
"721": [
|
||||
"HCC",
|
||||
"Holiday Coast Credit Union"
|
||||
],
|
||||
"722": [
|
||||
"SNX",
|
||||
"Southern Cross Credit"
|
||||
],
|
||||
"723": [
|
||||
"HIC",
|
||||
"Heritage Isle Credit Union"
|
||||
],
|
||||
"724": [
|
||||
"RCU",
|
||||
"Railways Credit Union"
|
||||
],
|
||||
"725": [
|
||||
"JUD",
|
||||
"Judo Bank Pty Ltd"
|
||||
],
|
||||
"728": [
|
||||
"SCU",
|
||||
"Summerland Credit Union"
|
||||
],
|
||||
"775": [
|
||||
"XIN",
|
||||
"Australian Settlements Limited"
|
||||
],
|
||||
"777": [
|
||||
"PNB",
|
||||
"Police & Nurse"
|
||||
],
|
||||
"812": [
|
||||
"TMB",
|
||||
"Teachers Mutual Bank"
|
||||
],
|
||||
"813": [
|
||||
"CAP",
|
||||
"Capricornian"
|
||||
],
|
||||
"814": [
|
||||
"CUA",
|
||||
"Credit Union Australia"
|
||||
],
|
||||
"815": [
|
||||
"PCU",
|
||||
"Police Bank"
|
||||
],
|
||||
"817": [
|
||||
"WCU",
|
||||
"Warwick Credit Union"
|
||||
],
|
||||
"818": [
|
||||
"COM",
|
||||
"Bank of Communications"
|
||||
],
|
||||
"819": [
|
||||
"IBK",
|
||||
"Industrial & Commercial Bank of China"
|
||||
],
|
||||
"823": [
|
||||
"ENC",
|
||||
"Encompass Credit Union"
|
||||
],
|
||||
"824": [
|
||||
"STH",
|
||||
"Sutherland Credit Union"
|
||||
],
|
||||
"825": [
|
||||
"SKY",
|
||||
"Big Sky Building Society"
|
||||
],
|
||||
"833": [
|
||||
"DBL",
|
||||
"Defence Bank Limited"
|
||||
],
|
||||
"880": [
|
||||
"HBS",
|
||||
"Heritage Bank"
|
||||
],
|
||||
"882": [
|
||||
"MMP",
|
||||
"Maritime Mining & Power Credit Union"
|
||||
],
|
||||
"888": [
|
||||
"CCB",
|
||||
"China Construction Bank Corporation"
|
||||
],
|
||||
"889": [
|
||||
"DBS",
|
||||
"DBS Bank Ltd."
|
||||
],
|
||||
"911": [
|
||||
"SMB",
|
||||
"Sumitomo Mitsui Banking Corporation"
|
||||
],
|
||||
"913": [
|
||||
"SSB",
|
||||
"State Street Bank & Trust Company"
|
||||
],
|
||||
"917": [
|
||||
"ARA",
|
||||
"Arab Bank Australia"
|
||||
],
|
||||
"918": [
|
||||
"MCB",
|
||||
"Mizuho Bank"
|
||||
],
|
||||
"922": [
|
||||
"UOB",
|
||||
"United Overseas Bank"
|
||||
],
|
||||
"923": [
|
||||
"ING or GNI",
|
||||
"ING Bank"
|
||||
],
|
||||
"931": [
|
||||
"ICB",
|
||||
"Mega International Commercial Bank"
|
||||
],
|
||||
"932": [
|
||||
"NEC",
|
||||
"Community Mutual"
|
||||
],
|
||||
"936": [
|
||||
"ING or GNI",
|
||||
"ING Bank"
|
||||
],
|
||||
"939": [
|
||||
"AMP",
|
||||
"AMP Bank"
|
||||
],
|
||||
"941": [
|
||||
"BCY",
|
||||
"Delphi Bank (division of Bendigo and Adelaide Bank)"
|
||||
],
|
||||
"942": [
|
||||
"LBA",
|
||||
"Bank of Sydney"
|
||||
],
|
||||
"943": [
|
||||
"TBB",
|
||||
"Taiwan Business Bank"
|
||||
],
|
||||
"944": [
|
||||
"MEB",
|
||||
"Members Equity Bank"
|
||||
],
|
||||
"946": [
|
||||
"UBS",
|
||||
"UBS AG"
|
||||
],
|
||||
"951": [
|
||||
"INV",
|
||||
"BOQ Specialist Bank"
|
||||
],
|
||||
"952": [
|
||||
"RBS",
|
||||
"Royal Bank of Scotland"
|
||||
],
|
||||
"969": [
|
||||
"MSL",
|
||||
"Tyro Payments"
|
||||
],
|
||||
"980": [
|
||||
"BOC and BCA",
|
||||
"Bank of China"
|
||||
],
|
||||
"985": [
|
||||
"HBA and HSB",
|
||||
"HSBC Bank Australia"
|
||||
],
|
||||
"01": [
|
||||
"ANZ",
|
||||
"Australia and New Zealand Banking Group"
|
||||
],
|
||||
"03": [
|
||||
"WBC",
|
||||
"Westpac Banking Corporation"
|
||||
],
|
||||
"04": [
|
||||
"WBC",
|
||||
"Westpac Banking Corporation"
|
||||
],
|
||||
"06": [
|
||||
"CBA",
|
||||
"Commonwealth Bank of Australia"
|
||||
],
|
||||
"08": [
|
||||
"NAB",
|
||||
"National Australia Bank"
|
||||
],
|
||||
"09": [
|
||||
"RBA",
|
||||
"Reserve Bank of Australia"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIE0TCCA7mgAwIBAgIUXbeqM1duFcHk4dDBwT8o7Ln5wX8wDQYJKoZIhvcNAQEL
|
||||
BQAwXjELMAkGA1UEBhMCVVMxITAfBgNVBAoTGEFtZXJpY2FuIEV4cHJlc3MgQ29t
|
||||
cGFueTEsMCoGA1UEAxMjQW1lcmljYW4gRXhwcmVzcyBTYWZla2V5IElzc3Vpbmcg
|
||||
Q0EwHhcNMTgwMjIxMjM0OTMxWhcNMjAwMjIxMjM0OTMwWjCB0DELMAkGA1UEBhMC
|
||||
VVMxETAPBgNVBAgTCE5ldyBZb3JrMREwDwYDVQQHEwhOZXcgWW9yazE/MD0GA1UE
|
||||
ChM2QW1lcmljYW4gRXhwcmVzcyBUcmF2ZWwgUmVsYXRlZCBTZXJ2aWNlcyBDb21w
|
||||
YW55LCBJbmMuMTkwNwYDVQQLEzBHbG9iYWwgTmV0d29yayBUZWNobm9sb2d5IC0g
|
||||
TmV0d29yayBBUEkgUGxhdGZvcm0xHzAdBgNVBAMTFlNESy5TYWZlS2V5LkVuY3J5
|
||||
cHRLZXkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDSFF9kTYbwRrxX
|
||||
C6WcJJYio5TZDM62+CnjQRfggV3GMI+xIDtMIN8LL/jbWBTycu97vrNjNNv+UPhI
|
||||
WzhFDdUqyRfrY337A39uE8k1xhdDI3dNeZz6xgq8r9hn2NBou78YPBKidpN5oiHn
|
||||
TxcFq1zudut2fmaldaa9a4ZKgIQo+02heiJfJ8XNWkoWJ17GcjJ59UU8C1KF/y1G
|
||||
ymYO5ha2QRsVZYI17+ZFsqnpcXwK4Mr6RQKV6UimmO0nr5++CgvXfekcWAlLV6Xq
|
||||
juACWi3kw0haepaX/9qHRu1OSyjzWNcSVZ0On6plB5Lq6Y9ylgmxDrv+zltz3MrT
|
||||
K7txIAFFAgMBAAGjggESMIIBDjAMBgNVHRMBAf8EAjAAMCEGA1UdEQQaMBiCFlNE
|
||||
Sy5TYWZlS2V5LkVuY3J5cHRLZXkwRQYJKwYBBAGCNxQCBDgeNgBBAE0ARQBYAF8A
|
||||
UwBBAEYARQBLAEUAWQAyAF8ARABTAF8ARQBOAEMAUgBZAFAAVABJAE8ATjAOBgNV
|
||||
HQ8BAf8EBAMCBJAwHwYDVR0jBBgwFoAU7k/rXuVMhTBxB1zSftPgmLFuDIgwRAYD
|
||||
VR0fBD0wOzA5oDegNYYzaHR0cDovL2FtZXhzay5jcmwuY29tLXN0cm9uZy1pZC5u
|
||||
ZXQvYW1leHNhZmVrZXkuY3JsMB0GA1UdDgQWBBQHclVTo5nwZGH8labJ2F2P45xi
|
||||
fDANBgkqhkiG9w0BAQsFAAOCAQEAWY6b77VBoGLs3k5vOqSU7QRqT+4v6y77T8LA
|
||||
BKrSZ58DiVZWVyDSxyftQUiRRgFHt2gTN0yfJTP50Fyp84nCEWC0tugZ4iIhgPss
|
||||
HzL+4/u4eG/MTzK2ESxvPgr6YHajyuU+GXA89u8+bsFrFmojOjhTgFKli7YUeV/0
|
||||
xoiYZf2utlns800ofJrcrfiFoqE6PvK4Od0jpeMgfSKv71nK5ihA1+wTk76ge1fs
|
||||
PxL23hEdRpWW11ofaLfJGkLFXMM3/LHSXWy7HhsBgDELdzLSHU4VkSv8yTOZxsRO
|
||||
ByxdC5v3tXGcK56iQdtKVPhFGOOEBugw7AcuRzv3f1GhvzAQZg==
|
||||
-----END CERTIFICATE-----
|
||||
@@ -0,0 +1,26 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIEWjCCA0KgAwIBAgICAw8wDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNVBAYTAlVT
|
||||
MREwDwYDVQQIEwhJbGxpbm9pczETMBEGA1UEBxMKUml2ZXJ3b29kczEkMCIGA1UE
|
||||
ChMbRGlzY292ZXIgRmluYW5jaWFsIFNlcnZpY2VzMRkwFwYDVQQLExBQYXltZW50
|
||||
IFNlcnZpY2VzMSwwKgYDVQQDEyNleHRlbmRlZGludGVybWVkaWF0ZS5wcm90ZWN0
|
||||
YnV5LmNvbTAeFw0xOTA0MTIwMDAwMDBaFw0yNTA0MTAwMDAwMDBaMIGCMQswCQYD
|
||||
VQQGEwJVUzETMBEGA1UECBMKQ2FsaWZvcm5pYTEWMBQGA1UEBxMNU2FuIEZyYW5j
|
||||
aXNjbzEPMA0GA1UEChMGU3RyaXBlMRIwEAYDVQQLEwkzRCBTZWN1cmUxITAfBgNV
|
||||
BAMTGHFhLWlwYWRkci0zZHMuc3RyaXBlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQAD
|
||||
ggEPADCCAQoCggEBAL3InmR2w7oMAJagZ9IZcstBIGS8vcAJsIIEPHX5HWdrLz01
|
||||
MdrEDuCS0Up0hZkmuDo6jtHBhrKDUXiWwSBMnpsoXUcmix+iutaAD7CXjE7knOYt
|
||||
Lc8YS2IPRiQH2RoRvGvg3yq662oQzqe2Mm5K6j50j7xv+LaffEDwLKrf+vmAaUAx
|
||||
JlJtEOQEp8bDA+M2bdkVIn5g20LzlDFHun1fmKmiRFe0mOQuP9sWGozN0layo3tH
|
||||
FYiBayqXWMkfyurSyKCgq91sgRZ9M9tSz3Vngkfih9WD56Tb6vBrCvsQIPw0oRYW
|
||||
LsJ1grhzqbtUIILwvViw6fI26GwxRc1zqLzVIhcCAwEAAaOBtTCBsjAfBgNVHSME
|
||||
GDAWgBThPlmtH/jUqxGfZGc5D0B2GVy5WTAdBgNVHQ4EFgQUZhbNV1gv/P4cibdb
|
||||
JujiWN8bo68wDAYDVR0PBAUDAwDAADATBgNVHSUEDDAKBggrBgEFBQcDATBNBgNV
|
||||
HR8ERjBEMEKiQIY+aHR0cDovL3d3dy5kaXNjb3ZlcmZpbmFuY2lhbGNlcnQuY29t
|
||||
L2NybHMvUmV2b2NhdGlvbkxpc3RfMy5jcmwwDQYJKoZIhvcNAQELBQADggEBAK8s
|
||||
iLWr8V+TDRD724St9+UlmimAeBTFCpLKBjHGuYmA+tTfQ5Upvr10r70t4JwOAxLH
|
||||
gazQDQRaq3D2KkjAg1JBJfrSXBPVKAZofzEO9X47R3oVum8yeTjmRdm8d1yb7N70
|
||||
tkBkc8r59EXgYwL0YhqHFZH+C2ayNVu/E3iu1XNvdSbTG6Hl+aSUoH9+DnYkhbZl
|
||||
kcBV0HmYcCoClvhLYPb9dSAREr0ovLj1GbBo/b0is3TtYkRBsunuusHh7tHDy06J
|
||||
bByM9XxmX7uQFtymqPfPeV95LrxzNbk4aqRR2euWZ/b+QtVn7mePvJ+X3oR9G//A
|
||||
qQFz8KC5T9FXdJU4ZbY=
|
||||
-----END CERTIFICATE-----
|
||||
@@ -0,0 +1,33 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIFtTCCA52gAwIBAgIQJqSRaPua/6cpablmVDHWUDANBgkqhkiG9w0BAQsFADB6
|
||||
MQswCQYDVQQGEwJVUzETMBEGA1UEChMKTWFzdGVyQ2FyZDEoMCYGA1UECxMfTWFz
|
||||
dGVyQ2FyZCBJZGVudGl0eSBDaGVjayBHZW4gMzEsMCoGA1UEAxMjUFJEIE1hc3Rl
|
||||
ckNhcmQgM0RTMiBBY3F1aXJlciBTdWIgQ0EwHhcNMTgxMTIwMTQ1MzIzWhcNMjEx
|
||||
MTIwMTQ1MzIzWjBxMQswCQYDVQQGEwJVUzEdMBsGA1UEChMUTWFzdGVyQ2FyZCBX
|
||||
b3JsZHdpZGUxGzAZBgNVBAsTEmdhdGV3YXktZW5jcnlwdGlvbjEmMCQGA1UEAxMd
|
||||
M2RzMi5kaXJlY3RvcnkubWFzdGVyY2FyZC5jb20wggEiMA0GCSqGSIb3DQEBAQUA
|
||||
A4IBDwAwggEKAoIBAQCFlZjqbbL9bDKOzZFawdbyfQcezVEUSDCWWsYKw/V6co9A
|
||||
GaPBUsGgzxF6+EDgVj3vYytgSl8xFvVPsb4ZJ6BJGvimda8QiIyrX7WUxQMB3hyS
|
||||
BOPf4OB72CP+UkaFNR6hdlO5ofzTmB2oj1FdLGZmTN/sj6ZoHkn2Zzums8QAHFjv
|
||||
FjspKUYCmms91gpNpJPUUztn0N1YMWVFpFMytahHIlpiGqTDt4314F7sFABLxzFr
|
||||
Dmcqhf623SPV3kwQiLVWOvewO62ItYUFgHwle2dq76YiKrUv1C7vADSk2Am4gqwv
|
||||
7dcCnFeM2AHbBFBa1ZBRQXosuXVw8ZcQqfY8m4iNAgMBAAGjggE+MIIBOjAOBgNV
|
||||
HQ8BAf8EBAMCAygwCQYDVR0TBAIwADAfBgNVHSMEGDAWgBSakqJUx4CN/s5W4wMU
|
||||
/17uSLhFuzBIBggrBgEFBQcBAQQ8MDowOAYIKwYBBQUHMAGGLGh0dHA6Ly9vY3Nw
|
||||
LnBraS5pZGVudGl0eWNoZWNrLm1hc3RlcmNhcmQuY29tMCgGA1UdEQQhMB+CHTNk
|
||||
czIuZGlyZWN0b3J5Lm1hc3RlcmNhcmQuY29tMGkGA1UdHwRiMGAwXqBcoFqGWGh0
|
||||
dHA6Ly9jcmwucGtpLmlkZW50aXR5Y2hlY2subWFzdGVyY2FyZC5jb20vOWE5MmEy
|
||||
NTRjNzgwOGRmZWNlNTZlMzAzMTRmZjVlZWU0OGI4NDViYi5jcmwwHQYDVR0OBBYE
|
||||
FHxN6+P0r3+dFWmi/+pDQ8JWaCbuMA0GCSqGSIb3DQEBCwUAA4ICAQAtwW8siyCi
|
||||
mhon1WUAUmufZ7bbegf3cTOafQh77NvA0xgVeloELUNCwsSSZgcOIa4Zgpsa0xi5
|
||||
fYxXsPLgVPLM0mBhTOD1DnPu1AAm32QVelHe6oB98XxbkQlHGXeOLs62PLtDZd94
|
||||
7pm08QMVb+MoCnHLaBLV6eKhKK+SNrfcxr33m0h3v2EMoiJ6zCvp8HgIHEhVpleU
|
||||
8H2Uo5YObatb/KUHgtp2z0vEfyGhZR7hrr48vUQpfVGBABsCV0aqUkPxtAXWfQo9
|
||||
1N9B7H3EIcSjbiUz5vkj9YeDSyJIi0Y/IZbzuNMsz2cRi1CWLl37w2fe128qWxYq
|
||||
Y/k+Y4HX7uYchB8xPaZR4JczCvg1FV2JrkOcFvElVXWSMpBbe2PS6OMr3XxrHjzp
|
||||
DyM9qvzge0Ai9+rq8AyGoG1dP2Ay83Ndlgi42X3yl1uEUW2feGojCQQCFFArazEj
|
||||
LUkSlrB2kA12SWAhsqqQwnBLGSTp7PqPZeWkluQVXS0sbj0878kTra6TjG3U+KqO
|
||||
JCj8v6G380qIkAXe1xMHHNQ6GS59HZMeBPYkK2y5hmh/JVo4bRfK7Ya3blBSBfB8
|
||||
AVWQ5GqVWklvXZsQLN7FH/fMIT3y8iE1W19Ua4whlhvn7o/aYWOkHr1G2xyh8BHj
|
||||
7H63A2hjcPlW/ZAJSTuBZUClAhsNohH2Jg==
|
||||
-----END CERTIFICATE-----
|
||||
@@ -0,0 +1 @@
|
||||
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEYktbLuAv0v52erE5LPscomKaOmQsvevxzOyn9k4sF1hqpBc5kUygzxA9Jl0R/2dTuk8ka7UCujk36xeUsLVpWA==
|
||||
@@ -0,0 +1 @@
|
||||
MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr/O0BfXWngO9OJDBsqdR5U2h28jrX6Y+LlblTBaYeT2tW7+ca3YzTFXA8duVUwdlWxl3JZCOOeL1feVP6g0TNOHVCkCnirVDLkcozod4aSkNvx+929aDr1ithqhruf0skBc2sMZGBBCNpso6XGzyAf2uZ2+9DvXoKIUYgcr7PQmL2Y0awyQN7KCRcusaotYNz2mOPrL/hAv6hTexkNrQKzFcPwCuc6kN6aNjD+p2CJ51/5p02SNS70nPOmwmg63j6f3n7xVykQ56kNc1l5B5xOpeHJmqk3+hyF1dF/47rQmMFicN41QSvZ5AZJKgWlIn2VQROMkEHkF9ZBRLx1nFTwIDAQAB
|
||||
@@ -0,0 +1,33 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIFrjCCBJagAwIBAgIQB2rJmsHVwbONd36WP9QPrTANBgkqhkiG9w0BAQsFADBx
|
||||
MQswCQYDVQQGEwJVUzENMAsGA1UEChMEVklTQTEvMC0GA1UECxMmVmlzYSBJbnRl
|
||||
cm5hdGlvbmFsIFNlcnZpY2UgQXNzb2NpYXRpb24xIjAgBgNVBAMTGVZpc2EgZUNv
|
||||
bW1lcmNlIElzc3VpbmcgQ0EwHhcNMTcxMTAyMjIyMzEwWhcNMjAxMTAzMDAyMzEw
|
||||
WjCBoTEYMBYGA1UEBxMPSGlnaGxhbmRzIFJhbmNoMREwDwYDVQQIEwhDb2xvcmFk
|
||||
bzELMAkGA1UEBhMCVVMxDTALBgNVBAoTBFZJU0ExLzAtBgNVBAsTJlZpc2EgSW50
|
||||
ZXJuYXRpb25hbCBTZXJ2aWNlIEFzc29jaWF0aW9uMSUwIwYDVQQDExwzZHMyLnJz
|
||||
YS5lbmNyeXB0aW9uLnZpc2EuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB
|
||||
CgKCAQEAst+HGfPPsX3p6HHEQ9YzourlQj16Nscmm13Cp7cZe4dZB2oWnJqZ7oh/
|
||||
pEoEoOAxBw1x4NFgXKTKdHAeu3VBNVw8SwMTdIC+X16VV+3VIyPbUvJXFp3QoR8W
|
||||
UwPB3F1Lb9SMFNS95boYDZKIOdPW0cP1dRi7pFugsBUZDCP/H3nFfBFHMCBoga+P
|
||||
3AHGj5y8RVpv0hS9jaIsYjX+i58B61OGCB7D0AiADNZJuFzw2+xpNkt6NJJF66FP
|
||||
O8qIh8xR2xGVDf7TtCbss/CugLRgSqKab9YRB8/TBTcy5bxj6O8HD6aL2zGLcMY9
|
||||
dCobXxCodLEtMjJdVL8N+iZrsI2gtwIDAQABo4ICDzCCAgswEwYDVR0lBAwwCgYI
|
||||
KwYBBQUHAwEwZQYIKwYBBQUHAQEEWTBXMCUGCCsGAQUFBzABhhlodHRwOi8vb2Nz
|
||||
cC52aXNhLmNvbS9vY3NwMC4GCCsGAQUFBzAChiJodHRwOi8vZW5yb2xsLnZpc2Fj
|
||||
YS5jb20vZWNvbW0uY2VyMB8GA1UdIwQYMBaAFN/DKlUuL0I6ekCdkqD3R3nXj4eK
|
||||
MAwGA1UdEwEB/wQCMAAwgcoGA1UdHwSBwjCBvzAooCagJIYiaHR0cDovL0Vucm9s
|
||||
bC52aXNhY2EuY29tL2VDb21tLmNybDCBkqCBj6CBjIaBiWxkYXA6Ly9FbnJvbGwu
|
||||
dmlzYWNhLmNvbTozODkvY249VmlzYSBlQ29tbWVyY2UgSXNzdWluZyBDQSxjPVVT
|
||||
LG91PVZpc2EgSW50ZXJuYXRpb25hbCBTZXJ2aWNlIEFzc29jaWF0aW9uLG89VklT
|
||||
QT9jZXJ0aWZpY2F0ZVJldm9jYXRpb25MaXN0MA4GA1UdDwEB/wQEAwIFoDAnBgNV
|
||||
HREEIDAeghwzZHMyLnJzYS5lbmNyeXB0aW9uLnZpc2EuY29tMB0GA1UdDgQWBBT8
|
||||
m2pDtUtY13f/3NCOmexHavP5zDA5BgNVHSAEMjAwMC4GBWeBAwEBMCUwIwYIKwYB
|
||||
BQUHAgEWF2h0dHA6Ly93d3cudmlzYS5jb20vcGtpMA0GCSqGSIb3DQEBCwUAA4IB
|
||||
AQCcCUhU7KnHUDuLXqwSuzC8lWWCcEqPRgPPzY3mgBUg9ya0p+v7QF2BG77tpygK
|
||||
E2yDPkOE8trzYeMi7TCuvKgZvUXDSOka8SId9QleMBlo2pzNi0vKKBG8+E7qmGaf
|
||||
etQHVaoFvhg24/e7y8q89VYNKfLXn8TWMUOJdTQoNP+4bHcCnBvWWUcI2LlyEog1
|
||||
2FDSG8hgP3cpw+0B2Hace9BQGR7ZgTIJAANEHZ54QGOYdxZEcDS5IEpKZlN8INs/
|
||||
NKJyCkqP09VA4NO/WHaGFAXtgoLmjlA9Kal+4ieJPKijVDxcHVv/uPSfVQJ0/vCa
|
||||
udJGOXV9q4VteupwLxfOGW8w
|
||||
-----END CERTIFICATE-----
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "COMPATIBLE_SCREEN_MANIFEST",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "com.manaknight.app",
|
||||
"variantName": "debug",
|
||||
"elements": []
|
||||
}
|
||||
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_main" modulePackage="Manaknight" filePath="app/src/main/res/layout/activity_main.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.drawerlayout.widget.DrawerLayout" rootNodeViewId="@+id/activity_main"><Targets><Target id="@+id/activity_main" tag="layout/activity_main_0" view="androidx.drawerlayout.widget.DrawerLayout"><Expressions/><location startLine="1" startOffset="0" endLine="55" endOffset="43"/></Target><Target id="@+id/my_toolbar" view="androidx.appcompat.widget.Toolbar"><Expressions/><location startLine="15" startOffset="8" endLine="26" endOffset="89"/></Target><Target id="@+id/nav_view" view="com.google.android.material.bottomnavigation.BottomNavigationView"><Expressions/><location startLine="39" startOffset="8" endLine="51" endOffset="46"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="bottom_update_profile" modulePackage="Manaknight" filePath="app/src/main/res/layout/bottom_update_profile.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/bottom_update_profile_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="4" endLine="70" endOffset="55"/></Target><Target id="@+id/textView29" view="TextView"><Expressions/><location startLine="8" startOffset="8" endLine="18" endOffset="55"/></Target><Target id="@+id/view" view="View"><Expressions/><location startLine="20" startOffset="8" endLine="26" endOffset="67"/></Target><Target id="@+id/btnGallery" view="com.google.android.material.textview.MaterialTextView"><Expressions/><location startLine="28" startOffset="8" endLine="40" endOffset="61"/></Target><Target id="@+id/btnCamera" view="com.google.android.material.textview.MaterialTextView"><Expressions/><location startLine="42" startOffset="8" endLine="53" endOffset="67"/></Target><Target id="@+id/imageView6" view="com.google.android.material.textview.MaterialTextView"><Expressions/><location startLine="55" startOffset="8" endLine="68" endOffset="66"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_alert_view" modulePackage="Manaknight" filePath="app/src/main/res/layout/dialog_alert_view.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/dialog_alert_view_0" view="FrameLayout"><Expressions/><location startLine="1" startOffset="4" endLine="65" endOffset="17"/></Target><Target id="@+id/dialogCardView" view="androidx.cardview.widget.CardView"><Expressions/><location startLine="8" startOffset="8" endLine="63" endOffset="43"/></Target><Target id="@+id/imageViewAlertDialog" view="ImageView"><Expressions/><location startLine="25" startOffset="16" endLine="32" endOffset="55"/></Target><Target id="@+id/tvAlertDialogMsg" view="TextView"><Expressions/><location startLine="36" startOffset="16" endLine="43" endOffset="49"/></Target><Target id="@+id/buttonAlertDialogClose" view="androidx.appcompat.widget.AppCompatButton"><Expressions/><location startLine="48" startOffset="16" endLine="59" endOffset="56"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_alerts" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_alerts.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_alerts_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="4" endLine="95" endOffset="55"/></Target><Target id="@+id/textView20" view="TextView"><Expressions/><location startLine="9" startOffset="8" endLine="18" endOffset="55"/></Target><Target id="@+id/textView21" view="TextView"><Expressions/><location startLine="20" startOffset="8" endLine="30" endOffset="67"/></Target><Target id="@+id/llNoAlerts" view="LinearLayout"><Expressions/><location startLine="32" startOffset="8" endLine="59" endOffset="22"/></Target><Target id="@+id/rcvNewAlerts" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="61" startOffset="8" endLine="74" endOffset="53"/></Target><Target id="@+id/tvTagNew" view="TextView"><Expressions/><location startLine="76" startOffset="8" endLine="90" endOffset="67"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_dropdown_item" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_dropdown_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.TextView" rootNodeViewId="@+id/textView"><Targets><Target id="@+id/textView" tag="layout/fragment_dropdown_item_0" view="TextView"><Expressions/><location startLine="0" startOffset="0" endLine="8" endOffset="29"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_forget_password" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_forget_password.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.RelativeLayout"><Targets><Target tag="layout/fragment_forget_password_0" view="RelativeLayout"><Expressions/><location startLine="2" startOffset="8" endLine="46" endOffset="16"/></Target><Target id="@+id/textView2" view="TextView"><Expressions/><location startLine="17" startOffset="16" endLine="23" endOffset="52"/></Target><Target id="@+id/forgetPassword" view="EditText"><Expressions/><location startLine="25" startOffset="16" endLine="33" endOffset="63"/></Target><Target id="@+id/continueButton" view="Button"><Expressions/><location startLine="35" startOffset="16" endLine="43" endOffset="45"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_friend_list" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_friend_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fragment_friend_list_0" view="android.widget.LinearLayout"><Expressions/><location startLine="1" startOffset="4" endLine="21" endOffset="33"/></Target><Target id="@+id/recyclerview_637093b5" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="10" startOffset="12" endLine="19" endOffset="7"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_home" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_home.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.RelativeLayout"><Targets><Target tag="layout/fragment_home_0" view="android.widget.RelativeLayout"><Expressions/><location startLine="1" startOffset="0" endLine="128" endOffset="31"/></Target><Target id="@+id/lytHead" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="11" startOffset="4" endLine="59" endOffset="55"/></Target><Target id="@+id/videos" view="ImageView"><Expressions/><location startLine="22" startOffset="8" endLine="32" endOffset="55"/></Target><Target id="@+id/profile" view="ImageView"><Expressions/><location startLine="35" startOffset="8" endLine="45" endOffset="55"/></Target><Target id="@+id/appCompatTextView2" view="TextView"><Expressions/><location startLine="48" startOffset="8" endLine="57" endOffset="55"/></Target><Target id="@+id/linearlayout_e7b214eb" view="LinearLayout"><Expressions/><location startLine="62" startOffset="4" endLine="82" endOffset="18"/></Target><Target id="@+id/textview_70a0c52b" view="TextView"><Expressions/><location startLine="72" startOffset="8" endLine="80" endOffset="13"/></Target><Target id="@+id/iconbutton_56bdcb7c" view="LinearLayout"><Expressions/><location startLine="84" startOffset="4" endLine="112" endOffset="18"/></Target><Target id="@+id/iViconbutton_56bdcb7c" view="ImageView"><Expressions/><location startLine="98" startOffset="8" endLine="103" endOffset="63"/></Target><Target id="@+id/tviconbutton_56bdcb7c" view="TextView"><Expressions/><location startLine="105" startOffset="8" endLine="110" endOffset="50"/></Target><Target id="@+id/recyclerview_851cde32" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="115" startOffset="4" endLine="126" endOffset="9"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_login" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_login.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_login_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="3" endLine="137" endOffset="55"/></Target><Target id="@+id/view" view="View"><Expressions/><location startLine="8" startOffset="7" endLine="15" endOffset="55"/></Target><Target id="@+id/tvWelcomeAuthLogin" view="TextView"><Expressions/><location startLine="18" startOffset="8" endLine="27" endOffset="61"/></Target><Target id="@+id/edTxtUserName" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="30" startOffset="4" endLine="53" endOffset="59"/></Target><Target id="@+id/edTxtUsername" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="41" startOffset="8" endLine="51" endOffset="38"/></Target><Target id="@+id/edTxtPassword" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="56" startOffset="4" endLine="87" endOffset="63"/></Target><Target id="@+id/edTxtPass" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="74" startOffset="12" endLine="85" endOffset="45"/></Target><Target id="@+id/btnLogin" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="91" startOffset="8" endLine="100" endOffset="74"/></Target><Target id="@+id/tvAccount" view="TextView"><Expressions/><location startLine="102" startOffset="12" endLine="112" endOffset="69"/></Target><Target id="@+id/btnSignup" view="TextView"><Expressions/><location startLine="114" startOffset="12" endLine="124" endOffset="67"/></Target><Target id="@+id/btnForgetPassword" view="TextView"><Expressions/><location startLine="127" startOffset="4" endLine="136" endOffset="50"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_profile" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_profile.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_profile_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="4" endLine="121" endOffset="51"/></Target><Target id="@+id/materialCardView2" view="androidx.cardview.widget.CardView"><Expressions/><location startLine="25" startOffset="12" endLine="42" endOffset="47"/></Target><Target id="@+id/ivUser" view="ImageView"><Expressions/><location startLine="35" startOffset="16" endLine="40" endOffset="69"/></Target><Target id="@+id/ivEdit" view="ImageView"><Expressions/><location startLine="44" startOffset="12" endLine="53" endOffset="17"/></Target><Target id="@+id/textViewFirstName" view="TextView"><Expressions/><location startLine="54" startOffset="12" endLine="63" endOffset="66"/></Target><Target id="@+id/textViewLastName" view="TextView"><Expressions/><location startLine="65" startOffset="12" endLine="74" endOffset="77"/></Target><Target id="@+id/textViewEmail" view="TextView"><Expressions/><location startLine="75" startOffset="12" endLine="84" endOffset="76"/></Target><Target id="@+id/buttonEditProfile" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="87" startOffset="12" endLine="98" endOffset="39"/></Target><Target id="@+id/btnLogout" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="100" startOffset="12" endLine="113" endOffset="39"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_profile_edit" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_profile_edit.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_profile_edit_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="89" endOffset="51"/></Target><Target id="@+id/materialCardView2" view="androidx.cardview.widget.CardView"><Expressions/><location startLine="24" startOffset="12" endLine="41" endOffset="47"/></Target><Target id="@+id/ivUser" view="ImageView"><Expressions/><location startLine="34" startOffset="16" endLine="39" endOffset="69"/></Target><Target id="@+id/ivEdit" view="ImageView"><Expressions/><location startLine="43" startOffset="12" endLine="50" endOffset="75"/></Target><Target id="@+id/editTextFirstName" view="EditText"><Expressions/><location startLine="53" startOffset="12" endLine="60" endOffset="66"/></Target><Target id="@+id/editTextLastName" view="EditText"><Expressions/><location startLine="62" startOffset="12" endLine="69" endOffset="77"/></Target><Target id="@+id/buttonSave" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="71" startOffset="12" endLine="82" endOffset="39"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_record_video" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_record_video.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.RelativeLayout"><Targets><Target tag="layout/fragment_record_video_0" view="android.widget.RelativeLayout"><Expressions/><location startLine="1" startOffset="0" endLine="212" endOffset="31"/></Target><Target id="@+id/lytHead" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="12" startOffset="4" endLine="61" endOffset="55"/></Target><Target id="@+id/home" view="ImageView"><Expressions/><location startLine="23" startOffset="8" endLine="34" endOffset="55"/></Target><Target id="@+id/profile" view="ImageView"><Expressions/><location startLine="37" startOffset="8" endLine="47" endOffset="55"/></Target><Target id="@+id/appCompatTextView2" view="TextView"><Expressions/><location startLine="50" startOffset="8" endLine="59" endOffset="55"/></Target><Target id="@+id/linearlayout_954aa57a" view="LinearLayout"><Expressions/><location startLine="64" startOffset="4" endLine="107" endOffset="18"/></Target><Target id="@+id/iconbutton_fdfd1f58" view="LinearLayout"><Expressions/><location startLine="80" startOffset="8" endLine="104" endOffset="22"/></Target><Target id="@+id/iViconbutton_fdfd1f58" view="ImageView"><Expressions/><location startLine="90" startOffset="12" endLine="95" endOffset="60"/></Target><Target id="@+id/tviconbutton_fdfd1f58" view="TextView"><Expressions/><location startLine="97" startOffset="12" endLine="102" endOffset="45"/></Target><Target id="@+id/linearlayout_a469f35f" view="LinearLayout"><Expressions/><location startLine="109" startOffset="4" endLine="158" endOffset="18"/></Target><Target id="@+id/autoCompleteTextView" view="AutoCompleteTextView"><Expressions/><location startLine="146" startOffset="16" endLine="152" endOffset="50"/></Target><Target id="@+id/linearlayout_9b9713e7" view="LinearLayout"><Expressions/><location startLine="161" startOffset="4" endLine="184" endOffset="18"/></Target><Target id="@+id/edittext_2aca91c0" view="EditText"><Expressions/><location startLine="174" startOffset="8" endLine="182" endOffset="13"/></Target><Target id="@+id/linearlayout_a9b8ff26" view="LinearLayout"><Expressions/><location startLine="186" startOffset="4" endLine="210" endOffset="18"/></Target><Target id="@+id/button_df91c240" view="Button"><Expressions/><location startLine="200" startOffset="8" endLine="208" endOffset="40"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_reset_password" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_reset_password.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.RelativeLayout"><Targets><Target tag="layout/fragment_reset_password_0" view="RelativeLayout"><Expressions/><location startLine="2" startOffset="0" endLine="136" endOffset="16"/></Target><Target id="@+id/textView2" view="TextView"><Expressions/><location startLine="15" startOffset="8" endLine="22" endOffset="37"/></Target><Target id="@+id/textView3" view="TextView"><Expressions/><location startLine="25" startOffset="8" endLine="31" endOffset="37"/></Target><Target id="@+id/code1" view="EditText"><Expressions/><location startLine="39" startOffset="12" endLine="47" endOffset="39"/></Target><Target id="@+id/code2" view="EditText"><Expressions/><location startLine="49" startOffset="12" endLine="57" endOffset="39"/></Target><Target id="@+id/code3" view="EditText"><Expressions/><location startLine="59" startOffset="12" endLine="67" endOffset="39"/></Target><Target id="@+id/code4" view="EditText"><Expressions/><location startLine="69" startOffset="12" endLine="77" endOffset="39"/></Target><Target id="@+id/code5" view="EditText"><Expressions/><location startLine="79" startOffset="12" endLine="87" endOffset="39"/></Target><Target id="@+id/code6" view="EditText"><Expressions/><location startLine="89" startOffset="12" endLine="97" endOffset="39"/></Target><Target id="@+id/edTxtPassword" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="101" startOffset="8" endLine="123" endOffset="63"/></Target><Target id="@+id/newPassword" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="111" startOffset="12" endLine="121" endOffset="42"/></Target><Target id="@+id/submitButton" view="Button"><Expressions/><location startLine="125" startOffset="8" endLine="133" endOffset="37"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_room_list" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_room_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.RelativeLayout"><Targets><Target tag="layout/fragment_room_list_0" view="android.widget.RelativeLayout"><Expressions/><location startLine="1" startOffset="4" endLine="31" endOffset="35"/></Target><Target id="@+id/recyclerview_637093b5" view="androidx.recyclerview.widget.RecyclerView"><Expressions/><location startLine="10" startOffset="12" endLine="19" endOffset="17"/></Target><Target id="@+id/addRoom" view="ImageView"><Expressions/><location startLine="21" startOffset="12" endLine="29" endOffset="56"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_sign_up" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_sign_up.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_sign_up_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="224" endOffset="51"/></Target><Target id="@+id/ivBack" view="Button"><Expressions/><location startLine="20" startOffset="12" endLine="27" endOffset="59"/></Target><Target id="@+id/textViewAuthSignUp" view="TextView"><Expressions/><location startLine="29" startOffset="12" endLine="37" endOffset="67"/></Target><Target id="@+id/edTxtUserName" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="39" startOffset="12" endLine="61" endOffset="67"/></Target><Target id="@+id/edTxtUsername" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="49" startOffset="16" endLine="59" endOffset="46"/></Target><Target id="@+id/edTxtFullName" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="63" startOffset="12" endLine="85" endOffset="67"/></Target><Target id="@+id/edTxtName" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="73" startOffset="16" endLine="83" endOffset="46"/></Target><Target id="@+id/edTxtEmail" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="87" startOffset="12" endLine="109" endOffset="67"/></Target><Target id="@+id/edtEmail" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="97" startOffset="16" endLine="107" endOffset="46"/></Target><Target id="@+id/tvInvalid" view="TextView"><Expressions/><location startLine="111" startOffset="12" endLine="119" endOffset="71"/></Target><Target id="@+id/edTxtPassword" view="com.google.android.material.textfield.TextInputLayout"><Expressions/><location startLine="121" startOffset="12" endLine="144" endOffset="67"/></Target><Target id="@+id/edtPass" view="com.google.android.material.textfield.TextInputEditText"><Expressions/><location startLine="132" startOffset="16" endLine="142" endOffset="46"/></Target><Target id="@+id/tvNotMatch" view="TextView"><Expressions/><location startLine="146" startOffset="12" endLine="154" endOffset="74"/></Target><Target id="@+id/cbAgree" view="CheckBox"><Expressions/><location startLine="156" startOffset="12" endLine="163" endOffset="74"/></Target><Target id="@+id/tv_agree" view="TextView"><Expressions/><location startLine="165" startOffset="12" endLine="173" endOffset="65"/></Target><Target id="@+id/btnCreateAccount" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="176" startOffset="12" endLine="186" endOffset="69"/></Target><Target id="@+id/tvAccount" view="TextView"><Expressions/><location startLine="188" startOffset="12" endLine="197" endOffset="77"/></Target><Target id="@+id/btnSignin" view="TextView"><Expressions/><location startLine="199" startOffset="12" endLine="208" endOffset="67"/></Target><Target id="@+id/ivDashLin1" view="Button"><Expressions/><location startLine="210" startOffset="12" endLine="217" endOffset="70"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_splash" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_splash.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="androidx.constraintlayout.widget.ConstraintLayout"><Targets><Target tag="layout/fragment_splash_0" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="1" startOffset="0" endLine="109" endOffset="51"/></Target><Target id="@+id/imageViewSplash" view="ImageView"><Expressions/><location startLine="10" startOffset="4" endLine="21" endOffset="49"/></Target><Target id="@+id/buttonSplashLogin" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="23" startOffset="4" endLine="34" endOffset="31"/></Target><Target id="@+id/btnSplashRegister" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="37" startOffset="4" endLine="50" endOffset="31"/></Target><Target id="@+id/linearLayout" view="LinearLayout"><Expressions/><location startLine="65" startOffset="8" endLine="103" endOffset="22"/></Target><Target id="@+id/btnGoogle" view="com.google.android.material.button.MaterialButton"><Expressions/><location startLine="88" startOffset="12" endLine="101" endOffset="49"/></Target></Targets></Layout>
|
||||
+1
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="fragment_video_ui" modulePackage="Manaknight" filePath="app/src/main/res/layout/fragment_video_ui.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/fragment_video_ui_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="82" endOffset="14"/></Target><Target id="@+id/lytHead" view="androidx.constraintlayout.widget.ConstraintLayout"><Expressions/><location startLine="10" startOffset="4" endLine="58" endOffset="55"/></Target><Target id="@+id/home" view="ImageView"><Expressions/><location startLine="21" startOffset="8" endLine="32" endOffset="55"/></Target><Target id="@+id/profile" view="ImageView"><Expressions/><location startLine="34" startOffset="8" endLine="44" endOffset="55"/></Target><Target id="@+id/appCompatTextView2" view="TextView"><Expressions/><location startLine="47" startOffset="8" endLine="56" endOffset="55"/></Target><Target id="@+id/preview" view="SurfaceView"><Expressions/><location startLine="65" startOffset="8" endLine="69" endOffset="50"/></Target><Target id="@+id/btn_stop" view="Button"><Expressions/><location startLine="71" startOffset="8" endLine="77" endOffset="42"/></Target></Targets></Layout>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user