User Profile

Collapse

Profile Sidebar

Collapse
kmartin
kmartin
Last Activity: Feb 1 '17, 10:11 AM
Joined: Dec 2 '16
Location: Gerogia, USA
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • I think the answer has two angles: required functionality, and development technology stack skills needed.

    Talking about web development, in addition to diversity of languages and frameworks, assuming a framework-supported development strategy, complexity in functionality could be measured by proximity of required features to a framework-friendly implementation. The more you need to customize, the more complex developing becomes....
    See more | Go to post

    Leave a comment:


  • An SDK usually only includes the necessary building blocks for developing applications. This includes frameworks, libraries, header files, whatever as well as compilers, debuggers, and various other tools, such as profilers, etc.

    An IDE simply makes access to those more user-friendly (or integrated, hence the name), if you will. However, Eclipse for example comes with its own compiler as well.
    See more | Go to post

    Leave a comment:


  • You're trying to use model as an array. You should declare your model as an array first in your init call. It should be

    Code:
    $scope.labels1 = [], $scope.data1 = [];
    Make sure this variable has declared in your controller init call. After that you've iterated the values and push the results in the data then you needn't to iterate again. Try below snippet

    Code:
    for (var i = 0; i < samplelineJsonData.length; i++)
    ...
    See more | Go to post

    Leave a comment:


  • I would like to list some of them below

    Notification payload - 2KB in GCM, 4KB in APNs.
    Saves 1 notification/app (APNs), 100 per device (GCM). This is done when a device is offline.
    GCM supports multiple platforms.
    Acknowledgement cannot be sent in APNs, but is possible in GCM when implementing with XMPP.
    FCM is a newer version of GCM, and have almost same properties.
    See more | Go to post

    Leave a comment:


  • You should find related documentation.

    Saving the state from outside involve saving the whole process including OS resources in use. And relaunch with restoration means exact process restoration, including OS resources, which can be pretty complicated and almost impossible.

    Though I'm not sure about this.
    See more | Go to post

    Leave a comment:


  • kmartin
    replied to Mobile web app development
    If you want to hire dedicated developer or want to outsource this project, This is a offer for you. We are having Christmas offer.
    Read the full offer here: goo.gl/8EQoPE
    See more | Go to post

    Leave a comment:


  • Hi Ashish,
    The open source Android iBeacon Library will allow you to do this.

    Here is a basic code sample:

    public class MonitoringActiv ity extends Activity implements IBeaconConsumer {
    protected static final String TAG = "RangingActivit y";
    private IBeaconManager iBeaconManager = IBeaconManager. getInstanceForA pplication(this );

    @Override
    protected void onCreate(Bundle...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...