Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Mobile development with VS2013

Mobile development with VS2013

Scheduled Pinned Locked Moved The Lounge
androidiostoolsquestion
30 Posts 16 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • realJSOPR realJSOP

    Hmm, I found out about Apache Cordova, but this "feature" is a little presumptuous: "Use the JavaScript framework you love" I love absolutely nothing about javascript. How can anyone like anything that shows up as being spelled wrong? It's like saving you "love a Camaro". Just makes no sense to me...

    ".45 ACP - because shooting twice is just silly" - JSOP, 2010
    -----
    You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
    -----
    When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

    S Offline
    S Offline
    Stephen Gonzalez
    wrote on last edited by
    #7

    "love a Camaro"... I noticed you are moose tounge[^] man. I'm mean Mustang. :)

    1 Reply Last reply
    0
    • realJSOPR realJSOP

      It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

      ".45 ACP - because shooting twice is just silly" - JSOP, 2010
      -----
      You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
      -----
      When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

      D Offline
      D Offline
      David Knechtges
      wrote on last edited by
      #8

      We are doing something similar. We are targeting Windows Forms, ASP.NET, iOS, and Android off of the same source tree (all C#) using the Xamarin tools for the mobile stuff. Xamarin is not cheap, it is like 900 a year or something like that, but it works great. It is integrated with Visual Studio and also has its own Xamarin Studio if you want to use that. Our source code is structured so that the only differences from platform to platform is the UI source. Of course, there are different project types for each one, but we have been really successful with it. Another thing to consider with them is that Microsoft is buying them, so it might end up with being a native toolset for Visual Studio. You do need a Mac for the iOS development, unfortunately you can't get around that.

      N 1 Reply Last reply
      0
      • realJSOPR realJSOP

        It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

        ".45 ACP - because shooting twice is just silly" - JSOP, 2010
        -----
        You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
        -----
        When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

        K Offline
        K Offline
        kmoorevs
        wrote on last edited by
        #9

        We are doing a similar thing currently using a click-once app to register a device by mac/name with a client location and embed the registration code in a querystring in a browser control. Now a potential client has asked if it works on a Kindle Fire. Of course the sales person said 'yes'. I've downloaded the Android Studio for Windows, but I haven't installed it yet. Luckily, I also have a Kindle Fire that I never use...I'm not sure what to expect either... :laugh:

        "Go forth into the source" - Neal Morse

        1 Reply Last reply
        0
        • realJSOPR realJSOP

          It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

          ".45 ACP - because shooting twice is just silly" - JSOP, 2010
          -----
          You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
          -----
          When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

          E Offline
          E Offline
          Eytukan
          wrote on last edited by
          #10

          If you need nice looking/doing App, dont even look into cordova. We did try few things but I got totally bored with it. I'd prefer three different environment and do native dev. The app you mentioned looks fairly simple , you can do with : *VS2013+WindowsPhone SDK *Android Studio *Xcode/Objective C

          Starting to think people post kid pics in their profiles because that was the last time they were cute - Jeremy.

          realJSOPR 1 Reply Last reply
          0
          • realJSOPR realJSOP

            I didn't even know there WAS a mobile forum.

            ".45 ACP - because shooting twice is just silly" - JSOP, 2010
            -----
            You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
            -----
            When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #11

            Seriously? You've never looked at the menu to the left, or used the dropdowns at the top?

            realJSOPR 1 Reply Last reply
            0
            • E Eytukan

              If you need nice looking/doing App, dont even look into cordova. We did try few things but I got totally bored with it. I'd prefer three different environment and do native dev. The app you mentioned looks fairly simple , you can do with : *VS2013+WindowsPhone SDK *Android Studio *Xcode/Objective C

              Starting to think people post kid pics in their profiles because that was the last time they were cute - Jeremy.

              realJSOPR Offline
              realJSOPR Offline
              realJSOP
              wrote on last edited by
              #12

              At this point, it doesn't appear to need to be "nice looking".

              ".45 ACP - because shooting twice is just silly" - JSOP, 2010
              -----
              You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
              -----
              When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

              1 Reply Last reply
              0
              • D David Knechtges

                We are doing something similar. We are targeting Windows Forms, ASP.NET, iOS, and Android off of the same source tree (all C#) using the Xamarin tools for the mobile stuff. Xamarin is not cheap, it is like 900 a year or something like that, but it works great. It is integrated with Visual Studio and also has its own Xamarin Studio if you want to use that. Our source code is structured so that the only differences from platform to platform is the UI source. Of course, there are different project types for each one, but we have been really successful with it. Another thing to consider with them is that Microsoft is buying them, so it might end up with being a native toolset for Visual Studio. You do need a Mac for the iOS development, unfortunately you can't get around that.

                N Offline
                N Offline
                Nish Nishant
                wrote on last edited by
                #13

                It's approximately $1000 an year per developer per platform. So if 3 devs target iOS, Android, Windows Phone, that's 3*3*1000.

                Regards, Nish


                Website: www.voidnish.com Blog: voidnish.wordpress.com

                realJSOPR 1 Reply Last reply
                0
                • N Nish Nishant

                  It's approximately $1000 an year per developer per platform. So if 3 devs target iOS, Android, Windows Phone, that's 3*3*1000.

                  Regards, Nish


                  Website: www.voidnish.com Blog: voidnish.wordpress.com

                  realJSOPR Offline
                  realJSOPR Offline
                  realJSOP
                  wrote on last edited by
                  #14

                  That's overly expensive.

                  ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                  -----
                  You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                  -----
                  When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                  N 1 Reply Last reply
                  0
                  • L Lost User

                    Seriously? You've never looked at the menu to the left, or used the dropdowns at the top?

                    realJSOPR Offline
                    realJSOPR Offline
                    realJSOP
                    wrote on last edited by
                    #15

                    Reading menus is like asking for directions, and is generally shunned with alacrity.

                    ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                    -----
                    You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                    -----
                    When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                    1 Reply Last reply
                    0
                    • realJSOPR realJSOP

                      That's overly expensive.

                      ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                      -----
                      You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                      -----
                      When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                      N Offline
                      N Offline
                      Nish Nishant
                      wrote on last edited by
                      #16

                      Microsoft acquired the company last month and there are rumors/hopes that the next version of VS will include this in the higher editions.

                      Regards, Nish


                      Website: www.voidnish.com Blog: voidnish.wordpress.com

                      M 1 Reply Last reply
                      0
                      • realJSOPR realJSOP

                        It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

                        ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                        -----
                        You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                        -----
                        When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                        J Offline
                        J Offline
                        Jacquers
                        wrote on last edited by
                        #17

                        Intel® XDK | Intel® Developer Zone[^] might be an option.

                        1 Reply Last reply
                        0
                        • realJSOPR realJSOP

                          It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

                          ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                          -----
                          You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                          -----
                          When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                          Kornfeld Eliyahu PeterK Offline
                          Kornfeld Eliyahu PeterK Offline
                          Kornfeld Eliyahu Peter
                          wrote on last edited by
                          #18

                          As today there are two options... 1. Apache Cordova - free, but uses JavaScript 2. Xamarin - cost money, but uses C#

                          Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.

                          "It never ceases to amaze me that a spacecraft launched in 1977 can be fixed remotely from Earth." ― Brian Cox

                          realJSOPR M 2 Replies Last reply
                          0
                          • realJSOPR realJSOP

                            It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

                            ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                            -----
                            You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                            -----
                            When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                            D Offline
                            D Offline
                            Denis A Stoyanov
                            wrote on last edited by
                            #19

                            It seems to be a rather simple app. I suggest you using a hybrid approach (JavaScript...). Take a look at Telerik App Builder. Their products are good. Also they have automatic submission to app stores. As far as I remember it was free and it really saves time.

                            realJSOPR 1 Reply Last reply
                            0
                            • D Denis A Stoyanov

                              It seems to be a rather simple app. I suggest you using a hybrid approach (JavaScript...). Take a look at Telerik App Builder. Their products are good. Also they have automatic submission to app stores. As far as I remember it was free and it really saves time.

                              realJSOPR Offline
                              realJSOPR Offline
                              realJSOP
                              wrote on last edited by
                              #20

                              Telerik App Builder: Wow - $1800/year? It appears like it's just a paid version Cordova...

                              ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                              -----
                              You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                              -----
                              When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                              D 1 Reply Last reply
                              0
                              • Kornfeld Eliyahu PeterK Kornfeld Eliyahu Peter

                                As today there are two options... 1. Apache Cordova - free, but uses JavaScript 2. Xamarin - cost money, but uses C#

                                Skipper: We'll fix it. Alex: Fix it? How you gonna fix this? Skipper: Grit, spit and a whole lotta duct tape.

                                realJSOPR Offline
                                realJSOPR Offline
                                realJSOP
                                wrote on last edited by
                                #21

                                At $1000 per supported platform, Xamarin is ridiculously expensive.

                                ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                                -----
                                You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                                -----
                                When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                                Kornfeld Eliyahu PeterK 1 Reply Last reply
                                0
                                • realJSOPR realJSOP

                                  Telerik App Builder: Wow - $1800/year? It appears like it's just a paid version Cordova...

                                  ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                                  -----
                                  You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                                  -----
                                  When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                                  D Offline
                                  D Offline
                                  Denis A Stoyanov
                                  wrote on last edited by
                                  #22

                                  Ugh, It seems they've raised the prices. The builders was free some time ago... Sorry my bad.

                                  1 Reply Last reply
                                  0
                                  • realJSOPR realJSOP

                                    It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

                                    ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                                    -----
                                    You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                                    -----
                                    When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                                    C Offline
                                    C Offline
                                    ClockMeister
                                    wrote on last edited by
                                    #23

                                    John, Have a look at NSBasic (www.nsbasic.com). It's an outfit out of Canada that has a tool for developing to mobile devices. I haven't gotten deep into it, myself (I wrote an HP Calculator simulator in it, and it works nicely). I'm not even touching what I think it's capable of. The thing will allow you to develop to the app stores or do it by deploying the app to a server (not quite a "side-load" but it seems to work pretty well). It will develop to a number of different devices and formats and is in active development. I think these guys are really onto something, and it only costs $99, I think. It really shows some promise, IMHO. -CM

                                    1 Reply Last reply
                                    0
                                    • realJSOPR realJSOP

                                      It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

                                      ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                                      -----
                                      You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                                      -----
                                      When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                                      R Offline
                                      R Offline
                                      Richard Jones
                                      wrote on last edited by
                                      #24

                                      If you are just developing and testing but don't need to actually put it on the store, XCode lets you do that without the $99 fee now.

                                      I need an app that will automatically deliver a new BBBBBBBBaBB (beautiful blonde bimbo brandishing bountiful bobbing bare breasts and bodacious butt) every day. John Simmons / outlaw programmer

                                      1 Reply Last reply
                                      0
                                      • realJSOPR realJSOP

                                        It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

                                        ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                                        -----
                                        You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                                        -----
                                        When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                                        G Offline
                                        G Offline
                                        GenJerDan
                                        wrote on last edited by
                                        #25

                                        Would C#/XAML be of any use for this? ( cshtml5.com[^])

                                        We won't sit down. We won't shut up. We won't go quietly away. YouTube and My Mu[sic], Films and Windows Programs, etc.

                                        1 Reply Last reply
                                        0
                                        • realJSOPR realJSOP

                                          It's starting to look like I'm going to be forced to do some mobile development (and I already hate the prospect, so please don't attempt to assault me with sugar-coated platitudes). I need to target Android, iOS, and WinPhone. The app will have a single screen with a "go" button. When the button is pressed, the following will occur: - a QR code will be scanned - the phone's current geolocation will be determined - the app will open a browser with the address indicated by the QR code, with the GPS coordinates being in the querystring. This app will only work on a website that I'm writing (the URL from the scanned QR code will be verified to make sure the host/domain matches a hard-coded string). I explored the possibility of installing the app without going through the various app stores, but I determined that the procedures for doing so are too technically imposing for the assumed expertise of your typical idiot user, not to mention apple actually charges a fee to do this. So, I need to go through the various app stores. The app will be free to the user, so I may have a running ad at the bottom of the screen so that I can recoup any money spent (albeit slowly). Can someone give me an idea as to what will be involved, in terms of money, tools, and effort?

                                          ".45 ACP - because shooting twice is just silly" - JSOP, 2010
                                          -----
                                          You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010
                                          -----
                                          When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013

                                          J Offline
                                          J Offline
                                          jlongo
                                          wrote on last edited by
                                          #26

                                          Xamarin has a free version of their app and your's sounds simple enough to use this version. Xamarin is perfect for cross platform development in C#. You can use a hackintosh for The Apple version.

                                          M 1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups