简体   繁体   中英

delete external library in Android Studio

how can I delete an external library from Android Project using Android Studio ? In my gradle script I have :

def neo4jVersion = "2.1.7"
apply plugin: 'java'
repositories {
   mavenCentral()
}
dependencies {
   compile "org.neo4j:neo4j:${neo4jVersion}"
} 

This is pulling about 15 jars but I need to delete one of them, each time I do it, it deletes it but when I run the project again it reappears ! How to delete it permanently ? This is screenshot

在此处输入图片说明

The geronimo library is the dependency of the Neo4j kernel .
You can't get rid of it without messing up the whole library.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM