Skip to content

Commit

Permalink
[services] fix TelephonyManagerRegister
Browse files Browse the repository at this point in the history
  • Loading branch information
Tornaco committed Jun 18, 2022
1 parent c6e8fba commit f557b5c
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import lombok.ToString;

@ToString
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
Expand Down Expand Up @@ -87,6 +86,87 @@ public Fields[] newArray(int size) {
}
};


public String getLabel() {
return label;
}

public String getId() {
return id;
}

public long getCreateAt() {
return createAt;
}

public String getDeviceId() {
return deviceId;
}

public String getAndroidId() {
return androidId;
}

public String getLine1Number() {
return line1Number;
}

public String getSimSerial() {
return simSerial;
}

public String getSimCountryIso() {
return simCountryIso;
}

public String getSimOperatorName() {
return simOperatorName;
}

public String getSimOperator() {
return simOperator;
}

public String getNetCountryIso() {
return netCountryIso;
}

public String getNetOperatorName() {
return netOperatorName;
}

public String getNetOperator() {
return netOperator;
}

public String getImeiForSlots0() {
return imeiForSlots0;
}

public String getImeiForSlots1() {
return imeiForSlots1;
}

public String getImeiForSlots2() {
return imeiForSlots2;
}

public String getMeidForSlots0() {
return meidForSlots0;
}

public String getMeidForSlots1() {
return meidForSlots1;
}

public String getMeidForSlots2() {
return meidForSlots2;
}

public boolean isShowN() {
return showN;
}

@Override
public int describeContents() {
return 0;
Expand Down
2 changes: 1 addition & 1 deletion android/internal/Thanox-Internal

0 comments on commit f557b5c

Please sign in to comment.