Will javafxports android still work with the new android studio? - android

I got the error "Error: Can't build Android. Path to Android SDK was not set or is invalid!" and I'm using the new android studio so I was wondering if javafxports android works with the new android studio?
My current path the the android sdk is:
C:\Users\svond_000\AppData\Local\Android\sdk

i'm currently using Intellij. It works very well. There is a community edition of intellij. Since basicly Android Studio and Intellij are built from the same source code. The gradle plugins works very well on Intellij.
http://blog.jetbrains.com/idea/2013/05/intellij-idea-and-android-studio-faq/
Regards,
Ivan

Related

No template when I create a new project on android studio

So I downloaded yesterday visual studio and I wanted to create a new android project in Android studio but I couldn't find any template instead I have frameworks and libraries to choose from (as you can see from the screenshot).
I think you downloaded wrong editor. It's IntelliJ IDEA instead of Android studio. Please refer to this link for android studio
https://developer.android.com/studio/index.html

I cant see new android project on Eclipse and i install everything right

i did everytihng right and install sdk and jdk for eclips android but create new project doesnt still apear what shoud i do some says eclips doesn't support android anymore is that right?1
You must use Android Studio as official IDE to develop Android Applications, if you are trying to import a project from Android Studio to Eclipse, you will have problems because the projects in Android Studio are configured with Gradle!
I suggest to you migrate from Eclipse to Android Studio.

Android studio gradle error in Java

I am new to android programming (I have some knowledge about programming in Java, though). I downloaded Android Studio 1.3.2. I also installed Java 8 (jdk1.8.0_60). Then I installed Android Studio. I was following the tutorial in developer.android.com. I created a new project. But then the Gradle showed me an error.
"Error: Gradle 2.4 requires Java 6 or later to run. Your build is currently configured to use Java 5."
How do I fix this?
File->Other Settings->Default Project Structure
set JDK Location to Java 6 or later there.
Updating the project structure did not work for me. I had to upgrade by Android Studio from 2.0 to 2.2 to get it working. Also, to be safe I did not import settings from my previous version during my initial Studio set-up.

Android Studio Setup JDK

I'm new in Android. I created a few android hello world - apps, using Android Studio 1.2.2.
But now I see problems
This applies not only to new projects, and to all, even projects worked yesterday.
Setup is to specify the path to SDK and JDK.There like it right.
Android Studio run on Windows 10.
My Enviroment Variables:
What could be the problem?

Migrating to Android Studio including libpd

With the release of Android Studio 1.0 (AS) i want to migrate from Eclipse. Generally I need no other library then libpd (PureData) for Audio synthesis. The Problem is, that libpd for android is geared to the needs of Eclipse. So in Eclipse everything is working as expected.
The only information I could found was that: Using libpd in Android Studio So I know libpd and Android Studio could work together but here are maybe some other problems.
I started to generate a new simple project (MinSDK 10 - CompileSDK 21 - BuildTools 21.1.2) just with a blank activity. I can deploy this simple app to my Nexus and everything is fine.
Then I import :PDCore and :AndroidMidi as Module into my AS project and I get the Gradle build-error: Error:The SDK Build Tools revision (17.0.0) is too low for project ':PdCore'. Minimum required is 19.1.0
I installed API 19 and Build Tools version 19.1 via the SDK Manager but that's not solving my problem.
I changed the buildToolsVersion of the apps build.gradle file to "19.1.0" but that's not solving my problem.
Any advices to get Gradle working probably?
Maybe anyone got a sample Android Studio project with libpd to share?
Thanks in advance!
FYI: I wrote some posts regarding migrating to Android Studio using libpd. Take a look here:
http://www.journal.deviantdev.com/using-libpd-with-android-studio/
http://www.journal.deviantdev.com/update-using-libpd-with-android-studio/
http://www.journal.deviantdev.com/sample-libpd-android-studio/
You have to change the build.gradle of the :PDCore and :AndroidMidi modules. At the moment they are using 17, update the BuildTools to the newest version (21.1.2). This should solve your problem.
I created a fork of the libpd-for-android and migrated it to Android Studio. You can clone it and open it in Android Studio as a 'Non Android Studio Project'. This worked very nicely for me and you can also now created an .aar file and use it in your Android App ( instead of copying the whole code or using git submodules):
https://github.com/tkirshboim/pd-for-android

Categories

Resources