adMod with phonegap cloud build - javascript

I have an HTML5&JavaScript application that I am building using PhoneGap's cloud build. I can't find a way to implement adMob into the app without using Java in some way.
I built the app using notpadd++, and and the PhoneGap cloud with github and i don't have a single line of Java. My research showed me that using AdSense on a mobile application is not allowed, so I'm in a bit of a pickle...
I'm on PhoneGap version 3.1.0.

There are some plugins that you can find through the docs at Phonegap Build but at present there is not an easy way to do this.
This is one of the things that many users have been asking for (including me). Please go to the PGB support community and add your voice to those who want this.

Related

It is possible to create a Desktop app using Java and Electron JS?

I'd like to build a Desktop application for drawing. I've already the model and controller written in Java and now, i'm gonna make the view. I don't want to use JavaFX for the ForntEnd of my application. Instead, I'd like to use Electron... it is possible? and how?
If I'm saying stupid things please forgive me and tell my what is wrong with my idea!
Yes, you can build a desktop app using Electron. Any Electron website app could be made to run as a Desktop application. I recommend checking out some of the apps on Electron's website: https://www.electronjs.org/apps
Some of them which are open source have links to their GitHub repositories which would be useful to see how they operate. A simple one to start with would be the Trivia Bot one they have on the page I mentioned: https://github.com/Trivia-Bot-Apps/trivia-desktop
As for how to do it yourself, I'd recommend searching YouTube or other resources for Electron tutorials as there are many. Even if they are showing how to create an Electron app in a web browser you can still follow the majority of their process for making a desktop application.

Expose Android and iOS native code SDK to Javascript in Ionic

I actually found a third party plugin that I want to use on one of my project. The goal is to create an Ionic application for that to avoid wasting time coding in native for both Android and iOS.
The problem is that the plugin I found has only SDK for Android and iOS. After a discussion on their forum, a technical guy told me it was possible for me to use that on Ionic by creating a plugin to expose the code to the Javascript.
Do you know where I could start ?
Do you have any tips or advice on how I could do that ?
Thanks !
I actually found a third party plugin that I want to use on one of my project.
By plugin I understand you mean a Cordova plugin. A link would be nice.
a technical guy told me it was possible for me to use that on Ionic by creating a plugin to expose the code to the Javascript.
By creating a plugin to expose the code (of the Cordova plugin?) to javascript, I understand you want to make an Ionic wrapper for that Cordova plugin.
If so, first check that your plugin doesn't already have a Cordova wrapper in the list of those over at Ionic Native.
If not, then you can have a look at how all the other wrappers are already written and get started from there.
If you actually want to create your own cordova plugin, then here's a great tutorial by Ionic's CEO to help you out.

Microsoft EWS with Apache Cordova

I am trying to build an app using Apache Cordova that involves using Microsoft EWS to access my Outlook account.
I currently have a working app using MVC but I cannot add similar references to the Cordova project in order for me to make similar calls to EWS. Are there any javascript API's or anything that I can add to be able to gain access to the functions I need?
thanks
For your question about JavaScript api availability with EWS, the answer is NO, there is no official library available. I have published a port of official ews-managed-api from c# to JavaScript on npm named ews-javascript-api for nodejs community, it can be modified to used with cordova (MIT license).
If you can be more specific to what exactly you want to achieve in JavaScript, I can provide code sample.

is there a way to integrate an IDE with rails?

I wanted to provide an online terminal or an online IDE to my rails app.
Is there a way to integrate any of the present IDE's to integrate with rails or to create a new one? I cannot find anything related to this on Google.
It is very much possible as there are sites using online IDE's like codecademy, codelearn etc.
Check https://koding.com/Home . It gives you the necessary environment to start developing your apps, run them, collaborate.

Do I need to learn Java to create an android app using phoneGap?

I am a web developer (PHP,javascript,html5) never created an android app with Java or any other language. My question is, do I need to learn Java to create apps for android and what should I know to create an awesome android app using phoneGap.
No unless you need at some step to code a native plugin.
But it would be useful for you to understand how phonegap works behind.
No. All you need to know are the basics of the language like including namespaces/imports, setting up some configuration files and some general familiarity with using IDEs.
You also won't need Java unless you are implementing some native functionality that is not provided by the PhoneGap API. For most simple apps a working knowledge of JavaScript, HTML and CSS will suffice.
you most probably won't need much of Java knowledge (if any), since PhoneGap applications are basically websites with (an optional) extra bit of JavaScript controlling the device
the only thing you might need Java for is when you upgrade your Cordova versions and you have some old plugins which need to update due to code deprecation

Categories

Resources