VancedMicroG/play-services-core/src/main/java/org/microg/gms/common/PhoneInfo.java

36 lines
1.1 KiB
Java
Raw Normal View History

2015-02-19 00:29:43 +00:00
/*
* Copyright (C) 2013-2017 microG Project Team
2015-02-19 00:29:43 +00:00
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.microg.gms.common;
import java.util.Random;
2015-02-19 00:29:43 +00:00
public class PhoneInfo {
2015-07-08 16:23:20 +00:00
public String cellOperator = "26207";
public String roaming = "mobile-notroaming";
public String simOperator = "26207";
public String imsi = randomImsi();
private String randomImsi() {
Random random = new Random();
StringBuilder sb = new StringBuilder(simOperator);
while (sb.length() < 15) {
sb.append(random.nextInt(10));
}
return sb.toString();
}
2015-02-19 00:29:43 +00:00
}