I have integrated inmobi in my android app. Ads are not coming.
Given below in my MainActivity code and the xml file.
InMobiSdk.init(MainActivity.this, "5a41560ee01d46c5a38fcd4e56236ff7");
InMobiSdk.setLogLevel(InMobiSdk.LogLevel.DEBUG);
InMobiBanner banner = (InMobiBanner)findViewById(R.id.banner);
banner.load();
The code for XML file is as follows
<com.inmobi.ads.InMobiBanner
android:id="@+id/banner"
android:layout_width="320dp"
android:layout_height="50dp"
ads:placementId="1479424179204"
ads:refreshInterval="60"/>
Can any one help me out where I am going wrong. I have specified all the permissions required in manifest file.
Please help me out