a24679ce69
android / android (push) Failing after 50s
apple / swift (push) Successful in 54s
deb / build-publish (push) Successful in 2m25s
ci / web (push) Successful in 28s
ci / rust (push) Successful in 1m36s
ci / docs-site (push) Successful in 28s
decky / build-publish (push) Successful in 11s
docker / build-push (--build-arg FEDORA_VERSION=44, ci, ci/fedora-rpm.Dockerfile, punktfunk-fedora44-rpm) (push) Successful in 4s
docker / build-push (., web/Dockerfile, punktfunk-web) (push) Successful in 5s
docker / build-push (ci, ci/fedora-rpm.Dockerfile, punktfunk-fedora-rpm) (push) Successful in 5s
docker / build-push (ci, ci/rust-ci.Dockerfile, punktfunk-rust-ci) (push) Successful in 5s
docker / build-push (docs-site, docs-site/Dockerfile, punktfunk-docs) (push) Successful in 4s
ci / bench (push) Successful in 4m25s
rpm / build-publish (bazzite, punktfunk-fedora-rpm) (push) Successful in 8m4s
docker / deploy-docs (push) Successful in 17s
rpm / build-publish (fedora-44, punktfunk-fedora44-rpm) (push) Successful in 7m55s
18 lines
556 B
Prolog
18 lines
556 B
Prolog
# Punktfunk ProGuard Rules
|
|
|
|
# Keep the Native Bridge and its methods for JNI
|
|
-keep class io.unom.punktfunk.kit.NativeBridge { *; }
|
|
-keepclasseswithmembernames class * {
|
|
native <methods>;
|
|
}
|
|
|
|
# Keep the models that might be serialized or accessed via JNI
|
|
-keep class io.unom.punktfunk.models.** { *; }
|
|
-keep class io.unom.punktfunk.kit.discovery.** { *; }
|
|
-keep class io.unom.punktfunk.kit.security.** { *; }
|
|
|
|
# Compose rules are usually handled by the plugin, but we can add more if needed
|
|
-keepclassmembers class **.R$* {
|
|
public static <fields>;
|
|
}
|