Remove build artifacts...
This commit is contained in:
parent
74803af21b
commit
c2a399c935
@ -1,86 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageButton;
|
||||
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.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class AccountRowBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout accountRow;
|
||||
|
||||
@NonNull
|
||||
public final ImageButton action;
|
||||
|
||||
@NonNull
|
||||
public final TextView aor;
|
||||
|
||||
private AccountRowBinding(@NonNull RelativeLayout rootView, @NonNull RelativeLayout accountRow,
|
||||
@NonNull ImageButton action, @NonNull TextView aor) {
|
||||
this.rootView = rootView;
|
||||
this.accountRow = accountRow;
|
||||
this.action = action;
|
||||
this.aor = aor;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AccountRowBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AccountRowBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.account_row, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AccountRowBinding 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: {
|
||||
RelativeLayout accountRow = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.action;
|
||||
ImageButton action = ViewBindings.findChildViewById(rootView, id);
|
||||
if (action == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.aor;
|
||||
TextView aor = ViewBindings.findChildViewById(rootView, id);
|
||||
if (aor == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new AccountRowBinding((RelativeLayout) rootView, accountRow, action, aor);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,80 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TableLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class AccountSpinnerBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final TableLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView spinnerImage;
|
||||
|
||||
@NonNull
|
||||
public final TextView spinnerText;
|
||||
|
||||
private AccountSpinnerBinding(@NonNull TableLayout rootView, @NonNull ImageView spinnerImage,
|
||||
@NonNull TextView spinnerText) {
|
||||
this.rootView = rootView;
|
||||
this.spinnerImage = spinnerImage;
|
||||
this.spinnerText = spinnerText;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public TableLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AccountSpinnerBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AccountSpinnerBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.account_spinner, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AccountSpinnerBinding 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.spinnerImage;
|
||||
ImageView spinnerImage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (spinnerImage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.spinnerText;
|
||||
TextView spinnerText = ViewBindings.findChildViewById(rootView, id);
|
||||
if (spinnerText == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new AccountSpinnerBinding((TableLayout) rootView, spinnerImage, spinnerText);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,68 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityAboutBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView aboutText;
|
||||
|
||||
private ActivityAboutBinding(@NonNull LinearLayout rootView, @NonNull TextView aboutText) {
|
||||
this.rootView = rootView;
|
||||
this.aboutText = aboutText;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAboutBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAboutBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_about, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAboutBinding 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.aboutText;
|
||||
TextView aboutText = ViewBindings.findChildViewById(rootView, id);
|
||||
if (aboutText == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityAboutBinding((LinearLayout) rootView, aboutText);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,568 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.EditText;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.Spinner;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.widget.AppCompatEditText;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityAccountBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final ScrollView AccountView;
|
||||
|
||||
@NonNull
|
||||
public final TextView AnswerModeTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView AudioCodecsTitle;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatEditText AuthPass;
|
||||
|
||||
@NonNull
|
||||
public final TextView AuthPassTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText AuthUser;
|
||||
|
||||
@NonNull
|
||||
public final TextView AuthUserTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView CountryCodeTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox Default;
|
||||
|
||||
@NonNull
|
||||
public final TextView DefaultTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText DisplayName;
|
||||
|
||||
@NonNull
|
||||
public final TextView DisplayNameTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView DtmfModeTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView MediaEncTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView MediaNatTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText NickName;
|
||||
|
||||
@NonNull
|
||||
public final TextView NickNameTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText Outbound1;
|
||||
|
||||
@NonNull
|
||||
public final EditText Outbound2;
|
||||
|
||||
@NonNull
|
||||
public final TextView OutboundProxyTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView RedirectModeTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText RegInt;
|
||||
|
||||
@NonNull
|
||||
public final TextView RegIntTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView RegTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox Register;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox Rel100;
|
||||
|
||||
@NonNull
|
||||
public final TextView Rel100Title;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox RtcpMux;
|
||||
|
||||
@NonNull
|
||||
public final TextView RtcpMuxTitle;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout Stun;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatEditText StunPass;
|
||||
|
||||
@NonNull
|
||||
public final TextView StunPassTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText StunServer;
|
||||
|
||||
@NonNull
|
||||
public final TextView StunServerTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText StunUser;
|
||||
|
||||
@NonNull
|
||||
public final TextView StunUserTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView TelephonyProviderTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView Uri;
|
||||
|
||||
@NonNull
|
||||
public final TextView VideoCodecsTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView VoicemailUriTitle;
|
||||
|
||||
@NonNull
|
||||
public final Spinner answerModeSpinner;
|
||||
|
||||
@NonNull
|
||||
public final EditText countryCode;
|
||||
|
||||
@NonNull
|
||||
public final Spinner dtmfModeSpinner;
|
||||
|
||||
@NonNull
|
||||
public final Spinner mediaEncSpinner;
|
||||
|
||||
@NonNull
|
||||
public final Spinner mediaNatSpinner;
|
||||
|
||||
@NonNull
|
||||
public final Spinner redirectModeSpinner;
|
||||
|
||||
@NonNull
|
||||
public final EditText telephonyProvider;
|
||||
|
||||
@NonNull
|
||||
public final EditText voicemailUri;
|
||||
|
||||
private ActivityAccountBinding(@NonNull ScrollView rootView, @NonNull ScrollView AccountView,
|
||||
@NonNull TextView AnswerModeTitle, @NonNull TextView AudioCodecsTitle,
|
||||
@NonNull AppCompatEditText AuthPass, @NonNull TextView AuthPassTitle,
|
||||
@NonNull EditText AuthUser, @NonNull TextView AuthUserTitle,
|
||||
@NonNull TextView CountryCodeTitle, @NonNull CheckBox Default, @NonNull TextView DefaultTitle,
|
||||
@NonNull EditText DisplayName, @NonNull TextView DisplayNameTitle,
|
||||
@NonNull TextView DtmfModeTitle, @NonNull TextView MediaEncTitle,
|
||||
@NonNull TextView MediaNatTitle, @NonNull EditText NickName, @NonNull TextView NickNameTitle,
|
||||
@NonNull EditText Outbound1, @NonNull EditText Outbound2,
|
||||
@NonNull TextView OutboundProxyTitle, @NonNull TextView RedirectModeTitle,
|
||||
@NonNull EditText RegInt, @NonNull TextView RegIntTitle, @NonNull TextView RegTitle,
|
||||
@NonNull CheckBox Register, @NonNull CheckBox Rel100, @NonNull TextView Rel100Title,
|
||||
@NonNull CheckBox RtcpMux, @NonNull TextView RtcpMuxTitle, @NonNull LinearLayout Stun,
|
||||
@NonNull AppCompatEditText StunPass, @NonNull TextView StunPassTitle,
|
||||
@NonNull EditText StunServer, @NonNull TextView StunServerTitle, @NonNull EditText StunUser,
|
||||
@NonNull TextView StunUserTitle, @NonNull TextView TelephonyProviderTitle,
|
||||
@NonNull TextView Uri, @NonNull TextView VideoCodecsTitle,
|
||||
@NonNull TextView VoicemailUriTitle, @NonNull Spinner answerModeSpinner,
|
||||
@NonNull EditText countryCode, @NonNull Spinner dtmfModeSpinner,
|
||||
@NonNull Spinner mediaEncSpinner, @NonNull Spinner mediaNatSpinner,
|
||||
@NonNull Spinner redirectModeSpinner, @NonNull EditText telephonyProvider,
|
||||
@NonNull EditText voicemailUri) {
|
||||
this.rootView = rootView;
|
||||
this.AccountView = AccountView;
|
||||
this.AnswerModeTitle = AnswerModeTitle;
|
||||
this.AudioCodecsTitle = AudioCodecsTitle;
|
||||
this.AuthPass = AuthPass;
|
||||
this.AuthPassTitle = AuthPassTitle;
|
||||
this.AuthUser = AuthUser;
|
||||
this.AuthUserTitle = AuthUserTitle;
|
||||
this.CountryCodeTitle = CountryCodeTitle;
|
||||
this.Default = Default;
|
||||
this.DefaultTitle = DefaultTitle;
|
||||
this.DisplayName = DisplayName;
|
||||
this.DisplayNameTitle = DisplayNameTitle;
|
||||
this.DtmfModeTitle = DtmfModeTitle;
|
||||
this.MediaEncTitle = MediaEncTitle;
|
||||
this.MediaNatTitle = MediaNatTitle;
|
||||
this.NickName = NickName;
|
||||
this.NickNameTitle = NickNameTitle;
|
||||
this.Outbound1 = Outbound1;
|
||||
this.Outbound2 = Outbound2;
|
||||
this.OutboundProxyTitle = OutboundProxyTitle;
|
||||
this.RedirectModeTitle = RedirectModeTitle;
|
||||
this.RegInt = RegInt;
|
||||
this.RegIntTitle = RegIntTitle;
|
||||
this.RegTitle = RegTitle;
|
||||
this.Register = Register;
|
||||
this.Rel100 = Rel100;
|
||||
this.Rel100Title = Rel100Title;
|
||||
this.RtcpMux = RtcpMux;
|
||||
this.RtcpMuxTitle = RtcpMuxTitle;
|
||||
this.Stun = Stun;
|
||||
this.StunPass = StunPass;
|
||||
this.StunPassTitle = StunPassTitle;
|
||||
this.StunServer = StunServer;
|
||||
this.StunServerTitle = StunServerTitle;
|
||||
this.StunUser = StunUser;
|
||||
this.StunUserTitle = StunUserTitle;
|
||||
this.TelephonyProviderTitle = TelephonyProviderTitle;
|
||||
this.Uri = Uri;
|
||||
this.VideoCodecsTitle = VideoCodecsTitle;
|
||||
this.VoicemailUriTitle = VoicemailUriTitle;
|
||||
this.answerModeSpinner = answerModeSpinner;
|
||||
this.countryCode = countryCode;
|
||||
this.dtmfModeSpinner = dtmfModeSpinner;
|
||||
this.mediaEncSpinner = mediaEncSpinner;
|
||||
this.mediaNatSpinner = mediaNatSpinner;
|
||||
this.redirectModeSpinner = redirectModeSpinner;
|
||||
this.telephonyProvider = telephonyProvider;
|
||||
this.voicemailUri = voicemailUri;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAccountBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAccountBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_account, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAccountBinding 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: {
|
||||
ScrollView AccountView = (ScrollView) rootView;
|
||||
|
||||
id = R.id.AnswerModeTitle;
|
||||
TextView AnswerModeTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AnswerModeTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AudioCodecsTitle;
|
||||
TextView AudioCodecsTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AudioCodecsTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AuthPass;
|
||||
AppCompatEditText AuthPass = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AuthPass == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AuthPassTitle;
|
||||
TextView AuthPassTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AuthPassTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AuthUser;
|
||||
EditText AuthUser = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AuthUser == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AuthUserTitle;
|
||||
TextView AuthUserTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AuthUserTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.CountryCodeTitle;
|
||||
TextView CountryCodeTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CountryCodeTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Default;
|
||||
CheckBox Default = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Default == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DefaultTitle;
|
||||
TextView DefaultTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DefaultTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DisplayName;
|
||||
EditText DisplayName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DisplayName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DisplayNameTitle;
|
||||
TextView DisplayNameTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DisplayNameTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DtmfModeTitle;
|
||||
TextView DtmfModeTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DtmfModeTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.MediaEncTitle;
|
||||
TextView MediaEncTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (MediaEncTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.MediaNatTitle;
|
||||
TextView MediaNatTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (MediaNatTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.NickName;
|
||||
EditText NickName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (NickName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.NickNameTitle;
|
||||
TextView NickNameTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (NickNameTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Outbound1;
|
||||
EditText Outbound1 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Outbound1 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Outbound2;
|
||||
EditText Outbound2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Outbound2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.OutboundProxyTitle;
|
||||
TextView OutboundProxyTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (OutboundProxyTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.RedirectModeTitle;
|
||||
TextView RedirectModeTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (RedirectModeTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.RegInt;
|
||||
EditText RegInt = ViewBindings.findChildViewById(rootView, id);
|
||||
if (RegInt == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.RegIntTitle;
|
||||
TextView RegIntTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (RegIntTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.RegTitle;
|
||||
TextView RegTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (RegTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Register;
|
||||
CheckBox Register = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Register == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Rel100;
|
||||
CheckBox Rel100 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Rel100 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Rel100Title;
|
||||
TextView Rel100Title = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Rel100Title == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.RtcpMux;
|
||||
CheckBox RtcpMux = ViewBindings.findChildViewById(rootView, id);
|
||||
if (RtcpMux == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.RtcpMuxTitle;
|
||||
TextView RtcpMuxTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (RtcpMuxTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Stun;
|
||||
LinearLayout Stun = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Stun == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.StunPass;
|
||||
AppCompatEditText StunPass = ViewBindings.findChildViewById(rootView, id);
|
||||
if (StunPass == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.StunPassTitle;
|
||||
TextView StunPassTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (StunPassTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.StunServer;
|
||||
EditText StunServer = ViewBindings.findChildViewById(rootView, id);
|
||||
if (StunServer == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.StunServerTitle;
|
||||
TextView StunServerTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (StunServerTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.StunUser;
|
||||
EditText StunUser = ViewBindings.findChildViewById(rootView, id);
|
||||
if (StunUser == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.StunUserTitle;
|
||||
TextView StunUserTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (StunUserTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.TelephonyProviderTitle;
|
||||
TextView TelephonyProviderTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (TelephonyProviderTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Uri;
|
||||
TextView Uri = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Uri == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VideoCodecsTitle;
|
||||
TextView VideoCodecsTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VideoCodecsTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VoicemailUriTitle;
|
||||
TextView VoicemailUriTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VoicemailUriTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.answerModeSpinner;
|
||||
Spinner answerModeSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (answerModeSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.countryCode;
|
||||
EditText countryCode = ViewBindings.findChildViewById(rootView, id);
|
||||
if (countryCode == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.dtmfModeSpinner;
|
||||
Spinner dtmfModeSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (dtmfModeSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.mediaEncSpinner;
|
||||
Spinner mediaEncSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (mediaEncSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.mediaNatSpinner;
|
||||
Spinner mediaNatSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (mediaNatSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.redirectModeSpinner;
|
||||
Spinner redirectModeSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (redirectModeSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.telephonyProvider;
|
||||
EditText telephonyProvider = ViewBindings.findChildViewById(rootView, id);
|
||||
if (telephonyProvider == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.voicemailUri;
|
||||
EditText voicemailUri = ViewBindings.findChildViewById(rootView, id);
|
||||
if (voicemailUri == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityAccountBinding((ScrollView) rootView, AccountView, AnswerModeTitle,
|
||||
AudioCodecsTitle, AuthPass, AuthPassTitle, AuthUser, AuthUserTitle, CountryCodeTitle,
|
||||
Default, DefaultTitle, DisplayName, DisplayNameTitle, DtmfModeTitle, MediaEncTitle,
|
||||
MediaNatTitle, NickName, NickNameTitle, Outbound1, Outbound2, OutboundProxyTitle,
|
||||
RedirectModeTitle, RegInt, RegIntTitle, RegTitle, Register, Rel100, Rel100Title, RtcpMux,
|
||||
RtcpMuxTitle, Stun, StunPass, StunPassTitle, StunServer, StunServerTitle, StunUser,
|
||||
StunUserTitle, TelephonyProviderTitle, Uri, VideoCodecsTitle, VoicemailUriTitle,
|
||||
answerModeSpinner, countryCode, dtmfModeSpinner, mediaEncSpinner, mediaNatSpinner,
|
||||
redirectModeSpinner, telephonyProvider, voicemailUri);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,99 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.ListView;
|
||||
import android.widget.RelativeLayout;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityAccountsBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout AccountsView;
|
||||
|
||||
@NonNull
|
||||
public final ListView accounts;
|
||||
|
||||
@NonNull
|
||||
public final ImageButton addAccount;
|
||||
|
||||
@NonNull
|
||||
public final EditText newAor;
|
||||
|
||||
private ActivityAccountsBinding(@NonNull RelativeLayout rootView,
|
||||
@NonNull RelativeLayout AccountsView, @NonNull ListView accounts,
|
||||
@NonNull ImageButton addAccount, @NonNull EditText newAor) {
|
||||
this.rootView = rootView;
|
||||
this.AccountsView = AccountsView;
|
||||
this.accounts = accounts;
|
||||
this.addAccount = addAccount;
|
||||
this.newAor = newAor;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAccountsBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAccountsBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_accounts, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAccountsBinding 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: {
|
||||
RelativeLayout AccountsView = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.accounts;
|
||||
ListView accounts = ViewBindings.findChildViewById(rootView, id);
|
||||
if (accounts == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.addAccount;
|
||||
ImageButton addAccount = ViewBindings.findChildViewById(rootView, id);
|
||||
if (addAccount == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.newAor;
|
||||
EditText newAor = ViewBindings.findChildViewById(rootView, id);
|
||||
if (newAor == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityAccountsBinding((RelativeLayout) rootView, AccountsView, accounts,
|
||||
addAccount, newAor);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,121 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.ListView;
|
||||
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 com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityAndroidContactBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final CardView CardAvatar;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout ContactView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ImageAvatar;
|
||||
|
||||
@NonNull
|
||||
public final TextView Name;
|
||||
|
||||
@NonNull
|
||||
public final TextView TextAvatar;
|
||||
|
||||
@NonNull
|
||||
public final ListView uris;
|
||||
|
||||
private ActivityAndroidContactBinding(@NonNull LinearLayout rootView,
|
||||
@NonNull CardView CardAvatar, @NonNull LinearLayout ContactView,
|
||||
@NonNull ImageView ImageAvatar, @NonNull TextView Name, @NonNull TextView TextAvatar,
|
||||
@NonNull ListView uris) {
|
||||
this.rootView = rootView;
|
||||
this.CardAvatar = CardAvatar;
|
||||
this.ContactView = ContactView;
|
||||
this.ImageAvatar = ImageAvatar;
|
||||
this.Name = Name;
|
||||
this.TextAvatar = TextAvatar;
|
||||
this.uris = uris;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAndroidContactBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAndroidContactBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_android_contact, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAndroidContactBinding 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.CardAvatar;
|
||||
CardView CardAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CardAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
LinearLayout ContactView = (LinearLayout) rootView;
|
||||
|
||||
id = R.id.ImageAvatar;
|
||||
ImageView ImageAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ImageAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Name;
|
||||
TextView Name = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Name == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.TextAvatar;
|
||||
TextView TextAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (TextAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.uris;
|
||||
ListView uris = ViewBindings.findChildViewById(rootView, id);
|
||||
if (uris == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityAndroidContactBinding((LinearLayout) rootView, CardAvatar, ContactView,
|
||||
ImageAvatar, Name, TextAvatar, uris);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,282 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.EditText;
|
||||
import android.widget.LinearLayout;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.Spinner;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityAudioBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox Aec;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout AecLayout;
|
||||
|
||||
@NonNull
|
||||
public final TextView AecTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText AudioDelay;
|
||||
|
||||
@NonNull
|
||||
public final TextView AudioDelayTitle;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout AudioModulesList;
|
||||
|
||||
@NonNull
|
||||
public final TextView AudioModulesTitle;
|
||||
|
||||
@NonNull
|
||||
public final ScrollView AudioView;
|
||||
|
||||
@NonNull
|
||||
public final EditText MicGain;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout MicGainLayout;
|
||||
|
||||
@NonNull
|
||||
public final TextView MicGainTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText OpusBitRate;
|
||||
|
||||
@NonNull
|
||||
public final TextView OpusBitRateTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText OpusPacketLoss;
|
||||
|
||||
@NonNull
|
||||
public final TextView OpusPacketLossTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox SpeakerPhone;
|
||||
|
||||
@NonNull
|
||||
public final TextView SpeakerPhoneTitle;
|
||||
|
||||
@NonNull
|
||||
public final Spinner ToneCountrySpinner;
|
||||
|
||||
@NonNull
|
||||
public final TextView ToneCountryTitle;
|
||||
|
||||
@NonNull
|
||||
public final Spinner VolumeSpinner;
|
||||
|
||||
@NonNull
|
||||
public final TextView VolumeTitle;
|
||||
|
||||
private ActivityAudioBinding(@NonNull ScrollView rootView, @NonNull CheckBox Aec,
|
||||
@NonNull RelativeLayout AecLayout, @NonNull TextView AecTitle, @NonNull EditText AudioDelay,
|
||||
@NonNull TextView AudioDelayTitle, @NonNull LinearLayout AudioModulesList,
|
||||
@NonNull TextView AudioModulesTitle, @NonNull ScrollView AudioView, @NonNull EditText MicGain,
|
||||
@NonNull RelativeLayout MicGainLayout, @NonNull TextView MicGainTitle,
|
||||
@NonNull EditText OpusBitRate, @NonNull TextView OpusBitRateTitle,
|
||||
@NonNull EditText OpusPacketLoss, @NonNull TextView OpusPacketLossTitle,
|
||||
@NonNull CheckBox SpeakerPhone, @NonNull TextView SpeakerPhoneTitle,
|
||||
@NonNull Spinner ToneCountrySpinner, @NonNull TextView ToneCountryTitle,
|
||||
@NonNull Spinner VolumeSpinner, @NonNull TextView VolumeTitle) {
|
||||
this.rootView = rootView;
|
||||
this.Aec = Aec;
|
||||
this.AecLayout = AecLayout;
|
||||
this.AecTitle = AecTitle;
|
||||
this.AudioDelay = AudioDelay;
|
||||
this.AudioDelayTitle = AudioDelayTitle;
|
||||
this.AudioModulesList = AudioModulesList;
|
||||
this.AudioModulesTitle = AudioModulesTitle;
|
||||
this.AudioView = AudioView;
|
||||
this.MicGain = MicGain;
|
||||
this.MicGainLayout = MicGainLayout;
|
||||
this.MicGainTitle = MicGainTitle;
|
||||
this.OpusBitRate = OpusBitRate;
|
||||
this.OpusBitRateTitle = OpusBitRateTitle;
|
||||
this.OpusPacketLoss = OpusPacketLoss;
|
||||
this.OpusPacketLossTitle = OpusPacketLossTitle;
|
||||
this.SpeakerPhone = SpeakerPhone;
|
||||
this.SpeakerPhoneTitle = SpeakerPhoneTitle;
|
||||
this.ToneCountrySpinner = ToneCountrySpinner;
|
||||
this.ToneCountryTitle = ToneCountryTitle;
|
||||
this.VolumeSpinner = VolumeSpinner;
|
||||
this.VolumeTitle = VolumeTitle;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAudioBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAudioBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_audio, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityAudioBinding 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.Aec;
|
||||
CheckBox Aec = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Aec == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AecLayout;
|
||||
RelativeLayout AecLayout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AecLayout == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AecTitle;
|
||||
TextView AecTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AecTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AudioDelay;
|
||||
EditText AudioDelay = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AudioDelay == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AudioDelayTitle;
|
||||
TextView AudioDelayTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AudioDelayTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AudioModulesList;
|
||||
LinearLayout AudioModulesList = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AudioModulesList == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AudioModulesTitle;
|
||||
TextView AudioModulesTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AudioModulesTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
ScrollView AudioView = (ScrollView) rootView;
|
||||
|
||||
id = R.id.MicGain;
|
||||
EditText MicGain = ViewBindings.findChildViewById(rootView, id);
|
||||
if (MicGain == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.MicGainLayout;
|
||||
RelativeLayout MicGainLayout = ViewBindings.findChildViewById(rootView, id);
|
||||
if (MicGainLayout == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.MicGainTitle;
|
||||
TextView MicGainTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (MicGainTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.OpusBitRate;
|
||||
EditText OpusBitRate = ViewBindings.findChildViewById(rootView, id);
|
||||
if (OpusBitRate == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.OpusBitRateTitle;
|
||||
TextView OpusBitRateTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (OpusBitRateTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.OpusPacketLoss;
|
||||
EditText OpusPacketLoss = ViewBindings.findChildViewById(rootView, id);
|
||||
if (OpusPacketLoss == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.OpusPacketLossTitle;
|
||||
TextView OpusPacketLossTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (OpusPacketLossTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.SpeakerPhone;
|
||||
CheckBox SpeakerPhone = ViewBindings.findChildViewById(rootView, id);
|
||||
if (SpeakerPhone == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.SpeakerPhoneTitle;
|
||||
TextView SpeakerPhoneTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (SpeakerPhoneTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ToneCountrySpinner;
|
||||
Spinner ToneCountrySpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ToneCountrySpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ToneCountryTitle;
|
||||
TextView ToneCountryTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ToneCountryTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VolumeSpinner;
|
||||
Spinner VolumeSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VolumeSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VolumeTitle;
|
||||
TextView VolumeTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VolumeTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityAudioBinding((ScrollView) rootView, Aec, AecLayout, AecTitle, AudioDelay,
|
||||
AudioDelayTitle, AudioModulesList, AudioModulesTitle, AudioView, MicGain, MicGainLayout,
|
||||
MicGainTitle, OpusBitRate, OpusBitRateTitle, OpusPacketLoss, OpusPacketLossTitle,
|
||||
SpeakerPhone, SpeakerPhoneTitle, ToneCountrySpinner, ToneCountryTitle, VolumeSpinner,
|
||||
VolumeTitle);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,129 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ListView;
|
||||
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.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityCallDetailsBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout CallDetailsView;
|
||||
|
||||
@NonNull
|
||||
public final ListView calls;
|
||||
|
||||
@NonNull
|
||||
public final TextView direction;
|
||||
|
||||
@NonNull
|
||||
public final TextView duration;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout headings;
|
||||
|
||||
@NonNull
|
||||
public final TextView peer;
|
||||
|
||||
@NonNull
|
||||
public final TextView time;
|
||||
|
||||
private ActivityCallDetailsBinding(@NonNull RelativeLayout rootView,
|
||||
@NonNull RelativeLayout CallDetailsView, @NonNull ListView calls, @NonNull TextView direction,
|
||||
@NonNull TextView duration, @NonNull RelativeLayout headings, @NonNull TextView peer,
|
||||
@NonNull TextView time) {
|
||||
this.rootView = rootView;
|
||||
this.CallDetailsView = CallDetailsView;
|
||||
this.calls = calls;
|
||||
this.direction = direction;
|
||||
this.duration = duration;
|
||||
this.headings = headings;
|
||||
this.peer = peer;
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCallDetailsBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCallDetailsBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_call_details, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCallDetailsBinding 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: {
|
||||
RelativeLayout CallDetailsView = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.calls;
|
||||
ListView calls = ViewBindings.findChildViewById(rootView, id);
|
||||
if (calls == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.direction;
|
||||
TextView direction = ViewBindings.findChildViewById(rootView, id);
|
||||
if (direction == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.duration;
|
||||
TextView duration = ViewBindings.findChildViewById(rootView, id);
|
||||
if (duration == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.headings;
|
||||
RelativeLayout headings = ViewBindings.findChildViewById(rootView, id);
|
||||
if (headings == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.peer;
|
||||
TextView peer = ViewBindings.findChildViewById(rootView, id);
|
||||
if (peer == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.time;
|
||||
TextView time = ViewBindings.findChildViewById(rootView, id);
|
||||
if (time == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityCallDetailsBinding((RelativeLayout) rootView, CallDetailsView, calls,
|
||||
direction, duration, headings, peer, time);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,86 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ListView;
|
||||
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.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityCallsBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout CallsView;
|
||||
|
||||
@NonNull
|
||||
public final TextView account;
|
||||
|
||||
@NonNull
|
||||
public final ListView calls;
|
||||
|
||||
private ActivityCallsBinding(@NonNull RelativeLayout rootView, @NonNull RelativeLayout CallsView,
|
||||
@NonNull TextView account, @NonNull ListView calls) {
|
||||
this.rootView = rootView;
|
||||
this.CallsView = CallsView;
|
||||
this.account = account;
|
||||
this.calls = calls;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCallsBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCallsBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_calls, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCallsBinding 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: {
|
||||
RelativeLayout CallsView = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.account;
|
||||
TextView account = ViewBindings.findChildViewById(rootView, id);
|
||||
if (account == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.calls;
|
||||
ListView calls = ViewBindings.findChildViewById(rootView, id);
|
||||
if (calls == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityCallsBinding((RelativeLayout) rootView, CallsView, account, calls);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,110 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.ListView;
|
||||
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.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityChatBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout ChatView;
|
||||
|
||||
@NonNull
|
||||
public final TextView account;
|
||||
|
||||
@NonNull
|
||||
public final ListView messages;
|
||||
|
||||
@NonNull
|
||||
public final ImageButton sendButton;
|
||||
|
||||
@NonNull
|
||||
public final EditText text;
|
||||
|
||||
private ActivityChatBinding(@NonNull RelativeLayout rootView, @NonNull RelativeLayout ChatView,
|
||||
@NonNull TextView account, @NonNull ListView messages, @NonNull ImageButton sendButton,
|
||||
@NonNull EditText text) {
|
||||
this.rootView = rootView;
|
||||
this.ChatView = ChatView;
|
||||
this.account = account;
|
||||
this.messages = messages;
|
||||
this.sendButton = sendButton;
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityChatBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityChatBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_chat, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityChatBinding 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: {
|
||||
RelativeLayout ChatView = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.account;
|
||||
TextView account = ViewBindings.findChildViewById(rootView, id);
|
||||
if (account == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.messages;
|
||||
ListView messages = ViewBindings.findChildViewById(rootView, id);
|
||||
if (messages == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.sendButton;
|
||||
ImageButton sendButton = ViewBindings.findChildViewById(rootView, id);
|
||||
if (sendButton == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.text;
|
||||
EditText text = ViewBindings.findChildViewById(rootView, id);
|
||||
if (text == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityChatBinding((RelativeLayout) rootView, ChatView, account, messages,
|
||||
sendButton, text);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,110 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.AutoCompleteTextView;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.ListView;
|
||||
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.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityChatsBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout ChatsView;
|
||||
|
||||
@NonNull
|
||||
public final TextView account;
|
||||
|
||||
@NonNull
|
||||
public final ListView chats;
|
||||
|
||||
@NonNull
|
||||
public final AutoCompleteTextView peer;
|
||||
|
||||
@NonNull
|
||||
public final ImageButton plusButton;
|
||||
|
||||
private ActivityChatsBinding(@NonNull RelativeLayout rootView, @NonNull RelativeLayout ChatsView,
|
||||
@NonNull TextView account, @NonNull ListView chats, @NonNull AutoCompleteTextView peer,
|
||||
@NonNull ImageButton plusButton) {
|
||||
this.rootView = rootView;
|
||||
this.ChatsView = ChatsView;
|
||||
this.account = account;
|
||||
this.chats = chats;
|
||||
this.peer = peer;
|
||||
this.plusButton = plusButton;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityChatsBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityChatsBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_chats, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityChatsBinding 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: {
|
||||
RelativeLayout ChatsView = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.account;
|
||||
TextView account = ViewBindings.findChildViewById(rootView, id);
|
||||
if (account == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.chats;
|
||||
ListView chats = ViewBindings.findChildViewById(rootView, id);
|
||||
if (chats == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.peer;
|
||||
AutoCompleteTextView peer = ViewBindings.findChildViewById(rootView, id);
|
||||
if (peer == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.plusButton;
|
||||
ImageButton plusButton = ViewBindings.findChildViewById(rootView, id);
|
||||
if (plusButton == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityChatsBinding((RelativeLayout) rootView, ChatsView, account, chats, peer,
|
||||
plusButton);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,87 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.recyclerview.widget.RecyclerView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityCodecsBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RecyclerView CodecList;
|
||||
|
||||
@NonNull
|
||||
public final TextView CodecsTitle;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout CodecsView;
|
||||
|
||||
private ActivityCodecsBinding(@NonNull RelativeLayout rootView, @NonNull RecyclerView CodecList,
|
||||
@NonNull TextView CodecsTitle, @NonNull RelativeLayout CodecsView) {
|
||||
this.rootView = rootView;
|
||||
this.CodecList = CodecList;
|
||||
this.CodecsTitle = CodecsTitle;
|
||||
this.CodecsView = CodecsView;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCodecsBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCodecsBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_codecs, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityCodecsBinding 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.CodecList;
|
||||
RecyclerView CodecList = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CodecList == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.CodecsTitle;
|
||||
TextView CodecsTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CodecsTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
RelativeLayout CodecsView = (RelativeLayout) rootView;
|
||||
|
||||
return new ActivityCodecsBinding((RelativeLayout) rootView, CodecList, CodecsTitle,
|
||||
CodecsView);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,462 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.EditText;
|
||||
import android.widget.RelativeLayout;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.Spinner;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityConfigBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView AudioSettingsTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox AutoStart;
|
||||
|
||||
@NonNull
|
||||
public final TextView AutoStartTitle;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout Battery;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox BatteryOptimizations;
|
||||
|
||||
@NonNull
|
||||
public final TextView BatteryOptimizationsTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox CAFile;
|
||||
|
||||
@NonNull
|
||||
public final TextView CAFileTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox CertificateFile;
|
||||
|
||||
@NonNull
|
||||
public final TextView CertificateFileTitle;
|
||||
|
||||
@NonNull
|
||||
public final ScrollView ConfigView;
|
||||
|
||||
@NonNull
|
||||
public final TextView ContactsTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox DarkTheme;
|
||||
|
||||
@NonNull
|
||||
public final TextView DarkThemeTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox Debug;
|
||||
|
||||
@NonNull
|
||||
public final TextView DebugTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox DefaultPhoneApp;
|
||||
|
||||
@NonNull
|
||||
public final TextView DefaultPhoneAppTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText DnsServers;
|
||||
|
||||
@NonNull
|
||||
public final TextView DnsServersTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText ListenAddress;
|
||||
|
||||
@NonNull
|
||||
public final TextView ListenAddressTitle;
|
||||
|
||||
@NonNull
|
||||
public final Spinner NetAfSpinner;
|
||||
|
||||
@NonNull
|
||||
public final TextView NetAfTitle;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout PhoneApp;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox Reset;
|
||||
|
||||
@NonNull
|
||||
public final TextView ResetTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox SipTrace;
|
||||
|
||||
@NonNull
|
||||
public final TextView SipTraceTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText UserAgent;
|
||||
|
||||
@NonNull
|
||||
public final TextView UserAgentTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox VerifyServer;
|
||||
|
||||
@NonNull
|
||||
public final TextView VerifyServerTitle;
|
||||
|
||||
@NonNull
|
||||
public final EditText VideoFps;
|
||||
|
||||
@NonNull
|
||||
public final TextView VideoFpsTitle;
|
||||
|
||||
@NonNull
|
||||
public final Spinner VideoSizeSpinner;
|
||||
|
||||
@NonNull
|
||||
public final TextView VideoSizeTitle;
|
||||
|
||||
@NonNull
|
||||
public final Spinner contactsSpinner;
|
||||
|
||||
private ActivityConfigBinding(@NonNull ScrollView rootView, @NonNull TextView AudioSettingsTitle,
|
||||
@NonNull CheckBox AutoStart, @NonNull TextView AutoStartTitle,
|
||||
@NonNull RelativeLayout Battery, @NonNull CheckBox BatteryOptimizations,
|
||||
@NonNull TextView BatteryOptimizationsTitle, @NonNull CheckBox CAFile,
|
||||
@NonNull TextView CAFileTitle, @NonNull CheckBox CertificateFile,
|
||||
@NonNull TextView CertificateFileTitle, @NonNull ScrollView ConfigView,
|
||||
@NonNull TextView ContactsTitle, @NonNull CheckBox DarkTheme,
|
||||
@NonNull TextView DarkThemeTitle, @NonNull CheckBox Debug, @NonNull TextView DebugTitle,
|
||||
@NonNull CheckBox DefaultPhoneApp, @NonNull TextView DefaultPhoneAppTitle,
|
||||
@NonNull EditText DnsServers, @NonNull TextView DnsServersTitle,
|
||||
@NonNull EditText ListenAddress, @NonNull TextView ListenAddressTitle,
|
||||
@NonNull Spinner NetAfSpinner, @NonNull TextView NetAfTitle, @NonNull RelativeLayout PhoneApp,
|
||||
@NonNull CheckBox Reset, @NonNull TextView ResetTitle, @NonNull CheckBox SipTrace,
|
||||
@NonNull TextView SipTraceTitle, @NonNull EditText UserAgent,
|
||||
@NonNull TextView UserAgentTitle, @NonNull CheckBox VerifyServer,
|
||||
@NonNull TextView VerifyServerTitle, @NonNull EditText VideoFps,
|
||||
@NonNull TextView VideoFpsTitle, @NonNull Spinner VideoSizeSpinner,
|
||||
@NonNull TextView VideoSizeTitle, @NonNull Spinner contactsSpinner) {
|
||||
this.rootView = rootView;
|
||||
this.AudioSettingsTitle = AudioSettingsTitle;
|
||||
this.AutoStart = AutoStart;
|
||||
this.AutoStartTitle = AutoStartTitle;
|
||||
this.Battery = Battery;
|
||||
this.BatteryOptimizations = BatteryOptimizations;
|
||||
this.BatteryOptimizationsTitle = BatteryOptimizationsTitle;
|
||||
this.CAFile = CAFile;
|
||||
this.CAFileTitle = CAFileTitle;
|
||||
this.CertificateFile = CertificateFile;
|
||||
this.CertificateFileTitle = CertificateFileTitle;
|
||||
this.ConfigView = ConfigView;
|
||||
this.ContactsTitle = ContactsTitle;
|
||||
this.DarkTheme = DarkTheme;
|
||||
this.DarkThemeTitle = DarkThemeTitle;
|
||||
this.Debug = Debug;
|
||||
this.DebugTitle = DebugTitle;
|
||||
this.DefaultPhoneApp = DefaultPhoneApp;
|
||||
this.DefaultPhoneAppTitle = DefaultPhoneAppTitle;
|
||||
this.DnsServers = DnsServers;
|
||||
this.DnsServersTitle = DnsServersTitle;
|
||||
this.ListenAddress = ListenAddress;
|
||||
this.ListenAddressTitle = ListenAddressTitle;
|
||||
this.NetAfSpinner = NetAfSpinner;
|
||||
this.NetAfTitle = NetAfTitle;
|
||||
this.PhoneApp = PhoneApp;
|
||||
this.Reset = Reset;
|
||||
this.ResetTitle = ResetTitle;
|
||||
this.SipTrace = SipTrace;
|
||||
this.SipTraceTitle = SipTraceTitle;
|
||||
this.UserAgent = UserAgent;
|
||||
this.UserAgentTitle = UserAgentTitle;
|
||||
this.VerifyServer = VerifyServer;
|
||||
this.VerifyServerTitle = VerifyServerTitle;
|
||||
this.VideoFps = VideoFps;
|
||||
this.VideoFpsTitle = VideoFpsTitle;
|
||||
this.VideoSizeSpinner = VideoSizeSpinner;
|
||||
this.VideoSizeTitle = VideoSizeTitle;
|
||||
this.contactsSpinner = contactsSpinner;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityConfigBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityConfigBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_config, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityConfigBinding 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.AudioSettingsTitle;
|
||||
TextView AudioSettingsTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AudioSettingsTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AutoStart;
|
||||
CheckBox AutoStart = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AutoStart == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AutoStartTitle;
|
||||
TextView AutoStartTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AutoStartTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Battery;
|
||||
RelativeLayout Battery = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Battery == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.BatteryOptimizations;
|
||||
CheckBox BatteryOptimizations = ViewBindings.findChildViewById(rootView, id);
|
||||
if (BatteryOptimizations == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.BatteryOptimizationsTitle;
|
||||
TextView BatteryOptimizationsTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (BatteryOptimizationsTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.CAFile;
|
||||
CheckBox CAFile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CAFile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.CAFileTitle;
|
||||
TextView CAFileTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CAFileTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.CertificateFile;
|
||||
CheckBox CertificateFile = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CertificateFile == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.CertificateFileTitle;
|
||||
TextView CertificateFileTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CertificateFileTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
ScrollView ConfigView = (ScrollView) rootView;
|
||||
|
||||
id = R.id.ContactsTitle;
|
||||
TextView ContactsTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ContactsTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DarkTheme;
|
||||
CheckBox DarkTheme = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DarkTheme == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DarkThemeTitle;
|
||||
TextView DarkThemeTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DarkThemeTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Debug;
|
||||
CheckBox Debug = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Debug == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DebugTitle;
|
||||
TextView DebugTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DebugTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DefaultPhoneApp;
|
||||
CheckBox DefaultPhoneApp = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DefaultPhoneApp == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DefaultPhoneAppTitle;
|
||||
TextView DefaultPhoneAppTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DefaultPhoneAppTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DnsServers;
|
||||
EditText DnsServers = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DnsServers == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.DnsServersTitle;
|
||||
TextView DnsServersTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (DnsServersTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ListenAddress;
|
||||
EditText ListenAddress = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ListenAddress == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ListenAddressTitle;
|
||||
TextView ListenAddressTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ListenAddressTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.NetAfSpinner;
|
||||
Spinner NetAfSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (NetAfSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.NetAfTitle;
|
||||
TextView NetAfTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (NetAfTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.PhoneApp;
|
||||
RelativeLayout PhoneApp = ViewBindings.findChildViewById(rootView, id);
|
||||
if (PhoneApp == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Reset;
|
||||
CheckBox Reset = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Reset == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ResetTitle;
|
||||
TextView ResetTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ResetTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.SipTrace;
|
||||
CheckBox SipTrace = ViewBindings.findChildViewById(rootView, id);
|
||||
if (SipTrace == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.SipTraceTitle;
|
||||
TextView SipTraceTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (SipTraceTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.UserAgent;
|
||||
EditText UserAgent = ViewBindings.findChildViewById(rootView, id);
|
||||
if (UserAgent == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.UserAgentTitle;
|
||||
TextView UserAgentTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (UserAgentTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VerifyServer;
|
||||
CheckBox VerifyServer = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VerifyServer == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VerifyServerTitle;
|
||||
TextView VerifyServerTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VerifyServerTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VideoFps;
|
||||
EditText VideoFps = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VideoFps == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VideoFpsTitle;
|
||||
TextView VideoFpsTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VideoFpsTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VideoSizeSpinner;
|
||||
Spinner VideoSizeSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VideoSizeSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.VideoSizeTitle;
|
||||
TextView VideoSizeTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (VideoSizeTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.contactsSpinner;
|
||||
Spinner contactsSpinner = ViewBindings.findChildViewById(rootView, id);
|
||||
if (contactsSpinner == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityConfigBinding((ScrollView) rootView, AudioSettingsTitle, AutoStart,
|
||||
AutoStartTitle, Battery, BatteryOptimizations, BatteryOptimizationsTitle, CAFile,
|
||||
CAFileTitle, CertificateFile, CertificateFileTitle, ConfigView, ContactsTitle, DarkTheme,
|
||||
DarkThemeTitle, Debug, DebugTitle, DefaultPhoneApp, DefaultPhoneAppTitle, DnsServers,
|
||||
DnsServersTitle, ListenAddress, ListenAddressTitle, NetAfSpinner, NetAfTitle, PhoneApp,
|
||||
Reset, ResetTitle, SipTrace, SipTraceTitle, UserAgent, UserAgentTitle, VerifyServer,
|
||||
VerifyServerTitle, VideoFps, VideoFpsTitle, VideoSizeSpinner, VideoSizeTitle,
|
||||
contactsSpinner);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,185 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.EditText;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.LinearLayout;
|
||||
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 com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityContactBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox Android;
|
||||
|
||||
@NonNull
|
||||
public final TextView AndroidTitle;
|
||||
|
||||
@NonNull
|
||||
public final CardView CardAvatar;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout ContactView;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox Favorite;
|
||||
|
||||
@NonNull
|
||||
public final TextView FavoriteTitle;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ImageAvatar;
|
||||
|
||||
@NonNull
|
||||
public final EditText Name;
|
||||
|
||||
@NonNull
|
||||
public final TextView NameTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView SipOrTelUriTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView TextAvatar;
|
||||
|
||||
@NonNull
|
||||
public final EditText Uri;
|
||||
|
||||
private ActivityContactBinding(@NonNull LinearLayout rootView, @NonNull CheckBox Android,
|
||||
@NonNull TextView AndroidTitle, @NonNull CardView CardAvatar,
|
||||
@NonNull LinearLayout ContactView, @NonNull CheckBox Favorite,
|
||||
@NonNull TextView FavoriteTitle, @NonNull ImageView ImageAvatar, @NonNull EditText Name,
|
||||
@NonNull TextView NameTitle, @NonNull TextView SipOrTelUriTitle, @NonNull TextView TextAvatar,
|
||||
@NonNull EditText Uri) {
|
||||
this.rootView = rootView;
|
||||
this.Android = Android;
|
||||
this.AndroidTitle = AndroidTitle;
|
||||
this.CardAvatar = CardAvatar;
|
||||
this.ContactView = ContactView;
|
||||
this.Favorite = Favorite;
|
||||
this.FavoriteTitle = FavoriteTitle;
|
||||
this.ImageAvatar = ImageAvatar;
|
||||
this.Name = Name;
|
||||
this.NameTitle = NameTitle;
|
||||
this.SipOrTelUriTitle = SipOrTelUriTitle;
|
||||
this.TextAvatar = TextAvatar;
|
||||
this.Uri = Uri;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityContactBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityContactBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_contact, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityContactBinding 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.Android;
|
||||
CheckBox Android = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Android == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.AndroidTitle;
|
||||
TextView AndroidTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (AndroidTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.CardAvatar;
|
||||
CardView CardAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CardAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
LinearLayout ContactView = (LinearLayout) rootView;
|
||||
|
||||
id = R.id.Favorite;
|
||||
CheckBox Favorite = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Favorite == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.FavoriteTitle;
|
||||
TextView FavoriteTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (FavoriteTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ImageAvatar;
|
||||
ImageView ImageAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ImageAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Name;
|
||||
EditText Name = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Name == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.NameTitle;
|
||||
TextView NameTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (NameTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.SipOrTelUriTitle;
|
||||
TextView SipOrTelUriTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (SipOrTelUriTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.TextAvatar;
|
||||
TextView TextAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (TextAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.Uri;
|
||||
EditText Uri = ViewBindings.findChildViewById(rootView, id);
|
||||
if (Uri == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityContactBinding((LinearLayout) rootView, Android, AndroidTitle, CardAvatar,
|
||||
ContactView, Favorite, FavoriteTitle, ImageAvatar, Name, NameTitle, SipOrTelUriTitle,
|
||||
TextAvatar, Uri);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,88 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.ListView;
|
||||
import android.widget.RelativeLayout;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityContactsBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout ContactsView;
|
||||
|
||||
@NonNull
|
||||
public final ListView contacts;
|
||||
|
||||
@NonNull
|
||||
public final ImageButton plusButton;
|
||||
|
||||
private ActivityContactsBinding(@NonNull RelativeLayout rootView,
|
||||
@NonNull RelativeLayout ContactsView, @NonNull ListView contacts,
|
||||
@NonNull ImageButton plusButton) {
|
||||
this.rootView = rootView;
|
||||
this.ContactsView = ContactsView;
|
||||
this.contacts = contacts;
|
||||
this.plusButton = plusButton;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityContactsBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityContactsBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_contacts, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityContactsBinding 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: {
|
||||
RelativeLayout ContactsView = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.contacts;
|
||||
ListView contacts = ViewBindings.findChildViewById(rootView, id);
|
||||
if (contacts == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.plusButton;
|
||||
ImageButton plusButton = ViewBindings.findChildViewById(rootView, id);
|
||||
if (plusButton == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityContactsBinding((RelativeLayout) rootView, ContactsView, contacts,
|
||||
plusButton);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,145 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.RadioButton;
|
||||
import android.widget.RadioGroup;
|
||||
import android.widget.ScrollView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ActivityNetworkSettingBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final Button btnApply;
|
||||
|
||||
@NonNull
|
||||
public final EditText editDns;
|
||||
|
||||
@NonNull
|
||||
public final EditText editGateway;
|
||||
|
||||
@NonNull
|
||||
public final EditText editIp;
|
||||
|
||||
@NonNull
|
||||
public final EditText editNetmask;
|
||||
|
||||
@NonNull
|
||||
public final RadioButton radioDhcp;
|
||||
|
||||
@NonNull
|
||||
public final RadioGroup radioGroup;
|
||||
|
||||
@NonNull
|
||||
public final RadioButton radioStatic;
|
||||
|
||||
private ActivityNetworkSettingBinding(@NonNull ScrollView rootView, @NonNull Button btnApply,
|
||||
@NonNull EditText editDns, @NonNull EditText editGateway, @NonNull EditText editIp,
|
||||
@NonNull EditText editNetmask, @NonNull RadioButton radioDhcp, @NonNull RadioGroup radioGroup,
|
||||
@NonNull RadioButton radioStatic) {
|
||||
this.rootView = rootView;
|
||||
this.btnApply = btnApply;
|
||||
this.editDns = editDns;
|
||||
this.editGateway = editGateway;
|
||||
this.editIp = editIp;
|
||||
this.editNetmask = editNetmask;
|
||||
this.radioDhcp = radioDhcp;
|
||||
this.radioGroup = radioGroup;
|
||||
this.radioStatic = radioStatic;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityNetworkSettingBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityNetworkSettingBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_network_setting, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityNetworkSettingBinding 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.btnApply;
|
||||
Button btnApply = ViewBindings.findChildViewById(rootView, id);
|
||||
if (btnApply == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.editDns;
|
||||
EditText editDns = ViewBindings.findChildViewById(rootView, id);
|
||||
if (editDns == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.editGateway;
|
||||
EditText editGateway = ViewBindings.findChildViewById(rootView, id);
|
||||
if (editGateway == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.editIp;
|
||||
EditText editIp = ViewBindings.findChildViewById(rootView, id);
|
||||
if (editIp == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.editNetmask;
|
||||
EditText editNetmask = ViewBindings.findChildViewById(rootView, id);
|
||||
if (editNetmask == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.radioDhcp;
|
||||
RadioButton radioDhcp = ViewBindings.findChildViewById(rootView, id);
|
||||
if (radioDhcp == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.radioGroup;
|
||||
RadioGroup radioGroup = ViewBindings.findChildViewById(rootView, id);
|
||||
if (radioGroup == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.radioStatic;
|
||||
RadioButton radioStatic = ViewBindings.findChildViewById(rootView, id);
|
||||
if (radioStatic == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ActivityNetworkSettingBinding((ScrollView) rootView, btnApply, editDns,
|
||||
editGateway, editIp, editNetmask, radioDhcp, radioGroup, radioStatic);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,52 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.constraintlayout.widget.ConstraintLayout;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
|
||||
public final class ActivityStartBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ConstraintLayout rootView;
|
||||
|
||||
private ActivityStartBinding(@NonNull ConstraintLayout rootView) {
|
||||
this.rootView = rootView;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ConstraintLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityStartBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityStartBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.activity_start, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ActivityStartBinding bind(@NonNull View rootView) {
|
||||
if (rootView == null) {
|
||||
throw new NullPointerException("rootView");
|
||||
}
|
||||
|
||||
return new ActivityStartBinding((ConstraintLayout) rootView);
|
||||
}
|
||||
}
|
@ -1,52 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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 com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
|
||||
public final class AlertTitleBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final TextView rootView;
|
||||
|
||||
private AlertTitleBinding(@NonNull TextView rootView) {
|
||||
this.rootView = rootView;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public TextView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AlertTitleBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AlertTitleBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.alert_title, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AlertTitleBinding bind(@NonNull View rootView) {
|
||||
if (rootView == null) {
|
||||
throw new NullPointerException("rootView");
|
||||
}
|
||||
|
||||
return new AlertTitleBinding((TextView) rootView);
|
||||
}
|
||||
}
|
@ -1,96 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageButton;
|
||||
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.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class AndroidUriRowBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageButton call;
|
||||
|
||||
@NonNull
|
||||
public final ImageButton message;
|
||||
|
||||
@NonNull
|
||||
public final TextView uri;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout uriRow;
|
||||
|
||||
private AndroidUriRowBinding(@NonNull RelativeLayout rootView, @NonNull ImageButton call,
|
||||
@NonNull ImageButton message, @NonNull TextView uri, @NonNull RelativeLayout uriRow) {
|
||||
this.rootView = rootView;
|
||||
this.call = call;
|
||||
this.message = message;
|
||||
this.uri = uri;
|
||||
this.uriRow = uriRow;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AndroidUriRowBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AndroidUriRowBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.android_uri_row, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static AndroidUriRowBinding 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.call;
|
||||
ImageButton call = ViewBindings.findChildViewById(rootView, id);
|
||||
if (call == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.message;
|
||||
ImageButton message = ViewBindings.findChildViewById(rootView, id);
|
||||
if (message == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.uri;
|
||||
TextView uri = ViewBindings.findChildViewById(rootView, id);
|
||||
if (uri == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
RelativeLayout uriRow = (RelativeLayout) rootView;
|
||||
|
||||
return new AndroidUriRowBinding((RelativeLayout) rootView, call, message, uri, uriRow);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageView;
|
||||
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.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class CallDetailRowBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView direction;
|
||||
|
||||
@NonNull
|
||||
public final TextView duration;
|
||||
|
||||
@NonNull
|
||||
public final TextView time;
|
||||
|
||||
private CallDetailRowBinding(@NonNull RelativeLayout rootView, @NonNull ImageView direction,
|
||||
@NonNull TextView duration, @NonNull TextView time) {
|
||||
this.rootView = rootView;
|
||||
this.direction = direction;
|
||||
this.duration = duration;
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallDetailRowBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallDetailRowBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.call_detail_row, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallDetailRowBinding 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.direction;
|
||||
ImageView direction = ViewBindings.findChildViewById(rootView, id);
|
||||
if (direction == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.duration;
|
||||
TextView duration = ViewBindings.findChildViewById(rootView, id);
|
||||
if (duration == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.time;
|
||||
TextView time = ViewBindings.findChildViewById(rootView, id);
|
||||
if (time == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new CallDetailRowBinding((RelativeLayout) rootView, direction, duration, time);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,135 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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.cardview.widget.CardView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class CallRowBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final CardView CardAvatar;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ImageAvatar;
|
||||
|
||||
@NonNull
|
||||
public final TextView TextAvatar;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout directions;
|
||||
|
||||
@NonNull
|
||||
public final TextView etc;
|
||||
|
||||
@NonNull
|
||||
public final TextView peerUri;
|
||||
|
||||
@NonNull
|
||||
public final TextView time;
|
||||
|
||||
private CallRowBinding(@NonNull RelativeLayout rootView, @NonNull CardView CardAvatar,
|
||||
@NonNull ImageView ImageAvatar, @NonNull TextView TextAvatar,
|
||||
@NonNull LinearLayout directions, @NonNull TextView etc, @NonNull TextView peerUri,
|
||||
@NonNull TextView time) {
|
||||
this.rootView = rootView;
|
||||
this.CardAvatar = CardAvatar;
|
||||
this.ImageAvatar = ImageAvatar;
|
||||
this.TextAvatar = TextAvatar;
|
||||
this.directions = directions;
|
||||
this.etc = etc;
|
||||
this.peerUri = peerUri;
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallRowBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallRowBinding inflate(@NonNull LayoutInflater inflater, @Nullable ViewGroup parent,
|
||||
boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.call_row, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallRowBinding 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.CardAvatar;
|
||||
CardView CardAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CardAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ImageAvatar;
|
||||
ImageView ImageAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ImageAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.TextAvatar;
|
||||
TextView TextAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (TextAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.directions;
|
||||
LinearLayout directions = ViewBindings.findChildViewById(rootView, id);
|
||||
if (directions == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.etc;
|
||||
TextView etc = ViewBindings.findChildViewById(rootView, id);
|
||||
if (etc == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.peer_uri;
|
||||
TextView peerUri = ViewBindings.findChildViewById(rootView, id);
|
||||
if (peerUri == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.time;
|
||||
TextView time = ViewBindings.findChildViewById(rootView, id);
|
||||
if (time == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new CallRowBinding((RelativeLayout) rootView, CardAvatar, ImageAvatar, TextAvatar,
|
||||
directions, etc, peerUri, time);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,146 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.AutoCompleteTextView;
|
||||
import android.widget.CheckBox;
|
||||
import android.widget.LinearLayout;
|
||||
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.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class CallTransferDialogBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox attended;
|
||||
|
||||
@NonNull
|
||||
public final TextView attendedTitle;
|
||||
|
||||
@NonNull
|
||||
public final CheckBox blind;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout blindOrAttended;
|
||||
|
||||
@NonNull
|
||||
public final TextView blindTitle;
|
||||
|
||||
@NonNull
|
||||
public final TextView title;
|
||||
|
||||
@NonNull
|
||||
public final TextView transferDestination;
|
||||
|
||||
@NonNull
|
||||
public final AutoCompleteTextView transferUri;
|
||||
|
||||
private CallTransferDialogBinding(@NonNull LinearLayout rootView, @NonNull CheckBox attended,
|
||||
@NonNull TextView attendedTitle, @NonNull CheckBox blind,
|
||||
@NonNull RelativeLayout blindOrAttended, @NonNull TextView blindTitle,
|
||||
@NonNull TextView title, @NonNull TextView transferDestination,
|
||||
@NonNull AutoCompleteTextView transferUri) {
|
||||
this.rootView = rootView;
|
||||
this.attended = attended;
|
||||
this.attendedTitle = attendedTitle;
|
||||
this.blind = blind;
|
||||
this.blindOrAttended = blindOrAttended;
|
||||
this.blindTitle = blindTitle;
|
||||
this.title = title;
|
||||
this.transferDestination = transferDestination;
|
||||
this.transferUri = transferUri;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallTransferDialogBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallTransferDialogBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.call_transfer_dialog, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CallTransferDialogBinding 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.attended;
|
||||
CheckBox attended = ViewBindings.findChildViewById(rootView, id);
|
||||
if (attended == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.attendedTitle;
|
||||
TextView attendedTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (attendedTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.blind;
|
||||
CheckBox blind = ViewBindings.findChildViewById(rootView, id);
|
||||
if (blind == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.blindOrAttended;
|
||||
RelativeLayout blindOrAttended = ViewBindings.findChildViewById(rootView, id);
|
||||
if (blindOrAttended == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.blindTitle;
|
||||
TextView blindTitle = ViewBindings.findChildViewById(rootView, id);
|
||||
if (blindTitle == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.title;
|
||||
TextView title = ViewBindings.findChildViewById(rootView, id);
|
||||
if (title == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.transferDestination;
|
||||
TextView transferDestination = ViewBindings.findChildViewById(rootView, id);
|
||||
if (transferDestination == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.transferUri;
|
||||
AutoCompleteTextView transferUri = ViewBindings.findChildViewById(rootView, id);
|
||||
if (transferUri == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new CallTransferDialogBinding((LinearLayout) rootView, attended, attendedTitle, blind,
|
||||
blindOrAttended, blindTitle, title, transferDestination, transferUri);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,134 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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.cardview.widget.CardView;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ChatRowBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final CardView CardAvatar;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ImageAvatar;
|
||||
|
||||
@NonNull
|
||||
public final TextView TextAvatar;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout chat;
|
||||
|
||||
@NonNull
|
||||
public final TextView info;
|
||||
|
||||
@NonNull
|
||||
public final TextView peer;
|
||||
|
||||
@NonNull
|
||||
public final TextView text;
|
||||
|
||||
private ChatRowBinding(@NonNull RelativeLayout rootView, @NonNull CardView CardAvatar,
|
||||
@NonNull ImageView ImageAvatar, @NonNull TextView TextAvatar, @NonNull LinearLayout chat,
|
||||
@NonNull TextView info, @NonNull TextView peer, @NonNull TextView text) {
|
||||
this.rootView = rootView;
|
||||
this.CardAvatar = CardAvatar;
|
||||
this.ImageAvatar = ImageAvatar;
|
||||
this.TextAvatar = TextAvatar;
|
||||
this.chat = chat;
|
||||
this.info = info;
|
||||
this.peer = peer;
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ChatRowBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ChatRowBinding inflate(@NonNull LayoutInflater inflater, @Nullable ViewGroup parent,
|
||||
boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.chat_row, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ChatRowBinding 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.CardAvatar;
|
||||
CardView CardAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CardAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ImageAvatar;
|
||||
ImageView ImageAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ImageAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.TextAvatar;
|
||||
TextView TextAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (TextAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.chat;
|
||||
LinearLayout chat = ViewBindings.findChildViewById(rootView, id);
|
||||
if (chat == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.info;
|
||||
TextView info = ViewBindings.findChildViewById(rootView, id);
|
||||
if (info == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.peer;
|
||||
TextView peer = ViewBindings.findChildViewById(rootView, id);
|
||||
if (peer == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.text;
|
||||
TextView text = ViewBindings.findChildViewById(rootView, id);
|
||||
if (text == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ChatRowBinding((RelativeLayout) rootView, CardAvatar, ImageAvatar, TextAvatar,
|
||||
chat, info, peer, text);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,80 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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 com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class CodecBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final CardView rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView codecName;
|
||||
|
||||
@NonNull
|
||||
public final ImageView reorderImage;
|
||||
|
||||
private CodecBinding(@NonNull CardView rootView, @NonNull TextView codecName,
|
||||
@NonNull ImageView reorderImage) {
|
||||
this.rootView = rootView;
|
||||
this.codecName = codecName;
|
||||
this.reorderImage = reorderImage;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public CardView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CodecBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CodecBinding inflate(@NonNull LayoutInflater inflater, @Nullable ViewGroup parent,
|
||||
boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.codec, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CodecBinding 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.codecName;
|
||||
TextView codecName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (codecName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.reorderImage;
|
||||
ImageView reorderImage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (reorderImage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new CodecBinding((CardView) rootView, codecName, reorderImage);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,120 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ImageButton;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.RelativeLayout;
|
||||
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 com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ContactRowBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final CardView CardAvatar;
|
||||
|
||||
@NonNull
|
||||
public final ImageView ImageAvatar;
|
||||
|
||||
@NonNull
|
||||
public final TextView TextAvatar;
|
||||
|
||||
@NonNull
|
||||
public final TextView contactName;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout contactRow;
|
||||
|
||||
@NonNull
|
||||
public final ImageButton edit;
|
||||
|
||||
private ContactRowBinding(@NonNull RelativeLayout rootView, @NonNull CardView CardAvatar,
|
||||
@NonNull ImageView ImageAvatar, @NonNull TextView TextAvatar, @NonNull TextView contactName,
|
||||
@NonNull RelativeLayout contactRow, @NonNull ImageButton edit) {
|
||||
this.rootView = rootView;
|
||||
this.CardAvatar = CardAvatar;
|
||||
this.ImageAvatar = ImageAvatar;
|
||||
this.TextAvatar = TextAvatar;
|
||||
this.contactName = contactName;
|
||||
this.contactRow = contactRow;
|
||||
this.edit = edit;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ContactRowBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ContactRowBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.contact_row, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ContactRowBinding 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.CardAvatar;
|
||||
CardView CardAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (CardAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.ImageAvatar;
|
||||
ImageView ImageAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (ImageAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.TextAvatar;
|
||||
TextView TextAvatar = ViewBindings.findChildViewById(rootView, id);
|
||||
if (TextAvatar == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.contactName;
|
||||
TextView contactName = ViewBindings.findChildViewById(rootView, id);
|
||||
if (contactName == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
RelativeLayout contactRow = (RelativeLayout) rootView;
|
||||
|
||||
id = R.id.edit;
|
||||
ImageButton edit = ViewBindings.findChildViewById(rootView, id);
|
||||
if (edit == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new ContactRowBinding((RelativeLayout) rootView, CardAvatar, ImageAvatar, TextAvatar,
|
||||
contactName, contactRow, edit);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,68 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class CustomToastBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView toastText;
|
||||
|
||||
private CustomToastBinding(@NonNull LinearLayout rootView, @NonNull TextView toastText) {
|
||||
this.rootView = rootView;
|
||||
this.toastText = toastText;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CustomToastBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CustomToastBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.custom_toast, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static CustomToastBinding 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.toast_text;
|
||||
TextView toastText = ViewBindings.findChildViewById(rootView, id);
|
||||
if (toastText == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new CustomToastBinding((LinearLayout) rootView, toastText);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,86 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class ImageButtonBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final ImageView buttonImage;
|
||||
|
||||
@NonNull
|
||||
public final TextView buttonText;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout imageButton;
|
||||
|
||||
private ImageButtonBinding(@NonNull LinearLayout rootView, @NonNull ImageView buttonImage,
|
||||
@NonNull TextView buttonText, @NonNull LinearLayout imageButton) {
|
||||
this.rootView = rootView;
|
||||
this.buttonImage = buttonImage;
|
||||
this.buttonText = buttonText;
|
||||
this.imageButton = imageButton;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ImageButtonBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ImageButtonBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.image_button, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static ImageButtonBinding 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.buttonImage;
|
||||
ImageView buttonImage = ViewBindings.findChildViewById(rootView, id);
|
||||
if (buttonImage == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.buttonText;
|
||||
TextView buttonText = ViewBindings.findChildViewById(rootView, id);
|
||||
if (buttonText == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
LinearLayout imageButton = (LinearLayout) rootView;
|
||||
|
||||
return new ImageButtonBinding((LinearLayout) rootView, buttonImage, buttonText, imageButton);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,89 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class MessageBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView info;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout message;
|
||||
|
||||
@NonNull
|
||||
public final TextView text;
|
||||
|
||||
private MessageBinding(@NonNull LinearLayout rootView, @NonNull TextView info,
|
||||
@NonNull LinearLayout message, @NonNull TextView text) {
|
||||
this.rootView = rootView;
|
||||
this.info = info;
|
||||
this.message = message;
|
||||
this.text = text;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static MessageBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static MessageBinding inflate(@NonNull LayoutInflater inflater, @Nullable ViewGroup parent,
|
||||
boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.message, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static MessageBinding 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.info;
|
||||
TextView info = ViewBindings.findChildViewById(rootView, id);
|
||||
if (info == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.message;
|
||||
LinearLayout message = ViewBindings.findChildViewById(rootView, id);
|
||||
if (message == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.text;
|
||||
TextView text = ViewBindings.findChildViewById(rootView, id);
|
||||
if (text == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new MessageBinding((LinearLayout) rootView, info, message, text);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,90 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ScrollView;
|
||||
import android.widget.TextView;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.appcompat.widget.AppCompatEditText;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class PasswordDialogBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final ScrollView rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView message;
|
||||
|
||||
@NonNull
|
||||
public final AppCompatEditText password;
|
||||
|
||||
@NonNull
|
||||
public final TextView title;
|
||||
|
||||
private PasswordDialogBinding(@NonNull ScrollView rootView, @NonNull TextView message,
|
||||
@NonNull AppCompatEditText password, @NonNull TextView title) {
|
||||
this.rootView = rootView;
|
||||
this.message = message;
|
||||
this.password = password;
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public ScrollView getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static PasswordDialogBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static PasswordDialogBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.password_dialog, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static PasswordDialogBinding 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.message;
|
||||
TextView message = ViewBindings.findChildViewById(rootView, id);
|
||||
if (message == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.password;
|
||||
AppCompatEditText password = ViewBindings.findChildViewById(rootView, id);
|
||||
if (password == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.title;
|
||||
TextView title = ViewBindings.findChildViewById(rootView, id);
|
||||
if (title == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new PasswordDialogBinding((ScrollView) rootView, message, password, title);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,59 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
import android.view.LayoutInflater;
|
||||
import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.RelativeLayout;
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.viewbinding.ViewBinding;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
|
||||
public final class PresentationLayoutBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final RelativeLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final RelativeLayout presentationLayout;
|
||||
|
||||
private PresentationLayoutBinding(@NonNull RelativeLayout rootView,
|
||||
@NonNull RelativeLayout presentationLayout) {
|
||||
this.rootView = rootView;
|
||||
this.presentationLayout = presentationLayout;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public RelativeLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static PresentationLayoutBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static PresentationLayoutBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.presentation_layout, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static PresentationLayoutBinding bind(@NonNull View rootView) {
|
||||
if (rootView == null) {
|
||||
throw new NullPointerException("rootView");
|
||||
}
|
||||
|
||||
RelativeLayout presentationLayout = (RelativeLayout) rootView;
|
||||
|
||||
return new PresentationLayoutBinding((RelativeLayout) rootView, presentationLayout);
|
||||
}
|
||||
}
|
@ -1,118 +0,0 @@
|
||||
// Generated by view binder compiler. Do not edit!
|
||||
package com.tutpro.baresip.plus.databinding;
|
||||
|
||||
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.viewbinding.ViewBinding;
|
||||
import androidx.viewbinding.ViewBindings;
|
||||
import com.tutpro.baresip.plus.R;
|
||||
import java.lang.NullPointerException;
|
||||
import java.lang.Override;
|
||||
import java.lang.String;
|
||||
|
||||
public final class StatusNotificationBinding implements ViewBinding {
|
||||
@NonNull
|
||||
private final LinearLayout rootView;
|
||||
|
||||
@NonNull
|
||||
public final TextView etc;
|
||||
|
||||
@NonNull
|
||||
public final LinearLayout mainRow;
|
||||
|
||||
@NonNull
|
||||
public final ImageView status0;
|
||||
|
||||
@NonNull
|
||||
public final ImageView status1;
|
||||
|
||||
@NonNull
|
||||
public final ImageView status2;
|
||||
|
||||
@NonNull
|
||||
public final ImageView status3;
|
||||
|
||||
private StatusNotificationBinding(@NonNull LinearLayout rootView, @NonNull TextView etc,
|
||||
@NonNull LinearLayout mainRow, @NonNull ImageView status0, @NonNull ImageView status1,
|
||||
@NonNull ImageView status2, @NonNull ImageView status3) {
|
||||
this.rootView = rootView;
|
||||
this.etc = etc;
|
||||
this.mainRow = mainRow;
|
||||
this.status0 = status0;
|
||||
this.status1 = status1;
|
||||
this.status2 = status2;
|
||||
this.status3 = status3;
|
||||
}
|
||||
|
||||
@Override
|
||||
@NonNull
|
||||
public LinearLayout getRoot() {
|
||||
return rootView;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static StatusNotificationBinding inflate(@NonNull LayoutInflater inflater) {
|
||||
return inflate(inflater, null, false);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static StatusNotificationBinding inflate(@NonNull LayoutInflater inflater,
|
||||
@Nullable ViewGroup parent, boolean attachToParent) {
|
||||
View root = inflater.inflate(R.layout.status_notification, parent, false);
|
||||
if (attachToParent) {
|
||||
parent.addView(root);
|
||||
}
|
||||
return bind(root);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public static StatusNotificationBinding 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.etc;
|
||||
TextView etc = ViewBindings.findChildViewById(rootView, id);
|
||||
if (etc == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
LinearLayout mainRow = (LinearLayout) rootView;
|
||||
|
||||
id = R.id.status0;
|
||||
ImageView status0 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (status0 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.status1;
|
||||
ImageView status1 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (status1 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.status2;
|
||||
ImageView status2 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (status2 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
id = R.id.status3;
|
||||
ImageView status3 = ViewBindings.findChildViewById(rootView, id);
|
||||
if (status3 == null) {
|
||||
break missingId;
|
||||
}
|
||||
|
||||
return new StatusNotificationBinding((LinearLayout) rootView, etc, mainRow, status0, status1,
|
||||
status2, status3);
|
||||
}
|
||||
String missingId = rootView.getResources().getResourceName(id);
|
||||
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
package com.tutpro.baresip.plus;
|
||||
|
||||
@androidx.databinding.BindingBuildInfo
|
||||
public class DataBindingTriggerClass {}
|
@ -1,10 +0,0 @@
|
||||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package com.tutpro.baresip.plus.test;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||
public static final String APPLICATION_ID = "kr.co.rito.ritosip.test";
|
||||
public static final String BUILD_TYPE = "debug";
|
||||
}
|
@ -1,12 +0,0 @@
|
||||
/**
|
||||
* Automatically generated file. DO NOT MODIFY
|
||||
*/
|
||||
package com.tutpro.baresip.plus;
|
||||
|
||||
public final class BuildConfig {
|
||||
public static final boolean DEBUG = Boolean.parseBoolean("true");
|
||||
public static final String APPLICATION_ID = "kr.co.rito.ritosip";
|
||||
public static final String BUILD_TYPE = "debug";
|
||||
public static final int VERSION_CODE = 104;
|
||||
public static final String VERSION_NAME = "1.0.4";
|
||||
}
|
@ -1,7 +0,0 @@
|
||||
package androidx.databinding;
|
||||
|
||||
public class DataBinderMapperImpl extends MergedDataBinderMapper {
|
||||
DataBinderMapperImpl() {
|
||||
addMapper(new com.tutpro.baresip.plus.DataBinderMapperImpl());
|
||||
}
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
package androidx.databinding;
|
||||
|
||||
public interface DataBindingComponent {
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
package androidx.databinding.library.baseAdapters;
|
||||
|
||||
public class BR {
|
||||
public static final int _all = 0;
|
||||
}
|
@ -1,5 +0,0 @@
|
||||
package com.tutpro.baresip.plus;
|
||||
|
||||
public class BR {
|
||||
public static final int _all = 0;
|
||||
}
|
@ -1,83 +0,0 @@
|
||||
package com.tutpro.baresip.plus;
|
||||
|
||||
import android.util.SparseArray;
|
||||
import android.util.SparseIntArray;
|
||||
import android.view.View;
|
||||
import androidx.databinding.DataBinderMapper;
|
||||
import androidx.databinding.DataBindingComponent;
|
||||
import androidx.databinding.ViewDataBinding;
|
||||
import java.lang.Integer;
|
||||
import java.lang.Object;
|
||||
import java.lang.Override;
|
||||
import java.lang.RuntimeException;
|
||||
import java.lang.String;
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
public class DataBinderMapperImpl extends DataBinderMapper {
|
||||
private static final SparseIntArray INTERNAL_LAYOUT_ID_LOOKUP = new SparseIntArray(0);
|
||||
|
||||
@Override
|
||||
public ViewDataBinding getDataBinder(DataBindingComponent component, View view, int layoutId) {
|
||||
int localizedLayoutId = INTERNAL_LAYOUT_ID_LOOKUP.get(layoutId);
|
||||
if(localizedLayoutId > 0) {
|
||||
final Object tag = view.getTag();
|
||||
if(tag == null) {
|
||||
throw new RuntimeException("view must have a tag");
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ViewDataBinding getDataBinder(DataBindingComponent component, View[] views, int layoutId) {
|
||||
if(views == null || views.length == 0) {
|
||||
return null;
|
||||
}
|
||||
int localizedLayoutId = INTERNAL_LAYOUT_ID_LOOKUP.get(layoutId);
|
||||
if(localizedLayoutId > 0) {
|
||||
final Object tag = views[0].getTag();
|
||||
if(tag == null) {
|
||||
throw new RuntimeException("view must have a tag");
|
||||
}
|
||||
switch(localizedLayoutId) {
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getLayoutId(String tag) {
|
||||
if (tag == null) {
|
||||
return 0;
|
||||
}
|
||||
Integer tmpVal = InnerLayoutIdLookup.sKeys.get(tag);
|
||||
return tmpVal == null ? 0 : tmpVal;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String convertBrIdToString(int localId) {
|
||||
String tmpVal = InnerBrLookup.sKeys.get(localId);
|
||||
return tmpVal;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<DataBinderMapper> collectDependencies() {
|
||||
ArrayList<DataBinderMapper> result = new ArrayList<DataBinderMapper>(1);
|
||||
result.add(new androidx.databinding.library.baseAdapters.DataBinderMapperImpl());
|
||||
return result;
|
||||
}
|
||||
|
||||
private static class InnerBrLookup {
|
||||
static final SparseArray<String> sKeys = new SparseArray<String>(1);
|
||||
|
||||
static {
|
||||
sKeys.put(0, "_all");
|
||||
}
|
||||
}
|
||||
|
||||
private static class InnerLayoutIdLookup {
|
||||
static final HashMap<String, Integer> sKeys = new HashMap<String, Integer>(0);
|
||||
}
|
||||
}
|
@ -1 +0,0 @@
|
||||
{"databinding-compiler-8.1.1.jar (androidx.databinding:databinding-compiler:8.1.1)":"INCREMENTAL_AP"}
|
@ -1 +0,0 @@
|
||||
{"databinding-compiler-8.1.1.jar (androidx.databinding:databinding-compiler:8.1.1)":"INCREMENTAL_AP"}
|
@ -1,20 +0,0 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "APK",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "kr.co.rito.ritosip",
|
||||
"variantName": "debug",
|
||||
"elements": [
|
||||
{
|
||||
"type": "SINGLE",
|
||||
"filters": [],
|
||||
"attributes": [],
|
||||
"versionCode": 104,
|
||||
"versionName": "1.0.4",
|
||||
"outputFile": "ritosip-1.0.4.apk"
|
||||
}
|
||||
],
|
||||
"elementType": "File"
|
||||
}
|
Binary file not shown.
@ -1,2 +0,0 @@
|
||||
#- File Locator -
|
||||
listingFile=../../../outputs/apk/debug/output-metadata.json
|
@ -1,2 +0,0 @@
|
||||
#- File Locator -
|
||||
listingFile=../../../outputs/apk/androidTest/debug/output-metadata.json
|
@ -1,2 +0,0 @@
|
||||
appMetadataVersion=1.1
|
||||
androidGradlePluginVersion=8.1.1
|
@ -1,55 +0,0 @@
|
||||
poll_method epoll
|
||||
call_local_timeout 120
|
||||
call_max_calls 4
|
||||
call_hold_other_calls yes
|
||||
audio_player aaudio,nil
|
||||
audio_source aaudio,nil
|
||||
audio_alert aaudio,nil
|
||||
audio_level yes
|
||||
ausrc_format s16
|
||||
auplay_format s16
|
||||
auenc_format s16
|
||||
audec_format s16
|
||||
audio_buffer 20-300
|
||||
audio_buffer_mode adaptive
|
||||
audio_silence -35.0
|
||||
audio_telev_pt 101
|
||||
video_source avformat,android_camera,1
|
||||
videnc_format yuv420p
|
||||
audio_jitter_buffer_type adaptive
|
||||
audio_jitter_buffer_delay 0-20
|
||||
video_jitter_buffer_type off
|
||||
video_jitter_buffer_delay 1-100
|
||||
rtp_stats yes
|
||||
rtp_timeout 60
|
||||
rtp_rxmode thread
|
||||
module avcodec.so
|
||||
module aaudio.so
|
||||
module vp8.so
|
||||
module vp9.so
|
||||
module av1.so
|
||||
module snapshot.so
|
||||
module fakevideo.so
|
||||
module stun.so
|
||||
module turn.so
|
||||
module ice.so
|
||||
module srtp.so
|
||||
module dtls_srtp.so
|
||||
module gzrtp.so
|
||||
module uuid.so
|
||||
module vumeter.so
|
||||
module webrtc_aecm.so
|
||||
module_app account.so
|
||||
module_app debug_cmd.so
|
||||
module_app mwi.so
|
||||
avcodec_h264enc h264_mediacodec
|
||||
video_fps 30
|
||||
mic_volume 20
|
||||
evdev_device /dev/input/event0
|
||||
opus_samplerate 48000
|
||||
opus_stereo no
|
||||
opus_sprop_stereo no
|
||||
opus_cbr no
|
||||
opus_inbandfec yes
|
||||
opus_application voip
|
||||
dtls_srtp_use_ec prime256v1
|
@ -1 +0,0 @@
|
||||
|
@ -1,10 +0,0 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "COMPATIBLE_SCREEN_MANIFEST",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "kr.co.rito.ritosip",
|
||||
"variantName": "debug",
|
||||
"elements": []
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,5 +0,0 @@
|
||||
@echo off
|
||||
"D:\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe" ^
|
||||
-C ^
|
||||
"D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\.cxx\\Debug\\6c5rc482\\arm64-v8a" ^
|
||||
baresip
|
@ -1,173 +0,0 @@
|
||||
{
|
||||
"abi": "ARM64_V8A",
|
||||
"info": {
|
||||
"abi": "ARM64_V8A",
|
||||
"bitness": 64,
|
||||
"deprecated": false,
|
||||
"default": true
|
||||
},
|
||||
"cxxBuildFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\.cxx\\Debug\\6c5rc482\\arm64-v8a",
|
||||
"soFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates\\cxx\\Debug\\6c5rc482\\obj\\arm64-v8a",
|
||||
"soRepublishFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates\\cmake\\debug\\obj\\arm64-v8a",
|
||||
"abiPlatformVersion": 29,
|
||||
"cmake": {
|
||||
"effectiveConfiguration": {
|
||||
"inheritEnvironments": [],
|
||||
"variables": []
|
||||
}
|
||||
},
|
||||
"variant": {
|
||||
"buildSystemArgumentList": [
|
||||
"-DANDROID_STL\u003dc++_shared"
|
||||
],
|
||||
"cFlagsList": [
|
||||
"-DHAVE_INTTYPES_H -lstdc++"
|
||||
],
|
||||
"cppFlagsList": [],
|
||||
"variantName": "debug",
|
||||
"isDebuggableEnabled": true,
|
||||
"validAbiList": [
|
||||
"ARM64_V8A"
|
||||
],
|
||||
"buildTargetSet": [],
|
||||
"implicitBuildTargetSet": [],
|
||||
"cmakeSettingsConfiguration": "android-gradle-plugin-predetermined-name",
|
||||
"module": {
|
||||
"cxxFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\.cxx",
|
||||
"intermediatesBaseFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates",
|
||||
"intermediatesFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates\\cxx",
|
||||
"gradleModulePathName": ":app",
|
||||
"moduleRootFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app",
|
||||
"moduleBuildFile": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build.gradle",
|
||||
"makeFile": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\src\\main\\cpp\\CMakeLists.txt",
|
||||
"buildSystem": "CMAKE",
|
||||
"ndkFolder": "D:\\Android\\sdk\\ndk\\27.2.12479018",
|
||||
"ndkVersion": "27.2.12479018",
|
||||
"ndkSupportedAbiList": [
|
||||
"ARMEABI_V7A",
|
||||
"ARM64_V8A",
|
||||
"X86",
|
||||
"X86_64"
|
||||
],
|
||||
"ndkDefaultAbiList": [
|
||||
"ARMEABI_V7A",
|
||||
"ARM64_V8A",
|
||||
"X86",
|
||||
"X86_64"
|
||||
],
|
||||
"ndkDefaultStl": "LIBCXX_STATIC",
|
||||
"ndkMetaPlatforms": {
|
||||
"min": 21,
|
||||
"max": 35,
|
||||
"aliases": {
|
||||
"20": 19,
|
||||
"25": 24,
|
||||
"J": 16,
|
||||
"J-MR1": 17,
|
||||
"J-MR2": 18,
|
||||
"K": 19,
|
||||
"L": 21,
|
||||
"L-MR1": 22,
|
||||
"M": 23,
|
||||
"N": 24,
|
||||
"N-MR1": 24,
|
||||
"O": 26,
|
||||
"O-MR1": 27,
|
||||
"P": 28,
|
||||
"Q": 29,
|
||||
"R": 30,
|
||||
"S": 31,
|
||||
"Sv2": 32,
|
||||
"Tiramisu": 33,
|
||||
"UpsideDownCake": 34,
|
||||
"VanillaIceCream": 35
|
||||
}
|
||||
},
|
||||
"ndkMetaAbiList": [
|
||||
{
|
||||
"abi": "ARMEABI_V7A",
|
||||
"bitness": 32,
|
||||
"deprecated": false,
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"abi": "ARM64_V8A",
|
||||
"bitness": 64,
|
||||
"deprecated": false,
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"abi": "X86",
|
||||
"bitness": 32,
|
||||
"deprecated": false,
|
||||
"default": true
|
||||
},
|
||||
{
|
||||
"abi": "X86_64",
|
||||
"bitness": 64,
|
||||
"deprecated": false,
|
||||
"default": true
|
||||
}
|
||||
],
|
||||
"cmakeToolchainFile": "D:\\Android\\sdk\\ndk\\27.2.12479018\\build\\cmake\\android.toolchain.cmake",
|
||||
"cmake": {
|
||||
"cmakeExe": "D:\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe"
|
||||
},
|
||||
"stlSharedObjectMap": {
|
||||
"LIBCXX_SHARED": {
|
||||
"ARMEABI_V7A": "D:\\Android\\sdk\\ndk\\27.2.12479018\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\arm-linux-androideabi\\libc++_shared.so",
|
||||
"ARM64_V8A": "D:\\Android\\sdk\\ndk\\27.2.12479018\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\aarch64-linux-android\\libc++_shared.so",
|
||||
"X86": "D:\\Android\\sdk\\ndk\\27.2.12479018\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\i686-linux-android\\libc++_shared.so",
|
||||
"X86_64": "D:\\Android\\sdk\\ndk\\27.2.12479018\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\x86_64-linux-android\\libc++_shared.so"
|
||||
},
|
||||
"LIBCXX_STATIC": {},
|
||||
"NONE": {},
|
||||
"SYSTEM": {}
|
||||
},
|
||||
"project": {
|
||||
"rootBuildGradleFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip",
|
||||
"sdkFolder": "D:\\Android\\sdk",
|
||||
"isBuildOnlyTargetAbiEnabled": true,
|
||||
"isCmakeBuildCohabitationEnabled": false,
|
||||
"isPrefabEnabled": false
|
||||
},
|
||||
"outputOptions": [],
|
||||
"ninjaExe": "D:\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
|
||||
"hasBuildTimeInformation": true
|
||||
},
|
||||
"prefabClassPaths": [],
|
||||
"prefabPackages": [],
|
||||
"prefabPackageConfigurations": [],
|
||||
"stlType": "c++_shared",
|
||||
"optimizationTag": "Debug"
|
||||
},
|
||||
"buildSettings": {
|
||||
"environmentVariables": []
|
||||
},
|
||||
"prefabFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\.cxx\\Debug\\6c5rc482\\prefab\\arm64-v8a",
|
||||
"isActiveAbi": true,
|
||||
"fullConfigurationHash": "6c5rc482o5q4t124c3h5a5u3k5l5x21v1t1l6n372m5sb4247703jdw482t",
|
||||
"fullConfigurationHashKey": "# Values used to calculate the hash in this folder name.\n# Should not depend on the absolute path of the project itself.\n# - AGP: 8.1.1.\n# - $NDK is the path to NDK 27.2.12479018.\n# - $PROJECT is the path to the parent folder of the root Gradle build file.\n# - $ABI is the ABI to be built with. The specific value doesn\u0027t contribute to the value of the hash.\n# - $HASH is the hash value computed from this text.\n# - $CMAKE is the path to CMake 3.22.1.\n# - $NINJA is the path to Ninja.\n-H$PROJECT/app/src/main/cpp\n-DCMAKE_SYSTEM_NAME\u003dAndroid\n-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON\n-DCMAKE_SYSTEM_VERSION\u003d29\n-DANDROID_PLATFORM\u003dandroid-29\n-DANDROID_ABI\u003d$ABI\n-DCMAKE_ANDROID_ARCH_ABI\u003d$ABI\n-DANDROID_NDK\u003d$NDK\n-DCMAKE_ANDROID_NDK\u003d$NDK\n-DCMAKE_TOOLCHAIN_FILE\u003d$NDK/build/cmake/android.toolchain.cmake\n-DCMAKE_MAKE_PROGRAM\u003d$NINJA\n-DCMAKE_C_FLAGS\u003d-DHAVE_INTTYPES_H -lstdc++\n-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003d$PROJECT/app/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003d$PROJECT/app/build/intermediates/cxx/Debug/$HASH/obj/$ABI\n-DCMAKE_BUILD_TYPE\u003dDebug\n-B$PROJECT/app/.cxx/Debug/$HASH/$ABI\n-GNinja\n-DANDROID_STL\u003dc++_shared",
|
||||
"configurationArguments": [
|
||||
"-HD:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\src\\main\\cpp",
|
||||
"-DCMAKE_SYSTEM_NAME\u003dAndroid",
|
||||
"-DCMAKE_EXPORT_COMPILE_COMMANDS\u003dON",
|
||||
"-DCMAKE_SYSTEM_VERSION\u003d29",
|
||||
"-DANDROID_PLATFORM\u003dandroid-29",
|
||||
"-DANDROID_ABI\u003darm64-v8a",
|
||||
"-DCMAKE_ANDROID_ARCH_ABI\u003darm64-v8a",
|
||||
"-DANDROID_NDK\u003dD:\\Android\\sdk\\ndk\\27.2.12479018",
|
||||
"-DCMAKE_ANDROID_NDK\u003dD:\\Android\\sdk\\ndk\\27.2.12479018",
|
||||
"-DCMAKE_TOOLCHAIN_FILE\u003dD:\\Android\\sdk\\ndk\\27.2.12479018\\build\\cmake\\android.toolchain.cmake",
|
||||
"-DCMAKE_MAKE_PROGRAM\u003dD:\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe",
|
||||
"-DCMAKE_C_FLAGS\u003d-DHAVE_INTTYPES_H -lstdc++",
|
||||
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY\u003dD:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates\\cxx\\Debug\\6c5rc482\\obj\\arm64-v8a",
|
||||
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY\u003dD:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates\\cxx\\Debug\\6c5rc482\\obj\\arm64-v8a",
|
||||
"-DCMAKE_BUILD_TYPE\u003dDebug",
|
||||
"-BD:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\.cxx\\Debug\\6c5rc482\\arm64-v8a",
|
||||
"-GNinja",
|
||||
"-DANDROID_STL\u003dc++_shared"
|
||||
],
|
||||
"stlLibraryFile": "D:\\Android\\sdk\\ndk\\27.2.12479018\\toolchains\\llvm\\prebuilt\\windows-x86_64\\sysroot\\usr\\lib\\aarch64-linux-android\\libc++_shared.so",
|
||||
"intermediatesParentFolder": "D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates\\cxx\\Debug\\6c5rc482"
|
||||
}
|
@ -1,2 +0,0 @@
|
||||
ninja: Entering directory `D:\Workspace\RITO\Develop\RitoSIP\ritosip\app\.cxx\Debug\6c5rc482\arm64-v8a'
|
||||
ninja: no work to do.
|
@ -1,20 +0,0 @@
|
||||
@echo off
|
||||
"D:\\Android\\sdk\\cmake\\3.22.1\\bin\\cmake.exe" ^
|
||||
"-HD:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\src\\main\\cpp" ^
|
||||
"-DCMAKE_SYSTEM_NAME=Android" ^
|
||||
"-DCMAKE_EXPORT_COMPILE_COMMANDS=ON" ^
|
||||
"-DCMAKE_SYSTEM_VERSION=29" ^
|
||||
"-DANDROID_PLATFORM=android-29" ^
|
||||
"-DANDROID_ABI=arm64-v8a" ^
|
||||
"-DCMAKE_ANDROID_ARCH_ABI=arm64-v8a" ^
|
||||
"-DANDROID_NDK=D:\\Android\\sdk\\ndk\\27.2.12479018" ^
|
||||
"-DCMAKE_ANDROID_NDK=D:\\Android\\sdk\\ndk\\27.2.12479018" ^
|
||||
"-DCMAKE_TOOLCHAIN_FILE=D:\\Android\\sdk\\ndk\\27.2.12479018\\build\\cmake\\android.toolchain.cmake" ^
|
||||
"-DCMAKE_MAKE_PROGRAM=D:\\Android\\sdk\\cmake\\3.22.1\\bin\\ninja.exe" ^
|
||||
"-DCMAKE_C_FLAGS=-DHAVE_INTTYPES_H -lstdc++" ^
|
||||
"-DCMAKE_LIBRARY_OUTPUT_DIRECTORY=D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates\\cxx\\Debug\\6c5rc482\\obj\\arm64-v8a" ^
|
||||
"-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=D:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\build\\intermediates\\cxx\\Debug\\6c5rc482\\obj\\arm64-v8a" ^
|
||||
"-DCMAKE_BUILD_TYPE=Debug" ^
|
||||
"-BD:\\Workspace\\RITO\\Develop\\RitoSIP\\ritosip\\app\\.cxx\\Debug\\6c5rc482\\arm64-v8a" ^
|
||||
-GNinja ^
|
||||
"-DANDROID_STL=c++_shared"
|
@ -1,15 +0,0 @@
|
||||
-- The C compiler identification is Clang 18.0.3
|
||||
-- The CXX compiler identification is Clang 18.0.3
|
||||
-- Detecting C compiler ABI info
|
||||
-- Detecting C compiler ABI info - done
|
||||
-- Check for working C compiler: D:/Android/Sdk/ndk/27.2.12479018/toolchains/llvm/prebuilt/windows-x86_64/bin/clang.exe - skipped
|
||||
-- Detecting C compile features
|
||||
-- Detecting C compile features - done
|
||||
-- Detecting CXX compiler ABI info
|
||||
-- Detecting CXX compiler ABI info - done
|
||||
-- Check for working CXX compiler: D:/Android/Sdk/ndk/27.2.12479018/toolchains/llvm/prebuilt/windows-x86_64/bin/clang++.exe - skipped
|
||||
-- Detecting CXX compile features
|
||||
-- Detecting CXX compile features - done
|
||||
-- Configuring done
|
||||
-- Generating done
|
||||
-- Build files have been written to: D:/Workspace/RITO/Develop/RitoSIP/ritosip/app/.cxx/Debug/6c5rc482/arm64-v8a
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 15ms
|
||||
|
@ -1,5 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 10ms
|
||||
|
||||
# C/C++ build system timings
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,6 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 30ms
|
||||
[gap of 11ms]
|
||||
generate_cxx_metadata completed in 50ms
|
||||
|
@ -1,13 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
[gap of 10ms]
|
||||
create-invalidation-state 31ms
|
||||
[gap of 11ms]
|
||||
generate_cxx_metadata completed in 52ms
|
||||
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 29ms
|
||||
[gap of 15ms]
|
||||
generate_cxx_metadata completed in 52ms
|
||||
|
@ -1,7 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
[gap of 10ms]
|
||||
create-invalidation-state 29ms
|
||||
[gap of 12ms]
|
||||
generate_cxx_metadata completed in 51ms
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 16ms
|
||||
|
@ -1,6 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 34ms
|
||||
[gap of 15ms]
|
||||
generate_cxx_metadata completed in 58ms
|
||||
|
@ -1,6 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 29ms
|
||||
[gap of 11ms]
|
||||
generate_cxx_metadata completed in 47ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,6 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata
|
||||
create-invalidation-state 31ms
|
||||
[gap of 13ms]
|
||||
generate_cxx_metadata completed in 52ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 16ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 11ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 15ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 12ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 25ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 19ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 10ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 17ms
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 16ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,3 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
generate_cxx_metadata 16ms
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
@ -1,2 +0,0 @@
|
||||
# C/C++ build system timings
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user