Can a development team containing both Windows and Mac users work together on a Flutter app? - android-studio

I am in a team of 3 for a project. 2 of us are using Windows Laptops and 1 is using a Macbook. Would we be able to work together on a cross-platform mobile application for Android and iOS, using Flutter, Dart and Android Studio?
I've just pulled the first commit from the iOS programmer and it appears to be in C++ rather than dart under an 'ios' folder.

I'm currently working in a project using exclusively Flutter/Dart. I'm on windows and the other two devs are on Mac. I haven't had any issues - I don't see why C++ code would appear if the developer is writing in dart.

Not sure what's with the c++ code but most of your dart code resides in lib/ folder. That's where you would be writing most of your code.
The other programmer could have implemented some other functionality/module in c++ under the ios/ folder of your project. This folder is specific to files necessary to configure and run your application on the IOS platform.

Related

Android Studio for Dart without emulator

Is it possible to use AndroidStudio (for Dart) withOUT running an emulator?
Context: I am a complete newbie and have started reading some intro books and following online tutorials. I am aiming to learn DART and FLUTTER and have successfully installed AndroidStudio and an emulator and ran some successful test projects like helloworld.
The thing is, these early example projects are VERY basic things, to teaches me about variables and syntax etc and outputs results to the console. At this point, i do not need to boot up an entire emulator (which adds a layer of clunkiness when running)... but AndroidStudio seems to insist on one being activated?
I could use "DartPad" (which i love) for simple stuff - but it's limited and i'd prefer to learn one dedicated IDE if possible.
It depends on what you are actually running. If you are using Dart alone, you should be able to run it. Personally, I do these kinds of projects within IntelliJ Idea - which Android Studio is based on anyway, but doesn't come with the Android "overhead". Microsoft Visual Studio Code is another valid option that many people use.
If your project is based on Flutter (i.e. it contains UI), you need a "device" to run on - it might be the Android emulator, iOS simulator, Chrome or native (experimental).

Android studio old apps

I found an old phone and tablet that i was using to develop Android apps on. The computer that had the codes for those apps was fried by lightening. It's there a way to pull the published apps of those devices to the new computer and continue to develop them in Android studio?
You can use any of the Android Decompiler to get the source code from a compiled APK. If you were using Proguard you will still have some challenges in the names but as you have written the code you can simply replace the mangled names with correct one.

How to develop Android Studio projects with different SDK paths

I happened to have two different Android SDK paths for different projects. Every time I launched a project with a different SDK path, Android Studio asked which path to use, and made the path a system-level SDK path. Is it possible to make Android Studio to use the locally defined SDK path by default? This will make developing multiple Android Studio projects with different SDK paths at the same time possible.

How to Compile the Xamarin.iOS app using Visual Studio only?

Recently i came to know that Xamarin 3 got released and there a is beautiful GUI designer for iOS. But am not sure still for compilation do we need to use the Mac? With out Mac is it possible to compile iOS app?
Thanks,
Ravi
With invention of GUI designer for iOS in Xamarin, makes it easy for the developer to switching between xCode to windows. For compiling there is no need of Mac. But to run and see the output, you still require Mac - iOS build host. Also, Mac would be required to host iOS app on App store.

How to use PhoneGap with Visual Studio

I'm having trouble getting started with PhoneGap on windows 8, VS 2012, namely:
I don't know how to install the templates
I open the template projects I've downloaded from PhoneGap, but they are in compatible with VS2012
I don't know where to start in respect to creating my first simple CRUD application
I want to connect to a WCF API and make some calls
How to publish the result allowing installation on many devices:
I mainly want to use iPhone and Android devices
How do I get started with PhoneGap?
#Smithy, Microsoft just made it possible to develop Cordova apps with Visual Studio 2013 Update 2.
Its just a preview as far as I understand, but go have a look.
If you have the latest version of Visual Studio installed, you need to go to Microsoft'd download page and download the installer:
http://www.microsoft.com/en-us/download/details.aspx?id=42675
This comes along with documentation on how to get started and how to install and set it up in VS 2013.
Good luck.
UPDATE:
With the release of Visual Studio 2013 Community Edition along with Update 4, MS has made it easier than ever to create Cordova project....and best thing of all is it's FREE!!!!
Benefit is that if your used to VS like me, this is a comfortable environment, and its super easy to get started.
To get access to these templates, follow the steps when creating a new project in VS, and you will be prompted to install additional software, including but not limited to SDK Manager, adt, iTunes, emulators etc..
After these are installed, it is now simple to create projects, edit and run them in the included RIPPLE emulator.
These projects can also in addition be deployed to your device from VS.
To check if your device is picked up on your PC, open a cmd and run "adb devices" to see if your device is picked up on your PC and a list of connected devices.
Easy, effective and it works. From, see link on terms of use and limitations in organisations: Free Dev Tools
Download link here: http://www.visualstudio.com/en-gb/products/free-developer-offers-vs
Q: Who can use Visual Studio Community?
A: Here’s how individual developers can use Visual Studio Community:
Any individual developer can use Visual Studio Community to create their own free or paid apps.
Here’s how Visual Studio Community can be used in organizations:
An unlimited number of users within an organization can use Visual Studio Community for the following scenarios: in a classroom learning environment, for academic research, or for contributing to open source projects.
For all other usage scenarios: In non-enterprise organizations, up to 5 users can use Visual Studio Community. In enterprise organizations (meaning those with >250 PCs or > $1 Million US Dollars in annual revenue), no use is permitted beyond the open source, academic research, and classroom learning environment scenarios described above.
Thanks Microsoft!
You can use VS to edit the html, css, and javascript files, but I don't believe there are any VS project templates available. At least I've never seen any.
But, you won't be able to compile and deploy. The templates for Android for instance are eclipse project templates since phonegap is building a java application in order to deploy to android.
If you want to develop for android, follow the getting started guide from Phonegap ( I can't get you a link right now due to firewall issues). The files you put in the www folder will be the html, css, and javascript files for your project and you can use anything you want to edit them, including VS.
You can create PhoneGap application using
Cordova vs plugin
Telerik App Builder
vsnomad
for more information please see the below link
http://sourcefreeze.com/cross-platform/visual-studio-cordova-plugins-for-cross-platform-mobile-apps/
You may also want to refer to this post that describes how to use Phonegap projects in the new Multi-Device Hybrid Apps that uses Cordova integration in VS - https://stackoverflow.com/a/23621633/1277291
RedGate has a product called Nomad which integrates beautifully with Visual Studio 2013.
It makes use of the PhoneGap Build cloud service. With this approach you don't need all the platform SDK's on your system. Works very well.
See this video. Unfortunately RedGate recently stopped supporting Nomad. I'm hoping Microsoft's new offering will offer similar capability.

Resources