Skip to content

Commit 7abcf54

Browse files
committed
...
1 parent 0d438f6 commit 7abcf54

35 files changed

+314
-280
lines changed

.idea/compiler.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/gradle.xml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.idea/jarRepositories.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 9 deletions
This file was deleted.

.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

app/build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ dependencies {
5757
implementation project(':minecraft')
5858
implementation project(':substrate')
5959
implementation project(':xhook')
60+
implementation project(':xbox')
61+
implementation project(':fmod')
6062
implementation project(':crashreporter')
6163

6264
implementation 'commons-io:commons-io:2.11.0'

app/proguard-rules.pro

Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,43 +2,44 @@
22
-renamesourcefileattribute
33
-repackageclasses
44

5-
-ignorewarnings
6-
-dontwarn
7-
-dontnote
8-
9-
-dontobfuscate
10-
-dontoptimize
11-
-dontshrink # TODO: Need Update Rules for 1.19
12-
135
#-obfuscationdictionary proguard-dictionary.txt
146
#-packageobfuscationdictionary proguard-dictionary.txt
157
#-classobfuscationdictionary proguard-dictionary.txt
168

17-
-keep class org.apache.commons.logging.impl.Log4JLogger { *; }
18-
-keep class com.appboy.ui.contentcards.view.ContentCardViewHolder { *; }
19-
-keep class org.slf4j.LoggerFactory { *; }
9+
-keep class com.mcal.pesdk.nativeapi.NativeUtils { *; }
2010

11+
-keep class com.microsoft.xal.androidjava.Storage { *; }
2112
-keep class com.microsoft.xal.androidjava.DeviceInfo { *; }
2213
-keep class com.microsoft.xal.androidjava.PresenceManager { *; }
2314
-keep class com.microsoft.xal.browser.BrowserLaunchActivity { *; }
2415
-keep class com.microsoft.xal.crypto.EccPubKey { *; }
2516
-keep class com.microsoft.xal.crypto.Ecdsa { *; }
2617
-keep class com.microsoft.xal.crypto.SecureRandom { *; }
2718
-keep class com.microsoft.xal.crypto.ShaHasher { *; }
19+
-keep class com.microsoft.xal.logging.XalLogger { *; }
20+
-keep class com.microsoft.xal.logging.LogEntry { *; }
2821

29-
-keep class com.microsoft.xbox.idp.interop.Interop { *; }
3022
-keep class com.microsoft.xbox.idp.util.HttpCall { *; }
23+
-keep class com.microsoft.xbox.idp.util.HttpHeaders { *; }
24+
-keep class com.microsoft.xbox.idp.interop.Interop { *; }
3125
-keep class com.microsoft.xbox.idp.interop.XboxLiveAppConfig { *; }
26+
27+
-keep class com.microsoft.xbox.telemetry.helpers.UTCTelemetry { *; }
28+
3229
-keep class com.microsoft.xboxtcui.Interop { *; }
30+
3331
-keep class com.microsoft.xboxlive.LocalStorage { *; }
3432

35-
-keep class com.xbox.httpclient.HttpClientRequest { *; }
33+
-keep class com.xbox.httpclient.HttpClientRequestBody { *; }
3634
-keep class com.xbox.httpclient.HttpClientResponse { *; }
35+
-keep class com.xbox.httpclient.HttpClientWebSocket { *; }
36+
-keep class com.xbox.httpclient.HttpClientRequest { *; }
3737

3838
-keep class org.fmod.AudioDevice { *; }
3939
-keep class org.fmod.MediaCodec { *; }
4040
-keep class org.fmod.FMOD { *; }
4141

42+
-keep class com.mojang.minecraftpe.CrashManager { *; }
4243
-keep class com.mojang.minecraftpe.ActiveDirectorySignIn { *; }
4344
-keep class com.mojang.minecraftpe.BatteryMonitor { *; }
4445
-keep class com.mojang.minecraftpe.HardwareInformation { *; }
@@ -49,15 +50,20 @@
4950
-keep class com.mojang.minecraftpe.store.Purchase { *; }
5051
-keep class com.mojang.minecraftpe.store.StoreFactory { *; }
5152
-keep class com.mojang.minecraftpe.store.Store { *; }
53+
-keep class com.mojang.minecraftpe.store.StoreListener { *; }
5254
-keep class com.mojang.minecraftpe.store.ExtraLicenseResponseData { *; }
55+
-keep class com.mojang.minecraftpe.packagesource.PackageSourceListener { *; }
5356
-keep class com.mojang.minecraftpe.packagesource.PackageSourceFactory { *; }
5457
-keep class com.mojang.minecraftpe.packagesource.PackageSource { *; }
5558
-keep class com.mojang.minecraftpe.packagesource.NativePackageSourceListener { *; }
5659
-keep class com.mojang.minecraftpe.Webview.MinecraftChromeClient { *; }
5760
-keep class com.mojang.minecraftpe.Webview.MinecraftWebview { *; }
5861
-keep class com.mojang.minecraftpe.Webview.MinecraftWebViewClient { *; }
5962
-keep class com.mojang.minecraftpe.Webview.WebviewHostInterface { *; }
60-
61-
-keep class com.mcal.pesdk.nativeapi.NativeUtils { *; }
63+
-keep class com.mojang.minecraftpe.input.JellyBeanDeviceManager { *; }
64+
-keep class com.mojang.minecraftpe.WorldRecovery { *; }
65+
-keep class com.mojang.minecraftpe.NotificationListenerService { *; }
66+
-keep class com.mojang.minecraftpe.MinecraftActivityLifecycleCallbackListener { *; }
67+
-keep class com.mojang.minecraftpe.FilePickerManager { *; }
6268

6369
-keep class org.spongycastle.**

gradle/wrapper/gradle-wrapper.jar

-57.3 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 0 additions & 6 deletions
This file was deleted.

minecraft/build.gradle

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@ dependencies {
3333
implementation project(':adal')
3434
implementation project(':xbox')
3535

36-
implementation 'androidx.core:core-splashscreen:1.0.0'
37-
3836
implementation 'androidx.appcompat:appcompat:1.6.1'
3937
implementation 'com.google.code.gson:gson:2.10.1'
4038
implementation 'androidx.legacy:legacy-support-v4:1.0.0'

0 commit comments

Comments
 (0)