first
This commit is contained in:
@@ -0,0 +1,133 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.jordanbot.autoride.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.jordanbot.autoride.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityMainBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final Button btnAccessibility;
|
||||
|
||||
@NonNull
|
||||
public final Button btnNotification;
|
||||
|
||||
@NonNull
|
||||
public final Button btnOverlay;
|
||||
|
||||
@NonNull
|
||||
public final Button btnStart;
|
||||
|
||||
@NonNull
|
||||
public final Button btnStop;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout mainLayout;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvStatus;
|
||||
|
||||
private ActivityMainBinding(@NonNull ScrollView rootView, @NonNull Button btnAccessibility,
|
||||
@NonNull Button btnNotification, @NonNull Button btnOverlay, @NonNull Button btnStart,
|
||||
@NonNull Button btnStop, @NonNull LinearLayout mainLayout, @NonNull TextView tvStatus) {
|
||||
this.rootView = rootView;
|
||||
this.btnAccessibility = btnAccessibility;
|
||||
this.btnNotification = btnNotification;
|
||||
this.btnOverlay = btnOverlay;
|
||||
this.btnStart = btnStart;
|
||||
this.btnStop = btnStop;
|
||||
this.mainLayout = mainLayout;
|
||||
this.tvStatus = tvStatus;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_main, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityMainBinding bind(@NonNull View rootView) {
|
||||
// The body of this method is generated in a way you would not otherwise write.
|
||||
// This is done to optimize the compiled bytecode for size and performance.
|
||||
int id;
|
||||
missingId: {
|
||||
id = R.id.btn_accessibility;
|
||||
Button btnAccessibility = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnAccessibility == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_notification;
|
||||
Button btnNotification = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnNotification == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_overlay;
|
||||
Button btnOverlay = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnOverlay == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_start;
|
||||
Button btnStart = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnStart == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_stop;
|
||||
Button btnStop = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnStop == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.main_layout;
|
||||
LinearLayout mainLayout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (mainLayout == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tv_status;
|
||||
TextView tvStatus = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvStatus == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityMainBinding((ScrollView) rootView, btnAccessibility, btnNotification,
|
||||
btnOverlay, btnStart, btnStop, mainLayout, tvStatus);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.jordanbot.autoride.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.Switch;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.jordanbot.autoride.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class OverlayExpandedBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final Button btnSaveClose;
|
||||
|
||||
@NonNull
|
||||
public final EditText etMaxMinutes;
|
||||
|
||||
@NonNull
|
||||
public final EditText etMinPrice;
|
||||
|
||||
@NonNull
|
||||
public final Switch switchBotStatus;
|
||||
|
||||
private OverlayExpandedBinding(@NonNull LinearLayout rootView, @NonNull Button btnSaveClose,
|
||||
@NonNull EditText etMaxMinutes, @NonNull EditText etMinPrice,
|
||||
@NonNull Switch switchBotStatus) {
|
||||
this.rootView = rootView;
|
||||
this.btnSaveClose = btnSaveClose;
|
||||
this.etMaxMinutes = etMaxMinutes;
|
||||
this.etMinPrice = etMinPrice;
|
||||
this.switchBotStatus = switchBotStatus;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static OverlayExpandedBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static OverlayExpandedBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.overlay_expanded, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static OverlayExpandedBinding 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.btn_save_close;
|
||||
Button btnSaveClose = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSaveClose == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.et_max_minutes;
|
||||
EditText etMaxMinutes = ViewBindings.findChildViewById(rootView, id);
|
||||
if (etMaxMinutes == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.et_min_price;
|
||||
EditText etMinPrice = ViewBindings.findChildViewById(rootView, id);
|
||||
if (etMinPrice == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.switch_bot_status;
|
||||
Switch switchBotStatus = ViewBindings.findChildViewById(rootView, id);
|
||||
if (switchBotStatus == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new OverlayExpandedBinding((LinearLayout) rootView, btnSaveClose, etMaxMinutes,
|
||||
etMinPrice, switchBotStatus);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,68 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.jordanbot.autoride.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.FrameLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.jordanbot.autoride.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class OverlayFloatingBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final FrameLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvBubble;
|
||||
|
||||
private OverlayFloatingBinding(@NonNull FrameLayout rootView, @NonNull TextView tvBubble) {
|
||||
this.rootView = rootView;
|
||||
this.tvBubble = tvBubble;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public FrameLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static OverlayFloatingBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static OverlayFloatingBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.overlay_floating, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static OverlayFloatingBinding 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.tv_bubble;
|
||||
TextView tvBubble = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvBubble == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new OverlayFloatingBinding((FrameLayout) rootView, tvBubble);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package com.jordanbot.autoride;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||
public static final String APPLICATION_ID = "com.jordanbot.autoride.debug";
|
||||
public static final String BUILD_TYPE = "debug";
|
||||
public static final int VERSION_CODE = 1;
|
||||
public static final String VERSION_NAME = "1.0.0";
|
||||
}
|
||||
Reference in New Issue
Block a user