ERROR: /Users/guibrilramde/MyFirstUdemy/app/src/main/res/layout/activity_main.xml:19: AAPT: error: '@tools:sample/avatars' is incompatible with attribute src (attr) reference|color.
<ImageView
android:id="@+id/imageExample"
android:layout_width="300dp"
android:layout_height="300dp"
android:scaleType="fitCenter"
android:src="@tools:sample/avatars"
tools:srcCompat="@drawable/ab" />
Your two lines
android:src="@tools:sample/avatars"andtools:srcCompat="@drawable/ab", which both determine which picture is shown, are contradictory. Delete both and writeandroid:src="@drawable/ab"instead. Theab.pngimage must of course be in theres/drawablefolder.