The app is on my phone running great! Thanks for your help! The only thing is, why does my mobile website keep scrolling down, and never displaying my page navigation buttons? How can I fix that?
The app is on my phone running great! Thanks for your help! The only thing is, why does my mobile website keep scrolling down, and never displaying my page navigation buttons? How can I fix that?
Nevermind, it's working pretty well now. Not sure why it was doing that before. You guys are great! Wish my php hosting provider was as awesome as you. So if I would like to release the app on everything except iOS (since I don't have a Mac to install Xcode on....yet..) how would I go about doing that?
Joe,
You can export app for Android and source code for Visual Studio and browser...
So I would just export the HTML/CSS/JS files and compress them into a .zip file, then upload them using https://build.phonegap.com/apps ?
Also when I run the app with the recent changes (i.e. the Google Adwords mobile ads I've embedded in the HTML Panels on each page, I get a fatal error. Something like: Application Error 400: Bad Request (http://googleads.g.doubleclick.net/pa... etc...
Do you know what might be causing this?
Also, I was trying to embed a Twitter widget below the Spotify playlist on the "Music" page. Is this possible? I'm referring to a widget that displays mentions and has an input box to tweet, or perhaps a launch service pop up that redirects them to a twitter "tweet" service, where they may mention my twitter handle and suggest tracks to add to the Spotify Collaborative playlist above. Is there a way to do what I'm asking?
Thank you so much for the help so far!
Please let me know if you need a screenshot of the error. Thanks!
Joe,
Yes, please attach it.
Strangely, it doesn't happen in the mobile browser or the Chrome Windows browser. The ad simply doesn't show. But when I run it on my android phone, I get an error. I don't know how to take a screenshot on my android device, so I'll just transcribe the error text:
Application Error
400: Bad Request (http:googleads.g.doubleclick.net/pagead/ads?format=nanxnan&output=html&ea=0&flash=0&url=fil%3A%2FConnect.html&dt=1364315638575&shv=r20130321&cbv=r20130206&saldr=1&correlator=1364315639077&frm=20&adk=4144288173&ga_vid=1067846891.1364315639&ga_fc=0&u_tz=-240&u_his=1&u_java=0&u_h=508&u_w=320&u_ah=508&u_aw=320&u_cd=32&u_nplug=0&o_nmime=0&dff=sans-serif&dfs=16&adx=0&ady=0&biw=320&bih-508&oid=3&fu=0&dtd=542)
To add Google Adsense to app you should include JS file and set parameters google_ad_client, google_ad_slot, got from Google, and parameters google_ad_width, google_ad_height that set width and height of ad block:
code<script type=”text/javascript”><!–
google_ad_client = “pub-3359632781870418“;
/* for Entrepreneur-Inspiration */
google_ad_slot = “5023533446“;
google_ad_width = 336;
google_ad_height = 280;
//–>
</script>/code
See our docs: http://www.entrepreneur-inspiration.c...
Do I add a separate javascript file, or is this in the main javascript? Then I just put:
code<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>/code
In the html panels?
The code we adviced should be placed in Panel before the following: code<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>/code
These JS can be in the same Panel component.