Marcin Wisniowski
12/11/2023, 11:36 AMAnders Carlsen
12/11/2023, 12:47 PMAnders Carlsen
12/11/2023, 12:52 PMandroidx.compose.**
Marcin Wisniowski
12/11/2023, 1:10 PM-keep class androidx.compose.runtime.** { *; }
did fix one of the issues, going through them one by oneStefan Oltmann
12/11/2023, 3:38 PM-dontwarn !com.ashampoo.photos.**
-keep class !com.ashampoo.photos.** { *; }
Stefan Oltmann
12/11/2023, 3:39 PMMarcin Wisniowski
12/11/2023, 3:40 PMStefan Oltmann
12/11/2023, 3:42 PMMarcin Wisniowski
12/11/2023, 3:43 PMStefan Oltmann
12/11/2023, 3:45 PMMarcin Wisniowski
12/11/2023, 3:46 PMStefan Oltmann
12/11/2023, 3:46 PMStefan Oltmann
12/11/2023, 3:48 PMMarcin Wisniowski
12/11/2023, 7:40 PMStefan Oltmann
12/11/2023, 8:26 PMMarcin Wisniowski
12/11/2023, 9:27 PMAhmed Riyadh
11/06/2024, 3:57 PM-keep class javax.xml.** { *; }
FYI: This is part of the JDK modules and usually not part of your application code so you should include a reference to your JDK instead to avoid unexpected issues thay are difficult to track. See https://github.com/ktorio/ktor-documentation/blob/3.0.0/codeSnippets%2Fsnippets%2Fproguard%2FREADME.md Also it looks like you're keeping some classes (excluding them from minimization) which might make the bundle size bigger, usually we keep them in case that package heavily depends on reflections and dynamic library loading.
Marcin Wisniowski
11/06/2024, 4:04 PMyou should include a reference to your JDK insteadWhat do you mean by this?
Ahmed Riyadh
11/06/2024, 9:09 PMMarcin Wisniowski
11/06/2024, 9:16 PM-keep class javax.xml
.