我正在尝试将RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm
RUN yum -y localinstall google-chrome-stable_current_x86_64.rpm && yum clean all
模板添加到我的应用中。我已经在代码段下面添加了以下代码段:
NativeAdViewNewsFeed
以及以下部分代码添加到我的 <RelativeLayout android:layout_width="match_parent"
android:layout_height="match_parent">
<com.appodeal.ads.native_ad.views.NativeAdViewNewsFeed
android:id="@+id/native_ad_view_news_feed"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp">
</com.appodeal.ads.native_ad.views.NativeAdViewNewsFeed>
</RelativeLayout>
:
MainActivity.java
但是我的应用程序崩溃了。在SDK初始化之前,我已禁用了autoCache。我该如何解决该问题?谢谢。