We provide complete mobile and web apps development solutions

Thursday, January 12, 2017

CORS is if your trying to access from one domain - another domain.

XMLHttpRequest cannot load https://www.test.com;.
 No 'Access-Control-Allow-Origin' header is present
 on the requested resource. Origin 'http://127.0.0.1:55427'
 is therefore not allowed access.
CORS is if your trying to access from one domain  - another domain.
Try withJSONP. JSONP should work , because it  uses the GET method.
Try this
var url = "https://test.com";
$http({
    method: 'JSONP',
    url: url
}).
success(function(status) {
    //success
}).
error(function(status) {
    //fails
});

Tuesday, December 20, 2016

Error while launching the activity Android Studio

Hi ,
I am working with android studio with multiple applications, i got an issue after changing the package name and running the application through android studio. I could not able to run.....

I restarted the studio, but not resolved.

I followed these steps.

1. First remove the directory
~/.gradle/caches/ I am using mac, so open terminal,

rm -rf ~/.gradle/caches/ - It removes

2. Click on sync project with gradle files icon in android studio.

3. Run the project again.

It works for me.

Sunday, November 13, 2016

ionic.bundle.js:26794 TypeError: $q.defer is not a function

ionic.bundle.js:26794 TypeError: $q.defer is not a function

var defer = $q.defer();

Tuesday, November 8, 2016

1. Which framework is best for mobile hybrid application development
Angular
ionic
ionic 2

Score =
Correct answers:

Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void org.apache.cordova.CordovaPlugin.privateInitialize(java.lang.String, org.apache.cordova.CordovaInterface, org.apache.cordova.CordovaWebView

Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'void org.apache.cordova.CordovaPlugin.privateInitialize(java.lang.String, org.apache.cordova.CordovaInterface, org.apache.cordova.CordovaWebView, org.apache.cordova.CordovaPreferences)' on a null object reference

Monday, November 7, 2016

Session 'android': Error Launching activity

Session 'android': Error Launching activity

Saturday, October 1, 2016

set org.gradle.jvmargs=-Xmx1536M in the project gradle.properties

To run dex in process, the Gradle daemon needs a larger heap.
It currently has 1024 MB.
For faster builds, increase the maximum heap size for the Gradle daemon to at least 1536 MB.
To do this set org.gradle.jvmargs=-Xmx1536M in the project gradle.properties.
For more information see https://docs.gradle.org/current/userguide/build_environment.html

Online Training

Your Name :
Your Email: (required)
Your Message: (required)

Powered by Blogger.

Recent Posts

Find Us On Facebook

Popular Posts