When I use ProGuard, what is the difference between com.example.**and com.example.**{*;}? For example, what happens for each case?
com.example.**
com.example.**{*;}
-keep class com.example.** -keep class com.example.** { *; }
-keep class com.example. **
Keep all classes in package com.example
com.example
-keep class com.example. ** {*; }
Keep all inner classes in package com.example
Source: https://habr.com/ru/post/1628772/More articles:Android / RxJava How to link network requests and try again - javaHow to determine the storage quota used by each google service? - google-drive-sdkAWS AutoScaling with Static IPs - amazon-web-servicesAndroid acceleration - conversion to user coordinate system - androidWhy does funciton get not working and skip user input? - cC ++: find the maximum integer in an array of submatrices - c ++How to override unit_amount_in_cents for subscription? - recurlyWhat is the most efficient way to reuse an iterator in Rust? - iteratorSend php array to jquery ajax and create each loop from this array - javascriptInvalid stream root page out of address range - iosAll Articles