Attempt at fixing network

This commit is contained in:
artdeell 2021-03-16 21:24:46 +03:00
parent c0c2be6943
commit 665de1767d
3 changed files with 4 additions and 4 deletions

View File

@ -27,7 +27,7 @@ android {
applicationId "net.kdt.pojavlaunch"
minSdkVersion 21
targetSdkVersion 29
versionCode 156245
versionCode 156247
versionName "3.3.1.1_rel_" + getDate()
multiDexEnabled true //important
}

View File

@ -41,7 +41,7 @@ public class PojavProfile
acc.clientToken = "0";
}
if (acc.profileId == null) {
acc.profileId = "0";
acc.profileId = "00000000-0000-0000-0000-000000000000";
}
if (acc.username == null) {
acc.username = "0";

View File

@ -12,7 +12,7 @@ public class MinecraftAccount
{
public String accessToken = "0"; // access token
public String clientToken = "0"; // clientID: refresh and invalidate
public String profileId = "0"; // profile UUID, for obtaining skin
public String profileId = "00000000-0000-0000-0000-000000000000"; // profile UUID, for obtaining skin
public String username = "Steve";
public String selectedVersion = "1.7.10";
public boolean isMicrosoft = false;
@ -60,7 +60,7 @@ public class MinecraftAccount
acc.clientToken = "0";
}
if (acc.profileId == null) {
acc.profileId = "0";
acc.profileId = "00000000-0000-0000-0000-000000000000";
}
if (acc.username == null) {
acc.username = "0";