Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [IJ]> last android:proguard
- [debug] ###
- [debug] # Generic proguard options useful in non-release builds
- [debug] ###
- [debug] -dontobfuscate
- [debug]
- [debug] -renamesourcefileattribute SourceFile
- [debug] -keepattributes SourceFile,LineNumberTable,Signature
- [debug]
- [debug] -flattenpackagehierarchy
- [debug]
- [debug] -optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*,!code/allocation/variable
- [debug]
- [debug] -dontnote android.support.**
- [debug] -dontnote org.apache.http.**
- [debug] -dontnote android.net.http.**
- [debug] -dontnote android.annotation.**
- [debug]
- [debug] -dontnote com.android.vending.licensing.**
- [debug] -dontnote com.google.vending.licensing.**
- [debug]
- [debug] # For debugIncludesTests
- [debug] -keep class * extends junit.framework.TestCase { *; }
- [debug] -keepclasseswithmembers class * { @org.junit.** *; }
- [debug] -dontwarn junit.**
- [debug] -dontnote junit.**
- [debug] -dontwarn org.junit.**
- [debug] -dontnote org.junit.**
- [debug] -dontwarn org.hamcrest.**
- [debug] -dontwarn com.squareup.**
- [debug] -dontnote org.hamcrest.**
- [debug] -keep class android.support.test.** { *; }
- [debug]
- [debug] ###
- [debug] # Scala-specific proguard config
- [debug] ###
- [debug] # keep Dynamic because proguard cache fails to handle it gracefully
- [debug] -keep class scala.Dynamic { *; }
- [debug] -dontnote scala.concurrent.util.Unsafe
- [debug] -dontnote scala.Enumeration**
- [debug] -dontnote scala.ScalaObject
- [debug] -dontnote org.xml.sax.EntityResolver
- [debug] -dontnote scala.concurrent.forkjoin.**
- [debug] -dontwarn scala.beans.ScalaBeanInfo
- [debug] -dontwarn scala.concurrent.**
- [debug] -dontnote scala.reflect.**
- [debug] -dontwarn scala.reflect.**
- [debug] -dontwarn scala.sys.process.package$
- [debug] -dontwarn **$$anonfun$*
- [debug] -dontwarn scala.collection.immutable.RedBlack$Empty
- [debug] -dontwarn scala.tools.**,plugintemplate.**
- [debug]
- [debug] -keep public class scala.reflect.ScalaSignature
- [debug] # This is gone in 2.11
- [debug] -keep public interface scala.ScalaObject
- [debug]
- [debug] -keepclassmembers class * {
- [debug] ** MODULE$;
- [debug] }
- [debug]
- [debug] -keep class scala.collection.SeqLike {
- [debug] public java.lang.String toString();
- [debug] }
- [debug]
- [debug] -keepclassmembernames class scala.concurrent.forkjoin.ForkJoinPool {
- [debug] long eventCount;
- [debug] int workerCounts;
- [debug] int runControl;
- [debug] scala.concurrent.forkjoin.ForkJoinPool$WaitQueueNode syncStack;
- [debug] scala.concurrent.forkjoin.ForkJoinPool$WaitQueueNode spareStack;
- [debug] }
- [debug]
- [debug] -keepclassmembernames class scala.concurrent.forkjoin.ForkJoinWorkerThread {
- [debug] int base;
- [debug] int sp;
- [debug] int runState;
- [debug] }
- [debug]
- [debug] -keepclassmembernames class scala.concurrent.forkjoin.ForkJoinTask {
- [debug] int status;
- [debug] }
- [debug]
- [debug] -keepclassmembernames class scala.concurrent.forkjoin.LinkedTransferQueue {
- [debug] scala.concurrent.forkjoin.LinkedTransferQueue$PaddedAtomicReference head;
- [debug] scala.concurrent.forkjoin.LinkedTransferQueue$PaddedAtomicReference tail;
- [debug] scala.concurrent.forkjoin.LinkedTransferQueue$PaddedAtomicReference cleanMe;
- [debug] }
- [debug] # This is a configuration file for ProGuard.
- [debug] # http://proguard.sourceforge.net/index.html#manual/usage.html
- [debug] #
- [debug] # This file is no longer maintained and is not used by new (2.2+) versions of the
- [debug] # Android plugin for Gradle. Instead, the Android plugin for Gradle generates the
- [debug] # default rules at build time and stores them in the build directory.
- [debug]
- [debug] -dontusemixedcaseclassnames
- [debug] -dontskipnonpubliclibraryclasses
- [debug] -verbose
- [debug]
- [debug] # Optimization is turned off by default. Dex does not like code run
- [debug] # through the ProGuard optimize and preverify steps (and performs some
- [debug] # of these optimizations on its own).
- [debug] -dontoptimize
- [debug] -dontpreverify
- [debug] # Note that if you want to enable optimization, you cannot just
- [debug] # include optimization flags in your own project configuration file;
- [debug] # instead you will need to point to the
- [debug] # "proguard-android-optimize.txt" file instead of this one from your
- [debug] # project.properties file.
- [debug]
- [debug] -keepattributes *Annotation*
- [debug] -keep public class com.google.vending.licensing.ILicensingService
- [debug] -keep public class com.android.vending.licensing.ILicensingService
- [debug]
- [debug] # For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
- [debug] -keepclasseswithmembernames class * {
- [debug] native <methods>;
- [debug] }
- [debug]
- [debug] # keep setters in Views so that animations can still work.
- [debug] # see http://proguard.sourceforge.net/manual/examples.html#beans
- [debug] -keepclassmembers public class * extends android.view.View {
- [debug] void set*(***);
- [debug] *** get*();
- [debug] }
- [debug]
- [debug] # We want to keep methods in Activity that could be used in the XML attribute onClick
- [debug] -keepclassmembers class * extends android.app.Activity {
- [debug] public void *(android.view.View);
- [debug] }
- [debug]
- [debug] # For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations
- [debug] -keepclassmembers enum * {
- [debug] public static **[] values();
- [debug] public static ** valueOf(java.lang.String);
- [debug] }
- [debug]
- [debug] -keepclassmembers class * implements android.os.Parcelable {
- [debug] public static final android.os.Parcelable$Creator CREATOR;
- [debug] }
- [debug]
- [debug] -keepclassmembers class **.R$* {
- [debug] public static <fields>;
- [debug] }
- [debug]
- [debug] # The support library contains references to newer platform versions.
- [debug] # Don't warn about those in case this app is linking against an older
- [debug] # platform version. We know about them, and they are safe.
- [debug] -dontwarn android.support.**
- [debug]
- [debug] # Understand the @Keep support annotation.
- [debug] -keep class android.support.annotation.Keep
- [debug]
- [debug] -keep @android.support.annotation.Keep class * {*;}
- [debug]
- [debug] -keepclasseswithmembers class * {
- [debug] @android.support.annotation.Keep <methods>;
- [debug] }
- [debug]
- [debug] -keepclasseswithmembers class * {
- [debug] @android.support.annotation.Keep <fields>;
- [debug] }
- [debug]
- [debug] -keepclasseswithmembers class * {
- [debug] @android.support.annotation.Keep <init>(...);
- [debug] }
- [debug] # view res/layout/fragment_position_generator_editor.xml #generated:1
- [debug] -keep class android.support.constraint.ConstraintLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/design_bottom_navigation_item.xml #generated:26
- [debug] -keep class android.support.design.internal.BaselineLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/design_navigation_item.xml #generated:17
- [debug] -keep class android.support.design.internal.NavigationMenuItemView { <init>(...); }
- [debug]
- [debug] # view res/layout/design_navigation_menu.xml #generated:17
- [debug] -keep class android.support.design.internal.NavigationMenuView { <init>(...); }
- [debug]
- [debug] # view res/layout/design_layout_snackbar_include.xml #generated:18
- [debug] -keep class android.support.design.internal.SnackbarContentLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:11
- [debug] -keep class android.support.design.widget.AppBarLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/design_text_input_password_icon.xml #generated:18
- [debug] -keep class android.support.design.widget.CheckableImageButton { <init>(...); }
- [debug]
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:2
- [debug] # view res/layout/design_bottom_sheet_dialog.xml #generated:26
- [debug] -keep class android.support.design.widget.CoordinatorLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:62
- [debug] # view res/layout/fragment_exercise_chooser_custom.xml #generated:15
- [debug] -keep class android.support.design.widget.FloatingActionButton { <init>(...); }
- [debug]
- [debug] # view res/layout/design_layout_snackbar.xml #generated:18
- [debug] # view sw600dp-v13/res/layout-sw600dp-v13/design_layout_snackbar.xml #generated:18
- [debug] -keep class android.support.design.widget.Snackbar$SnackbarLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:35
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:41
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:47
- [debug] -keep class android.support.design.widget.TabItem { <init>(...); }
- [debug]
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:30
- [debug] -keep class android.support.design.widget.TabLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/activity_exercise_chooser.xml #generated:2
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:56
- [debug] -keep class android.support.v4.view.ViewPager { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_alert_dialog_material.xml #generated:41
- [debug] -keep class android.support.v4.widget.NestedScrollView { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_alert_dialog_button_bar_material.xml #generated:43
- [debug] # view res/layout/abc_alert_dialog_material.xml #generated:52
- [debug] # view res/layout/abc_alert_dialog_material.xml #generated:66
- [debug] # view res/layout/abc_alert_dialog_title_material.xml #generated:56
- [debug] -keep class android.support.v4.widget.Space { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_select_dialog_material.xml #generated:23
- [debug] -keep class android.support.v7.app.AlertController$RecycleListView { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_action_menu_item_layout.xml #generated:17
- [debug] -keep class android.support.v7.view.menu.ActionMenuItemView { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_expanded_menu_layout.xml #generated:17
- [debug] -keep class android.support.v7.view.menu.ExpandedMenuView { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_list_menu_item_layout.xml #generated:17
- [debug] # view res/layout/abc_popup_menu_item_layout.xml #generated:17
- [debug] -keep class android.support.v7.view.menu.ListMenuItemView { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_screen_toolbar.xml #generated:27
- [debug] # view v26/res/layout-v26/abc_screen_toolbar.xml #generated:27
- [debug] -keep class android.support.v7.widget.ActionBarContainer { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_action_mode_bar.xml #generated:19
- [debug] # view res/layout/abc_screen_toolbar.xml #generated:43
- [debug] # view v26/res/layout-v26/abc_screen_toolbar.xml #generated:44
- [debug] -keep class android.support.v7.widget.ActionBarContextView { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_screen_toolbar.xml #generated:17
- [debug] # view v26/res/layout-v26/abc_screen_toolbar.xml #generated:17
- [debug] -keep class android.support.v7.widget.ActionBarOverlayLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_action_menu_layout.xml #generated:17
- [debug] -keep class android.support.v7.widget.ActionMenuView { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_activity_chooser_view.xml #generated:19
- [debug] -keep class android.support.v7.widget.ActivityChooserView$InnerLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_alert_dialog_material.xml #generated:18
- [debug] -keep class android.support.v7.widget.AlertDialogLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_alert_dialog_button_bar_material.xml #generated:26
- [debug] -keep class android.support.v7.widget.ButtonBarLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_screen_content_include.xml #generated:19
- [debug] -keep class android.support.v7.widget.ContentFrameLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_alert_dialog_title_material.xml #generated:45
- [debug] -keep class android.support.v7.widget.DialogTitle { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_screen_simple_overlay_action_mode.xml #generated:23
- [debug] -keep class android.support.v7.widget.FitWindowsFrameLayout { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_dialog_title_material.xml #generated:22
- [debug] # view res/layout/abc_screen_simple.xml #generated:17
- [debug] -keep class android.support.v7.widget.FitWindowsLinearLayout { <init>(...); }
- [debug]
- [debug] # view land/res/layout-land/activity_playing.xml #generated:84
- [debug] # view res/layout/activity_playing.xml #generated:88
- [debug] # view res/layout/fragment_exercise_chooser_custom.xml #generated:9
- [debug] # view res/layout/fragment_exercise_chooser_predefined.xml #generated:9
- [debug] -keep class android.support.v7.widget.RecyclerView { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_search_view.xml #generated:75
- [debug] -keep class android.support.v7.widget.SearchView$SearchAutoComplete { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_screen_toolbar.xml #generated:36
- [debug] # view res/layout/activity_position_generator_editor.xml #generated:18
- [debug] # view v26/res/layout-v26/abc_screen_toolbar.xml #generated:37
- [debug] -keep class android.support.v7.widget.Toolbar { <init>(...); }
- [debug]
- [debug] # view res/layout/abc_screen_simple.xml #generated:25
- [debug] # view res/layout/abc_screen_simple_overlay_action_mode.xml #generated:32
- [debug] -keep class android.support.v7.widget.ViewStubCompat { <init>(...); }
- [debug]
- [debug] # view AndroidManifest.xml #generated:18
- [debug] -keep class com.loloof64.android.basicchessendgamestrainer.ExerciseChooserActivity { <init>(...); }
- [debug]
- [debug] # view AndroidManifest.xml #generated:30
- [debug] -keep class com.loloof64.android.basicchessendgamestrainer.HelpActivity { <init>(...); }
- [debug]
- [debug] # view AndroidManifest.xml #generated:11
- [debug] -keep class com.loloof64.android.basicchessendgamestrainer.MyApplication { <init>(...); }
- [debug]
- [debug] # view AndroidManifest.xml #generated:27
- [debug] -keep class com.loloof64.android.basicchessendgamestrainer.PlayingActivity { <init>(...); }
- [debug]
- [debug] # view AndroidManifest.xml #generated:31
- [debug] -keep class com.loloof64.android.basicchessendgamestrainer.PositionGeneratorEditorActivity { <init>(...); }
- [debug]
- [debug] # view land/res/layout-land/activity_playing.xml #generated:10
- [debug] # view res/layout/activity_playing.xml #generated:10
- [debug] -keep class com.loloof64.android.basicchessendgamestrainer.playing_activity.PlayableAgainstComputerBoardComponent { <init>(...); }
- [debug]
- [debug] -keepattributes *Annotation*
- [debug]
- [debug] -keepclassmembers enum android.arch.lifecycle.Lifecycle$Event {
- [debug] <fields>;
- [debug] }
- [debug]
- [debug] -keep class * implements android.arch.lifecycle.LifecycleObserver {
- [debug] }
- [debug]
- [debug] -keep class * implements android.arch.lifecycle.GeneratedAdapter {
- [debug] <init>(...);
- [debug] }
- [debug]
- [debug] -keepclassmembers class ** {
- [debug] @android.arch.lifecycle.OnLifecycleEvent *;
- [debug] }
- [debug] # Copyright (C) 2016 The Android Open Source Project
- [debug] #
- [debug] # Licensed under the Apache License, Version 2.0 (the "License");
- [debug] # you may not use this file except in compliance with the License.
- [debug] # You may obtain a copy of the License at
- [debug] #
- [debug] # http://www.apache.org/licenses/LICENSE-2.0
- [debug] #
- [debug] # Unless required by applicable law or agreed to in writing, software
- [debug] # distributed under the License is distributed on an "AS IS" BASIS,
- [debug] # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- [debug] # See the License for the specific language governing permissions and
- [debug] # limitations under the License.
- [debug]
- [debug] # Make sure we keep annotations for ViewPager's DecorView
- [debug] -keepattributes *Annotation*
- [debug] # Copyright (C) 2016 The Android Open Source Project
- [debug] #
- [debug] # Licensed under the Apache License, Version 2.0 (the "License");
- [debug] # you may not use this file except in compliance with the License.
- [debug] # You may obtain a copy of the License at
- [debug] #
- [debug] # http://www.apache.org/licenses/LICENSE-2.0
- [debug] #
- [debug] # Unless required by applicable law or agreed to in writing, software
- [debug] # distributed under the License is distributed on an "AS IS" BASIS,
- [debug] # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- [debug] # See the License for the specific language governing permissions and
- [debug] # limitations under the License.
- [debug]
- [debug] # keep setters in VectorDrawables so that animations can still work.
- [debug] -keepclassmembers class android.support.graphics.drawable.VectorDrawableCompat$* {
- [debug] void set*(***);
- [debug] *** get*();
- [debug] }
- [debug] # Copyright (C) 2015 The Android Open Source Project
- [debug] #
- [debug] # Licensed under the Apache License, Version 2.0 (the "License");
- [debug] # you may not use this file except in compliance with the License.
- [debug] # You may obtain a copy of the License at
- [debug] #
- [debug] # http://www.apache.org/licenses/LICENSE-2.0
- [debug] #
- [debug] # Unless required by applicable law or agreed to in writing, software
- [debug] # distributed under the License is distributed on an "AS IS" BASIS,
- [debug] # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- [debug] # See the License for the specific language governing permissions and
- [debug] # limitations under the License.
- [debug]
- [debug] # CoordinatorLayout resolves the behaviors of its child components with reflection.
- [debug] -keep public class * extends android.support.design.widget.CoordinatorLayout$Behavior {
- [debug] public <init>(android.content.Context, android.util.AttributeSet);
- [debug] public <init>();
- [debug] }
- [debug]
- [debug] # Make sure we keep annotations for CoordinatorLayout's DefaultBehavior
- [debug] -keepattributes *Annotation*
- [debug] # Copyright (C) 2017 The Android Open Source Project
- [debug] #
- [debug] # Licensed under the Apache License, Version 2.0 (the "License");
- [debug] # you may not use this file except in compliance with the License.
- [debug] # You may obtain a copy of the License at
- [debug] #
- [debug] # http://www.apache.org/licenses/LICENSE-2.0
- [debug] #
- [debug] # Unless required by applicable law or agreed to in writing, software
- [debug] # distributed under the License is distributed on an "AS IS" BASIS,
- [debug] # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- [debug] # See the License for the specific language governing permissions and
- [debug] # limitations under the License.
- [debug]
- [debug] # Prevent Parcelable objects from being removed or renamed.
- [debug] -keep class android.support.v4.media.** implements android.os.Parcelable {
- [debug] public static final android.os.Parcelable$Creator *;
- [debug] }
- [debug] # Copyright (C) 2015 The Android Open Source Project
- [debug] #
- [debug] # Licensed under the Apache License, Version 2.0 (the "License");
- [debug] # you may not use this file except in compliance with the License.
- [debug] # You may obtain a copy of the License at
- [debug] #
- [debug] # http://www.apache.org/licenses/LICENSE-2.0
- [debug] #
- [debug] # Unless required by applicable law or agreed to in writing, software
- [debug] # distributed under the License is distributed on an "AS IS" BASIS,
- [debug] # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- [debug] # See the License for the specific language governing permissions and
- [debug] # limitations under the License.
- [debug]
- [debug] # When layoutManager xml attribute is used, RecyclerView inflates
- [debug] #LayoutManagers' constructors using reflection.
- [debug] -keep public class * extends android.support.v7.widget.RecyclerView$LayoutManager {
- [debug] public <init>(...);
- [debug] }
- [debug] # Copyright (C) 2017 The Android Open Source Project
- [debug] #
- [debug] # Licensed under the Apache License, Version 2.0 (the "License");
- [debug] # you may not use this file except in compliance with the License.
- [debug] # You may obtain a copy of the License at
- [debug] #
- [debug] # http://www.apache.org/licenses/LICENSE-2.0
- [debug] #
- [debug] # Unless required by applicable law or agreed to in writing, software
- [debug] # distributed under the License is distributed on an "AS IS" BASIS,
- [debug] # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- [debug] # See the License for the specific language governing permissions and
- [debug] # limitations under the License.
- [debug]
- [debug] # FragmentTransitionSupport is instantiated in support-fragment via reflection.
- [debug] -keep public class android.support.transition.FragmentTransitionSupport {
- [debug] }
- [debug]
- [debug] # Keep a field in transition that is used to keep a reference to weakly-referenced object
- [debug] -keepclassmembers class android.support.transition.ChangeBounds$* extends android.animation.AnimatorListenerAdapter {
- [debug] android.support.transition.ChangeBounds$ViewBounds mViewBounds;
- [debug] }
- [debug] -libraryjars "/home/laurent-bernabe/Android/Sdk/platforms/android-27/android.jar"
- [debug] -printmapping "/home/laurent-bernabe/Documents/Programmation/ProjetsPersos/ScalaAndroid/BasicChessEndgames/target/android/intermediates/proguard/mappings.txt"
- [debug] -injars "/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-appcompat-v7-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-support-core-utils-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-support-compat-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/android.arch.lifecycle-runtime-1.0.3/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-support-fragment-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-support-core-ui-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-support-vector-drawable-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-animated-vector-drawable-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-design-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-support-v4-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-support-media-compat-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-recyclerview-v7-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support-transition-27.0.2/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.android/sbt/exploded-aars/com.android.support.constraint-constraint-layout-1.1.0-beta4/classes.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scala-lang/scala-library/jars/scala-library-2.11.12.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.android.support/support-annotations/jars/support-annotations-27.0.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/android.arch.lifecycle/common/jars/common-1.0.3.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/android.arch.core/common/jars/common-1.0.0.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.android.support.constraint/constraint-layout-solver/jars/constraint-layout-solver-1.1.0-beta4.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.github.loloof64/chesslib/jars/chesslib-master.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.github.ghik/silencer-lib_2.11/jars/silencer-lib_2.11-0.6.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/scalameta_2.11/jars/scalameta_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/common_2.11/jars/common_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/dialects_2.11/jars/dialects_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/parsers_2.11/jars/parsers_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/inputs_2.11/jars/inputs_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/langmeta_2.11/jars/langmeta_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.trueaccord.scalapb/scalapb-runtime_2.11/jars/scalapb-runtime_2.11-0.6.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.trueaccord.lenses/lenses_2.11/jars/lenses_2.11-0.4.12.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.google.protobuf/protobuf-java/bundles/protobuf-java-3.3.1.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/io_2.11/jars/io_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/tokens_2.11/jars/tokens_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/tokenizers_2.11/jars/tokenizers_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.lihaoyi/fastparse_2.11/jars/fastparse_2.11-0.4.4.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.lihaoyi/fastparse-utils_2.11/jars/fastparse-utils_2.11-0.4.4.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/com.lihaoyi/sourcecode_2.11/bundles/sourcecode_2.11-0.1.4.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/trees_2.11/jars/trees_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/quasiquotes_2.11/jars/quasiquotes_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/transversers_2.11/jars/transversers_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/.ivy2/cache/org.scalameta/semanticdb_2.11/jars/semanticdb_2.11-2.1.2.jar"(!META-INF/**,!rootdoc.txt):"/home/laurent-bernabe/Documents/Programmation/ProjetsPersos/ScalaAndroid/BasicChessEndgames/target/android/intermediates/classes.jar"(!META-INF/**,!rootdoc.txt)
- [debug] -outjars "/home/laurent-bernabe/Documents/Programmation/ProjetsPersos/ScalaAndroid/BasicChessEndgames/target/android/intermediates/proguard/classes.proguard.jar"
- java.io.IOException: Please correct the above warnings first.
- at proguard.Initializer.execute(Initializer.java:473)
- at proguard.ProGuard.initialize(ProGuard.java:222)
- at proguard.ProGuard.execute(ProGuard.java:97)
- at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
- at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
- at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
- at java.lang.reflect.Method.invoke(Method.java:498)
- at android.Proguard$.runProguard(proguard.scala:210)
- at android.Proguard$.proguard(proguard.scala:164)
- at android.Tasks$$anonfun$86.apply(tasks.scala:1064)
- at android.Tasks$$anonfun$86.apply(tasks.scala:1062)
- at scala.Function9$$anonfun$tupled$1.apply(Function9.scala:35)
- at scala.Function9$$anonfun$tupled$1.apply(Function9.scala:34)
- at scala.Function1$$anonfun$compose$1.apply(Function1.scala:47)
- at sbt.$tilde$greater$$anonfun$$u2219$1.apply(TypeFunctions.scala:40)
- at sbt.std.Transform$$anon$4.work(System.scala:63)
- at sbt.Execute$$anonfun$submit$1$$anonfun$apply$1.apply(Execute.scala:228)
- at sbt.Execute$$anonfun$submit$1$$anonfun$apply$1.apply(Execute.scala:228)
- at sbt.ErrorHandling$.wideConvert(ErrorHandling.scala:17)
- at sbt.Execute.work(Execute.scala:237)
- at sbt.Execute$$anonfun$submit$1.apply(Execute.scala:228)
- at sbt.Execute$$anonfun$submit$1.apply(Execute.scala:228)
- at sbt.ConcurrentRestrictions$$anon$4$$anonfun$1.apply(ConcurrentRestrictions.scala:159)
- at sbt.CompletionService$$anon$2.call(CompletionService.scala:28)
- at java.util.concurrent.FutureTask.run(FutureTask.java:266)
- at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:511)
- at java.util.concurrent.FutureTask.run(FutureTask.java:266)
- at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
- at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
- at java.lang.Thread.run(Thread.java:748)
- [error] (android:proguard) java.io.IOException: Please correct the above warnings first.
- [IJ]>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement