# Add project specific ProGuard rules here.
# By default, the flags in this file are appended to flags specified
# in C:\Users\jveach\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt
# You can edit the include path and order by changing the proguardFiles
# directive in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# Add any project specific keep options here:

# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
#   public *;
#}


#Specify all the com.aegir.vmms subpackages EXCEPT internal
#so com.aegir.vmms.internal.* will be obfuscated by proguard
-dontwarn android.net.**
-dontwarn org.apache.**
-keepattributes Signature
-keep public class com.aegir.vmms.* {
    public protected *;
}

-keep public class com.aegir.vmms.vmd.** {
    public protected *;
}


-keep public class com.aegir.vmms.util.** {
    public protected *;
}

-keep public class com.aegir.vmms.wayfinding.** {
    public protected *;
}


-keep public class com.aegir.vmms.android.model.** {
    public protected *;
}

-keep public class com.aegir.vmms.android.ui** {
    public protected *;
}

-keep public class com.aegir.vmms.android.annotations.** {
    public protected *;
}
-keep public class com.aegir.vmms.android.interfaces.** {
    public protected *;
}

-keep public class com.aegir.vmms.android.ui.wayfinding.* {
    public protected *;
}

# Suppress warnings for Java 9+ APIs that are handled by desugaring
-dontwarn java.lang.invoke.StringConcatFactory

# Kotlin
-dontwarn kotlin.**
-keepclassmembers class **$WhenMappings {
    <fields>;
}