mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-05 13:25:07 +01:00
a9ee06914d
This allows sending C-like structs between Kotlin and C++ without struct-specific code
9 lines
318 B
Prolog
9 lines
318 B
Prolog
# Skyline Proguard Rules
|
|
# For more details, see
|
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
|
|
# Retain all classes within Skyline for traces + JNI access + Serializable classes
|
|
-keep class emu.skyline.** { *; }
|
|
# Keep kotlin classes so that kotlin reflection works
|
|
-keep class kotlin.** {*;}
|