Questions tagged [android-studio-3.0]

Use for questions about using Android Studio, an official IDE targeted at Android development. Do NOT use for questions about programming for Android in general; instead use [android].

Android Studio is the official IDE for Android development, and includes everything you need to build Android apps.

For more updates about Android Studio 3.0 check out these videos

  1. AS 3.0
  2. Java 8 support
  3. The new Profiler
1629 questions
0
votes
0 answers

Room Peristence Library and enigmatic error

I try to use Room in Android Studio 3.0 with kotlin. I have successfully created 3 entities that work well (database is created, i can insert rows and so on). Now, i want to add some functionnalities but i have this enigmatic error: Warning:warning:…
coutier eric
  • 949
  • 5
  • 18
0
votes
2 answers

Android Studio 3: useDeprecatedNdk no longer supported

I am developing an app using PJSIP. I have .so libraries (compiled using ndk-r10e) that they were working well before upgrade to Android Studio 3.0. This upgrade no longer supports useDeprecatedNdk and console says to follow this tutorial: Migrate…
matusalem
  • 2,461
  • 2
  • 26
  • 35
0
votes
0 answers

Android Studio 3.0.0 unable to start daemon process

I tried everything i can to change gradle file but still I have this Error, I can't run new project or old one. Error:Unable to start the daemon process. This problem might be caused by incorrect configuration of the daemon. For example, an …
Magician
  • 73
  • 8
0
votes
3 answers

android studio loading but it is not opening further

Every time I run Android Studio, this(below .jpg image) loading screen pops up, but Android Studio stays here and doesn't load. It's like this following picture except that the loading bar is loaded all the way but stuck there. I am running Windows…
0
votes
1 answer

Error:Unable to find method 'com.android.build.gradle.api.BaseVariant.getOutputs()Ljava/util/List;' android studio

I updated my android studio to : Android Studio 3.0 Build #AI-171.4408382, built on October 20, 2017 JRE: 1.8.0_152-release-915-b01 amd64 JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o Windows 8.1 6.3 and my build.gradle is: // Top-level build…
user4813855
0
votes
1 answer

Facing Compatibility issue in android studio 3.0

I recently updated android studio to version 3.0 and now i am facing sdk compatibility issue means the app stops responding on sdk below 21 even after mentioning "minSdkVersion 15" in my gradle. Please someone tell me how can I fix this issue? Here…
sidpal7747
  • 21
  • 7
0
votes
0 answers

Dagger 2 component not created in /test folder in an Android Kotlin project

I have an Android Kotlin project that I write in Android Studio 3. I want to use a Dagger 2 component (say TestComponent) for my unit tests in the /test folder. After rebuilding the project, I see that the DaggerTestComponent is not created (When…
dors
  • 5,802
  • 8
  • 45
  • 71
0
votes
1 answer

After updating Android Studio 3.0 Stable and i migrate my project in new gradle i am facing issue while build

After updating Android Studio 3.0 stable version from 2.3.3 my previous project working fine but after updating to new gradle I am facing this issue. I already tried many solutions but did not get success I tried to rebuild ,clean and build I…
Vishal G. Gohel
  • 1,008
  • 1
  • 16
  • 31
0
votes
2 answers

Error converting bytecode to dex: Multiple dex files, Android Studio 3.0

I recently upgraded to Android Studio 3.0, and while running the program I get the following error: Error:Error converting bytecode to dex: Cause: com.android.dex.DexException: Multiple dex files define…
0
votes
1 answer

How to write symbols that require Alt Gr on Android emulator

I am trying to fill an EditText through the Android Emulator using my computer's keyboard. I can type everything I want excepted characters that require Alt Gr (like "@"). Nothing happens when I make a combination of Alt Gr + something. Is there a…
Louis
  • 1,913
  • 2
  • 28
  • 41
0
votes
2 answers

Android Studio 3.0 Can't View Layouts

I have just updated to Android Studio version 3, however it I am unable to see my layouts in the preview window as each element is just a grey box like this: Blank layout The error in the Issues window says Exception Details…
0
votes
1 answer

Method invocation "vibrate" may produce java.lang.NullPointerException warning after updating to Android Studio 3

After updating to Android Studio 3.0, I'm getting this warning every time I try to use vibrate(): Method invocation 'vibrate' may produce 'java.lang.NullPointerException' Here's my code: package com.gavinsappcreations.vibratortest; import…
Gavin Wright
  • 3,124
  • 3
  • 14
  • 35
0
votes
0 answers

Android Studio not starting while upgrading to 3.0. in linux

This is the error being displayed. Internal Error. Please report to https://code.google.com/p/android/issues com.intellij.ide.plugins.PluginManager$StartupAbortedException: Fatal error initializing…
0
votes
1 answer

Android Migration To Android studio 3.0 Manifest Errors

After Automatic actualization To Android 3.0 I keep Getting Manifest Error Althought Nothing was Changed by me In It. I had Tried to 1) Reinstall Android Studio couple time 2) Clean Cache 3) Download SDK One more Time 4)I was Searching For…
Jakub Mitura
  • 159
  • 1
  • 14
0
votes
1 answer

Is it possible to disable hints for unnamed parameters in Android Studio?

I have a variable of function type. var onLengthChanged: (Int?) -> Unit = {} When I invoke the function, hint appears for parameter p1, although it was unnamed. I guess that this is an auto-generated name. It looks like this: Is there any way to…
1 2 3
99
100