While we wait for the Android Market to support paid apps, AdMob have come out with a product for Android that allows developers to get paid for putting ads in their apps. Below is a quick start guide for now to include AdMob ads into your app.
As suggested in the AdMob blog announcement sign up, fill in all the forms and finally download the SDK.
Add the following permissions to your AndroidManifest.xml
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
Add your publisher id (you can find this under Sites & Apps) inside the application tag of AndroidManifest.xml
<application>
............
<meta-data android:value="xxxxxxxxxxx" android:name="ADMOB_PUBLISHER_ID" />
............
</application>
Place the AdMob SDK jar file (currently admob-sdk-1.0-android.jar) into a lib folder in your project
Add the ad view to your layouts
<com.admob.android.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
/>