Android Studio cannot delete import library module - android-studio

Cannot delete import library module. It will kept appeared after restart android studio or add new module even after delete it in Project Structure.
1) Module that I want to delete
2) Delete from Project Structure
3) Module still appeared after restart android studio or add new module
After update Android Studio from version 3.0.1 to 3.13. This problem happen to me and I have no problem with Android Studio 3.0.1. Can someone guide me about this problem

Check in your settings.gradle file there should be a line that starts with: include ':app'
You should remove the import to the libraries on this line, in your case something like:
':pipwavesdklibrary-debug', :pipwavesdklibrary-release'
Also remove the library from your project structure if no longer needed.

Related

Error on some imports on Android Studio for AppCompatActivity and androidx.appcompat.app.AppCompatActivity

I was working in an android project and everything is ok, but when I try to open the project now, I got the some import errors. Take a look in the image below:
The code still compiles and I was able to run it in the Android emulator, but I can't use the IDE auto complete because of this error.
How can I fix that?
EDIT: the problem appears to be related to the Android AppCompat implementation in this line below
implementation 'androidx.appcompat:appcompat:1.0.0'
I try to change it to
implementation 'androidx.appcompat:appcompat:1.5.1'
But it generate some conflicts with another plugins.
The I return the implementation to the old value, but now when I try to put the version 1.5.1, it generates the following error:
Could not resolve androidx.appcompat:appcompat:1.5.0.
Required by:
project :app
Possible solution:
- Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
Not sure if this would help but, I usually do any of the steps below when I encounter that kind of Android Studio issue.
clean/rebuild project
invalidate cache~restart
delete .idea folder inside the root project folder, and re-import or re-open project
delete .idea and .gradle folders inside the root project folder and re-import or re-open project
Afaik, deleting the generated folders is safe, it will just re-run all IDE and gradle configurations from the start.
I am really not sure about this problem, but i think it's IDE error.
you can Clean Project and then Rebuild project.
you will find it in Build tab. or you restarting Android Studio might solve your problem.
last option : you have to remove every dependency then sync after paste every dependency again and sync. You must need internet connection do this step.
I hope this will solve your error.

Android Studio “cannot resolve symbol R” but project compiles and runs

Android Studio displays in all java files in red : “cannot resolve symbol R” but the project compiles and runs.
I have tried every solution here:
Android Studio "cannot resolve symbol" but project compiles and works, but with no luck.
I tried to :
invalidate caches and restart android studio
delete .gradle and .idea folders
clean and rebuild the project
install a new version of android studio
mess up with gradle file then undo changes and sync project
One thing that I want to try, but I don't know how to achieve, is to reopen the project from scratch as I was opening it for the first time, but I don't know how to do this.
I also tried answers from here:
Android Studio says "cannot resolve symbol" but project compiles,
but again with no luck.
Android studio version = 3.2.1
dependency versions in gradle project file:
classpath 'com.android.tools.build:gradle:3.4.0-alpha01'
classpath 'com.google.gms:google-services:4.0.0'
For some reason that i do not understand ,
this combination of build versions made the issue :
grade version = 4.10.1
classpath 'com.android.tools.build:gradle:3.4.0-alpha01'
when i switched to these build versions :
grade version = 4.6
classpath 'com.android.tools.build:gradle:3.2.1'
The issue was solved !
File -> Close project
Open an existing Android Studio Project
Open you project
Hope it will work.
sometimes, R file is not generated because of package name on android manifest is not match with package module that you have.
Is any wrong syntax or spelling in your xml?
Check your layout or any xml file.
Android Studio seems to have a caching issue with R.java occasionally. I rarely have a problem with this, but when I do, I actually open R.java (double press shift and type "R.java") or navigate to R.java under "app/build/generated/source" directory, opening the file and checking if the relevant XML id has been created. If it has, it forces Android Studio to now recognise the id's that are not being resolved. It's quick to try, and doesn't require clean and rebuild.
From your programs menu, open android studio. instead of opening your project from the recent files, select to open a project from your computer and then locate the path to your project. When all else fails, sometimes this works.
Also, try commenting out the support libraries from your gradle implementation, sync your project, and after sync fails comment them back in and sync again. (not sure if that's what you tried already when you said you messed with the gradle file)
In my case,
I am using
- Android Studio version 3.3.1 at home
- Android Studio version 3.2.1 at office
When i pulled projects to my office computer that are firstly created at my home computer ,
Android Studio can not resolved R file but runs application with no error. Because projects gradle and Android Studio version are incompatible.
Only thing that you sholud do, change the gradle version in project level gradle file
classpath 'com.android.tools.build:gradle:3.3.1'
to
classpath 'com.android.tools.build:gradle:3.2.1'
I was facing same issue,
first thought the issue might because of some xml file or naming of drawable resources incorrectly. After analysing, this case wasn't applicable to me.
So
Updating Android studio from older version 3.2 to newer version 3.3.2 along with new build tool version from SDK manager resolved this issue
for me.
I've tried invalidate cache and Restart AS with clean rebuild all the options but didn't work for me.
It says cannot resolve symbol, but it can run.
In my case, I just reload the needed *.jar files to the libs folder.
File >> invalidate caches/restart
Rebuild Project
Sync
Run
Works for me!
It looks like the library did not load my "imports" properly the first time.
That's why the import methods cannot be seen in my main_activity.xml.
This happened to me when I was going back and forth between different SDK versions.
Apparently SDK manager copied all the source files but it didn't finish cleanly. As a result I could compile and run my project just fine but IDE didn't recognize the SDK and reported all java symbols unresolved.
None of the above and other solutions in SO didn't work for me, but just uninstalling/reinstalling the specific SDK version did a job.
If you renamed your package (inside java folder), make sure you change your Manifest package name to the same
The only thing that worked for me was,
replacing,
import package_name.R
with
import package_name.*
simply go to project settings : settings.gradel and change the rootProject.name to your current name
rootProject.name = "write the project name here"

Import ActionBar Sherlock to Android Studio

I'm try to import the latest version of ActionBar Sherlock into my project using the latest version of Android Studio. I've put the ActionBarSherlock project in my projects directory. I've selected File->Import Settings. When I point it to the ActionBarSherlock, it says Can not find file ...\AndroidstudioProjects\ActionBarSherlock\settings.jar.
What the heck is the settings.jar file? This was not in the distribution. How do I create it?
Instead of File->Import you can simply just add ABS to project using gradle in your build.gradle file insert this line into dependencies section:
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0#aar'

Android Studio HoloCircularProgressBar Library

I am trying to add the project https://github.com/passsy/android-HoloCircularProgressBar as a library to my project using android studio. I have added the project as a module and loaded it into the build.gradle file and added the dependency as well.
dependency {
compile project(':HoloCircularProgressBar')
}
No matter what it won't be able to find the attr 'cicularProgressBarStyle' and even in the xml it says unable to locate class file.
Would appreciate any help on this matter.
Thank you.
To import this plugin in Android Studio, complete the following steps:
Download the latest version of the plugin and extract the library directory
(rename it if you want - I've called mine circularProgressBar)
Create a new directory called libraries at the root of your project in Android Studio
Put the previously extracted library directory into into the new libraries directory
Go to your settings.gradle (also at the root of your project) and add the following:
include ':libraries:circularProgressBar'
Now go to File > Project Structure, select your module and click on the Dependencies tab, then click '+' and select 'Module Dependency'. You'll be prompted to select the holoCircularProgressBarModule. Select it and click OK.
Do a Gradle Sync and the project should be successfully imported.
This was completed using Android Studio 0.5.8

Android Studio: Module won't show up in "Edit Configuration"

I've imported a project to Android Studio with several subprojects.
I want to run a subproject.
I successfully made this subproject's build.gradle as a module.
In order to run it, I went to Run > edit configurations > + > Android Application.
Problem: When I try to select a module, none show up in the drop down list.
Why is this?
EDIT: it shows up as a module under Groovy but not showing under Android Application. How do I get it to show up under Android Application?
Make sure your build.gradle is
apply plugin: 'com.android.application'
not
apply plugin: 'com.android.library'
After you have changed, please sync your gradle again.
I had similar issue when I selected parent directory of my project, I resolved by Close Project -> Delete Project from Android Studio -> Import Project by selecting right build.gradle file.
Make sure you select right build.gradle file while import.
I fixed this by adding facets in Module settings. They were missing.
right click on project > open Module settings > Facets > Add facets ( "+" sign at the top ) > Android.
After adding facets you will have modules.
UPDATE:
For latest version of gradle, Facets have been removed, you can directly add modules now.
right click on project > open Module settings > Add module ( "+" sign at the top ) > Phone and Tablet Application (Now you can create a new module and configure it).
In Android Studio 3.1.2 I have faced the same issue. I resolved this issue by click on "File->Sync Project with Gradle Files".This works for me. :)
resolved this issue by clicking on "File->Sync Project with Gradle Files"
New project. Fixed this issue by clicking on "File->Sync Project with Gradle Files"
I have tried all the options with no luck. So I have ended up with my working solution. Just make following steps:
Close android studio if open.
Copy module(project) in your current workspace.
Start android studio.
You will see added module in project structure.
Open settings.gradle of your project and include ':YOUR_MODULE_NAME'.
Sync gradle and you can see module is successfully added to your project.
Try,
Files > Sync Project with Gradle Files
or
Files > Sync with File System
Should do the trick.
goto Android >> Gradle Scripts>>Build Gradle(Module :app)
make sure the first line of this file is like this.
apply plugin: 'com.android.application'
not like this
apply plugin: 'com.android.library'
The following worked for me:
edit the overall project's 'settings.gradle' file and add a line at the bottom to include your new module (include ':myNewModule') - e.g:
include ':myNewModule'
Synch gradle.
Add a build.gradle file into your new module directory. You need to make sure the first line says 'apply plugin: 'com.android.application'. Simply copying a build.gradle from another module in your project, if you have one, seems to work.
Synch Gradle
Your module should now show up in 'Edit Configurations'
This mainly happens when you copy a library project and try to build it. The solution would be to add
apply plugin: 'com.android.application'
in the build.gradle file, instead of
apply plugin: 'com.android.library'
Then do a gradle sync
This worked for me: File > Project Structure... > Modules > Green Plus Symbol > Import > Then Select The Project
In your module build.gradle file make sure you have the correct plugin set. it should be
apply plugin: 'android'
No configuration was deteched because IDE was unable to detech modules (<no module>).My compileSdkVersion and buildToolsVersion was 28 in build.gradle (app module)
android {
.
.
compileSdkVersion 28
buildToolsVersion 28
.
.
}
But SDK was not installed. So then I installed it first and it worked for me !!!
It appears different solutions work for difference people, for me just closing the project and importing it again resolved the problem.
I finally figure out why the module is not showed up when I add configuration for AndroidTests for a com.android.library module.
If you include your library module in your application's build.gradle like this:
compile project(':yourlibrary')
Since for library module it is compiled with release mode by default, you can't run Android Tests for it, that's why it won't show up in the module list.
I fixed it with following modification:
Add following configuration to the build.gradle of your library module:
publishNonDefault true
By make following changes, you can debug compile your library by editing the build.gradle of your application module like following:
- compile project(':yourlibrary')
+ debugCompile project(path: ':yourlibrary', configuration: 'debug')
+ releaseCompile project(path: ':yourlibrary', configuration: 'release')
Then sync it and you'll find it shows in the list.
Android Studio 4+
1- File -> Close project
2- Delete .idea folder
3- Open project again
It was fixed for me after removing and re-adding the Android and Android-Gradle Facets in the Module Settings dialog.
I managed to fix it in Android Studio 1.3.1 by doing the following:
Make a new module from File -> New -> New Module
Name it something different, e.g. 'My Libary'
Copy an .iml file from an existing library module and change the name of the file and rename references in the .iml file
Add the module name to settings.gradle
Add the module dependency in your app's build.gradle file 'compile project(':mylibrary')'
Close and reopen Android Studio
Verify that Android Studio recognises the module as a library (should be bold)
Rename module's directory and module name by right clicking on the newly created module.
Enjoy :)
The following are methods to help you:
Close and Open Project again
Close and Open Android Studio
Clean Project
Rebuild Project
Instantiate and Restart
Make sure you have included :app
Import the Project
I added this line to my app.iml file and it works
orderEntry type="library" exported="" name="appcompat-v7-19.1.0" level="project" />
For me it was fixed by simply restarting Android Studio.. Like the good old days of Eclipse
In my case problem was from a higher (or not downloaded) compileSdkVersion and targetSdkVersion in build.gradle(app).
This was happened because of cloning project in another pc that not downloaded that sdk image.
Close all Android Studio projects
Remove the project from the recent projects in Android Studio wizard
Restart Android Studio
Use import option (Import project- Gradle, Eclipse ADT, etc.) instead of open an existing
Project AS project
File -> Sync project with gradle files
Sometimes the errors exists in Android-manifest because of that there
is cross like image over run/debug configuration hence try to look
over if Android-manifest has any errors in just case.
For my case, a newbie I boogered up my project, not sure how but it would not longer run and complained about the manifest, the R, everything. I realized that some how in my settings.gradle did not have include ':app' once I added this, I was back on my way.
Well, nothing worked for me from all the answers. Finally, I clicked Run > Edit Configuration. On the left, u can choose a new main module and remove to deleted ones.
Add your module in your applications .iml file like:
orderEntry type="module" module-name="yourmoudlename" exported=""
It works for me.
If all the above doesn't work. Try to update your Android studio version.
Steps:
1. In Android Studio, select File > Settings (or Android Studio > Preference on Mac).
2. In the left pane, select Appearance & Behavior > System Settings > Updates.
3. Be sure that Automatically check for updates is checked, and then select a channel from the drop-down list.
4. Click OK.
For me it was:
Right click on app project folder & select Load/Unload Modules...
Select app module, click Unload >, & click OK
Right click on app again & select Load/Unload Modules...
Select app module, click < Load, & click OK
app then appeared for me in the configurations list again.

Resources