I am trying to developing a simple app using JAVA for my school project. I am using android studio to develop my application, which I learned android studio in school. But i want to run my app in both android and apple phone. So here is my question, is it possible for my android studio app to run in apple phone, and if not, what should i do so that it can run in both android and apple phone?
You cannot use android apk into iOS.
I suggest you to go with some kind of Hybrid applications, like Flutter(Google's one), ReactNative(Facebook's one). In this you can develop applications and final build can install in both Android and iOS.
If you still need any help Flutter or React Native
You can but it's not that straightforward. You can use Android studio to make a Flutter project and then deploy it to iOS. But you need to learn Dart and Flutter's conceptions and whole developing processes, maybe it's not as easy as you imagined.
Android apk cannot run on ios because of different platforms,the best option is to use cross-platforms tools in mobile application development i recommend flutter
If you want to install Flutter project on iOS Device. You need to Open the default Xcode workspace in your project by running open ios/Runner.xcworkspace in a terminal window from your Flutter project directory in macOS.
Related
I am facing a weird problem in android studio while using flutter. I am working on a complicated flutter project which requires some native code, so, am writing some platform code using flutter platform channel(writing for android), whenever I make changes to the code in the android platform and run the app, the code changes does not reflect on the app unless I restart Android studio. What could possibly go wrong?
You need to reinstall the app as native doesnt support hot reload like flutter
go to File->invalidate Caches/Restart,
then click on open for editing in Android Studio
In the context of an university project, we want to develop an Android app (Java) using the DJI Mobile SDK (4.11) to control a DJI Mavic 2.
Our created/ downloaded apps like the DJI SDK samples can be run on mobile phones after building them as APKs but we didn´t accomplish to emulate them in Android Studio (3.5.1). Already read that it wouldn´t be possible but developing an app without testing it in the IDE won´t be practicable for us...
Is there any option?
Thanks in advance.
The best option, and one I tend to leverage is use the simulator. I almost bench fly more than I fly outside.
I cannot think of another option of hand.
I am developing a virtual reality application for the Samsung Gear, I already did the graphic part in unity ,what I want is when I click on the login button that I have created with unity,the treatment will be in java, i already have exported my unity project as an android project but I can't find the link between the unity objects that I have created and the generated activity,any help please ?
thank you.
You can write custom android plugin for your unity project. You can communicate between java & C# using JNI. For more information, see here
I am relatively new to Eclipse IDE and want to build facebook login option in my android app. I looked up developers.facebook documentation but can't find one for Eclipse IDE (they have it for Android Studio). So i want to know if it is possible? (if yes then how could it be done?)
With the new Microsoft Visual Studio 2015 (VS15) finally released, it comes with the ability to program not only for Windows, but for Android and iOS devices as well.
I have a couple Android apps, and I maintain them using Android Studio. In my opinion, VS15 IDE is stronger than Android Studio, and I would like to migrate my existing apps, and future projects to VS15.
My question is: can I, somehow, use my existing Java code for my Android apps in Visual Studio, or Visual Studio, as it is right now, only supports C# for Android apps?
All I find is creating Android apps using C# (which is great), but I find nothing about re-using existing Java code for Android, and even better, if Java and C# code can be mixed (to use libraries I have created in Java for my Android projects).
Note that I am not asking about porting the existing Android app/code into a Windows app, yet.