我正在尝试在调试/发布模式下运行我的应用程序。但是存在一个问题,即app中的调试模式没有传播到库。这是Android Studio和gradle中的已知问题。在找到解决方案时,在SO中遇到了this。实现它时,在步骤1之后,我收到以下错误。
/home/geetha/geethaNew/App/stethocloud/build/intermediates/bundles/release/res/layout/fragment_stetho_connect.xml
Error:(72, 20) No resource found that matches the given name (at 'style' with value '@style/Base.Widget.AppCompat.Button.Colored').
Error:(62, 20) No resource found that matches the given name (at 'style' with value '@style/Base.Widget.AppCompat.ProgressBar').
相应的布局元素是
<ProgressBar
android:id="@+id/connectProgressBar"
style="@style/Base.Widget.AppCompat.ProgressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal|bottom"
android:layout_marginBottom="24dp"
android:indeterminate="true"
android:visibility="invisible" />
有人可以指出这里发生了什么以及如何解决这个问题?到目前为止,这对我来说是一个显示阻止。
由于