Update: 2026-05-15 22:43:32
This commit is contained in:
@@ -33,12 +33,21 @@ public final class ActivityMainBinding implements ViewBinding {
|
||||
@NonNull
|
||||
public final Button btnOverlay;
|
||||
|
||||
@NonNull
|
||||
public final Button btnSettings;
|
||||
|
||||
@NonNull
|
||||
public final Button btnStart;
|
||||
|
||||
@NonNull
|
||||
public final Button btnStop;
|
||||
|
||||
@NonNull
|
||||
public final Button btnSubscriptions;
|
||||
|
||||
@NonNull
|
||||
public final Button btnTestConnection;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout mainLayout;
|
||||
|
||||
@@ -47,15 +56,19 @@ public final class ActivityMainBinding implements ViewBinding {
|
||||
|
||||
private ActivityMainBinding(@NonNull ScrollView rootView, @NonNull Button btnAccessibility,
|
||||
@NonNull Button btnLocation, @NonNull Button btnNotification, @NonNull Button btnOverlay,
|
||||
@NonNull Button btnStart, @NonNull Button btnStop, @NonNull LinearLayout mainLayout,
|
||||
@NonNull TextView tvStatus) {
|
||||
@NonNull Button btnSettings, @NonNull Button btnStart, @NonNull Button btnStop,
|
||||
@NonNull Button btnSubscriptions, @NonNull Button btnTestConnection,
|
||||
@NonNull LinearLayout mainLayout, @NonNull TextView tvStatus) {
|
||||
this.rootView = rootView;
|
||||
this.btnAccessibility = btnAccessibility;
|
||||
this.btnLocation = btnLocation;
|
||||
this.btnNotification = btnNotification;
|
||||
this.btnOverlay = btnOverlay;
|
||||
this.btnSettings = btnSettings;
|
||||
this.btnStart = btnStart;
|
||||
this.btnStop = btnStop;
|
||||
this.btnSubscriptions = btnSubscriptions;
|
||||
this.btnTestConnection = btnTestConnection;
|
||||
this.mainLayout = mainLayout;
|
||||
this.tvStatus = tvStatus;
|
||||
}
|
||||
@@ -111,6 +124,12 @@ public final class ActivityMainBinding implements ViewBinding {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_settings;
|
||||
Button btnSettings = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSettings == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_start;
|
||||
Button btnStart = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnStart == null) {
|
||||
@@ -123,6 +142,18 @@ public final class ActivityMainBinding implements ViewBinding {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_subscriptions;
|
||||
Button btnSubscriptions = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSubscriptions == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_test_connection;
|
||||
Button btnTestConnection = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnTestConnection == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.main_layout;
|
||||
LinearLayout mainLayout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (mainLayout == null) {
|
||||
@@ -136,7 +167,8 @@ public final class ActivityMainBinding implements ViewBinding {
|
||||
}
|
||||
|
||||
return new ActivityMainBinding((ScrollView) rootView, btnAccessibility, btnLocation,
|
||||
btnNotification, btnOverlay, btnStart, btnStop, mainLayout, tvStatus);
|
||||
btnNotification, btnOverlay, btnSettings, btnStart, btnStop, btnSubscriptions,
|
||||
btnTestConnection, mainLayout, tvStatus);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
|
||||
@@ -0,0 +1,145 @@
|
||||
// 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.CheckBox;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ScrollView;
|
||||
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 ActivitySettingsBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final Button btnSaveSettings;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox cbCareem;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox cbJeeny;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox cbUber;
|
||||
|
||||
@NonNull
|
||||
public final EditText etMaxMinutes;
|
||||
|
||||
@NonNull
|
||||
public final EditText etMinPrice;
|
||||
|
||||
@NonNull
|
||||
public final Switch switchAutoAccept;
|
||||
|
||||
@NonNull
|
||||
public final Switch switchDarkMode;
|
||||
|
||||
private ActivitySettingsBinding(@NonNull ScrollView rootView, @NonNull Button btnSaveSettings,
|
||||
@NonNull CheckBox cbCareem, @NonNull CheckBox cbJeeny, @NonNull CheckBox cbUber,
|
||||
@NonNull EditText etMaxMinutes, @NonNull EditText etMinPrice,
|
||||
@NonNull Switch switchAutoAccept, @NonNull Switch switchDarkMode) {
|
||||
this.rootView = rootView;
|
||||
this.btnSaveSettings = btnSaveSettings;
|
||||
this.cbCareem = cbCareem;
|
||||
this.cbJeeny = cbJeeny;
|
||||
this.cbUber = cbUber;
|
||||
this.etMaxMinutes = etMaxMinutes;
|
||||
this.etMinPrice = etMinPrice;
|
||||
this.switchAutoAccept = switchAutoAccept;
|
||||
this.switchDarkMode = switchDarkMode;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivitySettingsBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivitySettingsBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_settings, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivitySettingsBinding 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_settings;
|
||||
Button btnSaveSettings = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSaveSettings == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.cb_careem;
|
||||
CheckBox cbCareem = ViewBindings.findChildViewById(rootView, id);
|
||||
if (cbCareem == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.cb_jeeny;
|
||||
CheckBox cbJeeny = ViewBindings.findChildViewById(rootView, id);
|
||||
if (cbJeeny == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.cb_uber;
|
||||
CheckBox cbUber = ViewBindings.findChildViewById(rootView, id);
|
||||
if (cbUber == 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_auto_accept;
|
||||
Switch switchAutoAccept = ViewBindings.findChildViewById(rootView, id);
|
||||
if (switchAutoAccept == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.switch_dark_mode;
|
||||
Switch switchDarkMode = ViewBindings.findChildViewById(rootView, id);
|
||||
if (switchDarkMode == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivitySettingsBinding((ScrollView) rootView, btnSaveSettings, cbCareem, cbJeeny,
|
||||
cbUber, etMaxMinutes, etMinPrice, switchAutoAccept, switchDarkMode);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
// 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.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 ActivitySubscriptionBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final Button btnSubscribeBasic;
|
||||
|
||||
@NonNull
|
||||
public final Button btnSubscribePro;
|
||||
|
||||
@NonNull
|
||||
public final TextView tvCurrentStatus;
|
||||
|
||||
private ActivitySubscriptionBinding(@NonNull ScrollView rootView,
|
||||
@NonNull Button btnSubscribeBasic, @NonNull Button btnSubscribePro,
|
||||
@NonNull TextView tvCurrentStatus) {
|
||||
this.rootView = rootView;
|
||||
this.btnSubscribeBasic = btnSubscribeBasic;
|
||||
this.btnSubscribePro = btnSubscribePro;
|
||||
this.tvCurrentStatus = tvCurrentStatus;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivitySubscriptionBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivitySubscriptionBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_subscription, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivitySubscriptionBinding 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_subscribe_basic;
|
||||
Button btnSubscribeBasic = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSubscribeBasic == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.btn_subscribe_pro;
|
||||
Button btnSubscribePro = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnSubscribePro == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.tv_current_status;
|
||||
TextView tvCurrentStatus = ViewBindings.findChildViewById(rootView, id);
|
||||
if (tvCurrentStatus == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivitySubscriptionBinding((ScrollView) rootView, btnSubscribeBasic,
|
||||
btnSubscribePro, tvCurrentStatus);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
||||
@@ -9,4 +9,6 @@ public final class BuildConfig {
|
||||
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 API_KEY = "JB_8a7d6c5b4a39281706f5e4d3c2b1a0";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user