File tree 2 files changed +13
-2
lines changed
Private/Immutable/Android/Java 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 3
3
<prebuildCopies >
4
4
<copyDir src =" $S(PluginDir)/Private/Immutable/Android/Java" dst =" $S(BuildDir)/src/com/immutable/unreal" />
5
5
</prebuildCopies >
6
+ <proguardAdditions >
7
+ <insert >
8
+ <!-- Disable obfuscation -->
9
+ -dontwarn com.immutable.unreal
10
+ -keep class com.immutable.unreal.** { *; }
11
+ -keep interface com.immutable.unreal.** { *; }
12
+ -keep public class com.immutable.unreal.ImmutableAndroid.** { public protected *; }
13
+
14
+ -dontwarn androidx.**
15
+ -keep class androidx.** { *; }
16
+ -keep interface androidx.** { *; }
17
+ </insert >
18
+ </proguardAdditions >
6
19
<androidManifestUpdates >
7
20
<addElements tag =" queries" >
8
21
<intent >
Original file line number Diff line number Diff line change 23
23
import java .util .ArrayList ;
24
24
import java .util .List ;
25
25
26
- import com .epicgames .unreal .GameActivity ;
27
-
28
26
public class ImmutableAndroid {
29
27
private static CustomTabsServiceConnection customTabsServiceConnection ;
30
28
You can’t perform that action at this time.
0 commit comments