Как видно из заголовков, я пытаюсь создать баннер admob поверх webView, но приложение продолжает падать и останавливаться
Я пытался добавить ориентацию макета, но это не сработало
Спасибо вам, ребята, за помощь
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity"
android:orientation="horizontal">
<WebView
android:id="@+id/mainWebView"
android:layout_width="match_parent"
android:layout_height="fill_parent" />
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-3940256099942544/6300978111">
</com.google.android.gms.ads.AdView>
</LinearLayout>