Kotlin 1.3.6X plugin cannot be installed (settings say unverified) - android

Build: AI-192.6817.14.36.5994180, 201911071727,
AI-192.6817.14.36.5994180, JRE 1.8.0_212-release-1586-b04x64 JetBrains s.r.o, OS Windows 10(amd64) v10.0 , screens 1920x1080, 1920x1080
AS: 3.6 Beta 4; Kotlin plugin: 1.3.50-release-Studio3.6-1; Android Gradle Plugin: 3.6.0-beta04; Gradle: 6.0.1; NDK: from local.properties: (not specified), latest from SDK: (not found); LLDB: pinned revision 3.1 not found, latest from SDK: (package not found); CMake: from local.properties: (not specified), latest from SDK: (not found), from PATH: (not found)
Check attached image. It appears Kotlin 1.3.6X is not installable from Android Studio.

With Reference to google issue tracker this has been fixed in latest version.
you can re-open or open new issue with reference to this https://issuetracker.google.com/u/1/issues/145468273 if you face the same.
Response from google
This happens after JetBrains releases a new Kotlin plugin version and
before Android Studio verifies it, usually a short time window. Should
not happen now since Android Studio has verified all existing Kotlin
stable versions.

Related

How to get gradl sync going again on Android Studio 3.1

After having this issue on Mac OSX, I reinstalled everything for Android Studio. (Studio itself, SDK's), ... Gradle Sync just does not work anymore. Anybody experiences this also? JAVA SDK Installed is 1.8.0_161.
"Uninitialized object exists on backward branch 70" on gradl sync (see screenshot)
error
android studio version
Bintray was experiencing an outage this morning. This is where a lot of Gradle's Android dependencies are hosted, so it was most likely affecting your Gradle Sync Process. Keep an eye on the status page here, and try again if it turns green. http://status.bintray.com/
This is a bug of JDK old versions. Go to the project structure and change your project to latest JDK version like 1.80_72 or later
After upgrading my Android Studio (on Ubuntu 14.04) to version 3.1.4 I also experienced a build problem:
Gradle sync failed: Uninitialized object exists on backward branch 70
Exception details: error in bytecode
Found out it was due to an old JDK version I have installed locally.
Instead of updating my local JDK I changed the project settings to use the embedded JDK, which, by the way, Android Studio says is the recommended option, and that solved the problem.

Could not determine Java version 9.0.4

I am a new developer and have recently installed Android studio 3.0 on my Windows 10 device with Java JDK version 9.0.4 installed but after installing, the app shows a problem:
could not determine java version 9.0.4
and shows a Gradle sync problem.
This issue was in gradle version lower than 4.3, so update your gradle.properties to 4.3 or above:
distributionUrl=https://services.gradle.org/distributions/gradle-4.4-all.zip
Why this error occur?: Because of you have different JDK on your system than your android-studio JDK version.
Therefore your JDK should be compatible with each other, and by following this way you can manage that:
File -> Other settings -> Default project structure
You can use embedded JDK or use your own.

QtCreator building Android apk is failing with wrong SDK version

I followed the steps shown here.
Installed JDK, Android SDK and NDK. Installed gradle, ant and OpenGl libraries.
When trying to build any android example I get the following error:
Error: Target id 'android--1' is not valid.
I tried this solution but I couldn't select any API. The paths are all correctly set. Using NDK 10 since 14 has known issues.
I verified that it is not a timeout issue as described here
Anyone encountering the same issue?
The reason for not building is this:
SDK Tools, Revision 25.3.0 (March 2017)
Obsolete/deprecated tools have been removed:
android
QtCreator is using the tools to get information about the Android SDK. Workaround is to get the previous version (e.g. 25.2.5).

Which android ndk version should be used with xamarin.android 6.1

Xamarin does not specify a version for android ndk to use and in the screen shot at Manual Xamarin.android installation page it shows r9d version witch is old. so should i install that specific version or the latest stable version witch is r12b at this moment. currently i am using r10 witch seems to be working currently ....
And also x86 or x64? I am on windows8.1 X64
Xamarin.Android Version: 6.1.99.224 is using android-ndk-r10d.
The current xamarin-android build in github is using android-ndk-r11c:
Ref : toolchain.projitems
For Xamarin.Android 7, you can use NDK r11c, newer version will not be recognized by Xamarin because files are renamed by google.

android studio - set gradlew/gradle jdk

OS: OSX 10.9.2
build tool: gradle
platform: android
I've recently installed jdk 8 which i use for some side projects. i have 1.6, 1.7 and 1.8 installed at the same time.
The issue that i'm having is when building android projects, in android studio using gradlew its using jdk 8, instead of using the jdk that i've set for the project. This causes issues as one of the gradle plugins i'm using (new relic agent) does not yet support java 8.
I dont know how android studio decides what jdk to use for gradle, but it should use the same as the jdk you set for you project, otherwise what is the point in asking me to set one?
So my question is this. How can i set what jdk to use for gradlew in android studio, or in intellij in general as i'm sure this will affect other projects too

Categories

Resources