Hello everyone 
I have spent the last week coding a really nice and custom html mobile website. My original thought was that I was going to use admob like adsense and just get html code then build it with phonegap. Then I later realized that admob got rid of that about 3 years ago ;(. So I spent the last two days searching and trying for myself and after huge headaches and hours of getting no where I decided to make this thread.
What I need:
a simple source code app that only shows a webbrowser with no url bar.(I want the user to think they are using an app)
The app must have admob in it, I will put in my id
I need the source for eclipse not the apk then I will put in my stuff like the link and id
Here is an example I found online:

here is some example code (like 25-50% of it
)
I am buying from the lowest price and first posters, I need this done today/ ASAP
Thanks!
I have spent the last week coding a really nice and custom html mobile website. My original thought was that I was going to use admob like adsense and just get html code then build it with phonegap. Then I later realized that admob got rid of that about 3 years ago ;(. So I spent the last two days searching and trying for myself and after huge headaches and hours of getting no where I decided to make this thread.
What I need:
a simple source code app that only shows a webbrowser with no url bar.(I want the user to think they are using an app)
The app must have admob in it, I will put in my id
I need the source for eclipse not the apk then I will put in my stuff like the link and id
Here is an example I found online:

here is some example code (like 25-50% of it
Code:
importandroid.os.Bundle;[COLOR=#333333][FONT=Consolas]import org.apache.cordova.*;[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas]import android.widget.LinearLayout; [/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas]import com.google.ads.*;[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas]public class MainActivity extends DroidGap {[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] private static final String MY_AD_UNIT_ID = "YOUR_AD_UNIT_IT"; [/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] private AdView adView;[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] @Override[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] public void onCreate(Bundle savedInstanceState) {[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] // Loading your HTML as per PhoneGap tutorial[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] super.onCreate(savedInstanceState);[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] super.loadUrl("[URL]file:///android_asset/www/index.html[/URL]");[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] // Adding AdMob banner[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] adView = new AdView(this, AdSize.BANNER, MY_AD_UNIT_ID); [/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] LinearLayout layout = super.root; [/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] layout.addView(adView); [/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] adView.loadAd(new AdRequest());[/FONT][/COLOR]
[COLOR=#333333][FONT=Consolas] } [/FONT][/COLOR]
[COLOR=black][FONT=Consolas]}
[/FONT][/COLOR]
I am buying from the lowest price and first posters, I need this done today/ ASAP
Thanks!