slowcar
slowcar
Is there an update to the proguard rules for the kiota generated classes? in https://github.com/microsoftgraph/msgraph-beta-sdk-java/blob/main/docs/proguard-rules.txt there is ``` # Keep the names of JSON-serializable objects. -keepnames public class * implements...
I had to exclude the following, some of them are not in the list above: skipConfigs = ["debugCompileClasspath", "debugAndroidTestCompileClasspath", "debugUnitTestCompileClasspath", "releaseUnitTestCompileClasspath", "debugUnitTestRuntimeClasspath", "releaseUnitTestRuntimeClasspath", "testReleaseDependencySources", "androidTestDependencySources", "debugUnitTestDependencySources", "testDebugDependencySources", "debugAndroidTestDependencySources", "androidTestDebugDependencySources", "releaseUnitTestDependencySources",...
We observed the same when implementing MSAL back then, and have added an internal cache with a simple hashmap (due to using multiple accounts, otherwise you can probably just store...