Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Maybe this helps you,</p> <p>according to ProGuard docs:</p> <blockquote> <p>Warning: can't write resource ... Duplicate zip entry Your input jars contain multiple resource files with the same name. ProGuard continues copying the resource files as usual, skipping any files with previously used names. Once more, the warning may be an indication of some problem though, so it's advisable to remove the duplicates. A convenient way to do so is by specifying filters on the input jars. There is no option to switch off these warnings.</p> </blockquote> <p>You have a duplicate resource entry "IInAppBillingService$Stub$Proxy.class" in your library jar android_6558830429113811056.jar</p> <p>You can try using <code>-outjars</code> </p> <blockquote> <p>-outjars class_path Specifies the names of the output jars (or wars, ears, zips, or directories). The processed input of the preceding -injars options will be written to the named jars. This allows you to collect the contents of groups of input jars into corresponding groups of output jars. In addition, the output entries can be filtered, as explained in the filters section. Each processed class file or resource file is then written to the first output entry with a matching filter, within the group of output jars.</p> <p>You must avoid letting the output files overwrite any input files. For better readability, class path entries can be specified using multiple -outjars options. Without any -outjars options, no jars will be written.</p> </blockquote> <p>or if you are using <code>-injars</code> you can configure a <a href="http://proguard.sourceforge.net/manual/examples.html#filtering" rel="nofollow">filter</a></p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload