Adding a jar file gives me duplicate classesJava inner class and static nested classHow can I create an executable JAR with dependencies using Maven?How to add local jar files to a Maven project?Why is subtracting these two times (in 1927) giving a strange result?How to display Map on emulatorKotlin fails to compile a libraryFirebase API initialisation failure - Not updating the list view from firebaseAndroid Studio 3.2.1 - New project fails to rundebug-apk work fine but sign apk release crash on main acitvityCould not find class 'dalvik.system…'

Negative Resistance

Could moose/elk survive in the Amazon forest?

Can I criticise the more senior developers around me for not writing clean code?

A faster way to compute the largest prime factor

Should the Product Owner dictate what info the UI needs to display?

Will I lose my paid in full property

Why didn't the Space Shuttle bounce back into space as many times as possible so as to lose a lot of kinetic energy up there?

How much of a wave function must reside inside event horizon for it to be consumed by the black hole?

Retract an already submitted recommendation letter (written for an undergrad student)

How can I wire a 9-position switch so that each position turns on one more LED than the one before?

Contradiction proof for inequality of P and NP?

Co-worker works way more than he should

Philosophical question on logistic regression: why isn't the optimal threshold value trained?

How to not starve gigantic beasts

What is this word supposed to be?

Can a Bard use the Spell Glyph option of the Glyph of Warding spell and cast a known spell into the glyph?

My bank got bought out, am I now going to have to start filing tax returns in a different state?

What is the most expensive material in the world that could be used to create Pun-Pun's lute?

Who's the random kid standing in the gathering at the end?

I preordered a game on my Xbox while on the home screen of my friend's account. Which of us owns the game?

Restricting the options of a lookup field, based on the value of another lookup field?

Work requires me to come in early to start computer but wont let me clock in to get paid for it

Cayley's Matrix Notation

Prove that the countable union of countable sets is also countable



Adding a jar file gives me duplicate classes


Java inner class and static nested classHow can I create an executable JAR with dependencies using Maven?How to add local jar files to a Maven project?Why is subtracting these two times (in 1927) giving a strange result?How to display Map on emulatorKotlin fails to compile a libraryFirebase API initialisation failure - Not updating the list view from firebaseAndroid Studio 3.2.1 - New project fails to rundebug-apk work fine but sign apk release crash on main acitvityCould not find class 'dalvik.system…'






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















When I try to add this jar 'org.apache.jena:jena-fuseki-main:3.10.0, I encountered a run time problem (there is no problem when synchronizing the Gradle). I get duplicate classes. I tried to exclude the duplicate class, but each time I run the app, I get more duplicate classes.



Here is my Gradle



apply plugin: 'com.android.application'

android

compileSdkVersion 28
defaultConfig
applicationId "com.example.childtracker"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"


compileOptions
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8


buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'






dependencies
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'org.apache.jena:jena-fuseki-main:3.10.0'










share|improve this question
























  • Related: github.com/sbrunk/jena-android and github.com/sbrunk/jena-android/issues/1

    – Morrison Chang
    Mar 22 at 17:16

















0















When I try to add this jar 'org.apache.jena:jena-fuseki-main:3.10.0, I encountered a run time problem (there is no problem when synchronizing the Gradle). I get duplicate classes. I tried to exclude the duplicate class, but each time I run the app, I get more duplicate classes.



Here is my Gradle



apply plugin: 'com.android.application'

android

compileSdkVersion 28
defaultConfig
applicationId "com.example.childtracker"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"


compileOptions
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8


buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'






dependencies
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'org.apache.jena:jena-fuseki-main:3.10.0'










share|improve this question
























  • Related: github.com/sbrunk/jena-android and github.com/sbrunk/jena-android/issues/1

    – Morrison Chang
    Mar 22 at 17:16













0












0








0








When I try to add this jar 'org.apache.jena:jena-fuseki-main:3.10.0, I encountered a run time problem (there is no problem when synchronizing the Gradle). I get duplicate classes. I tried to exclude the duplicate class, but each time I run the app, I get more duplicate classes.



Here is my Gradle



apply plugin: 'com.android.application'

android

compileSdkVersion 28
defaultConfig
applicationId "com.example.childtracker"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"


compileOptions
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8


buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'






dependencies
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'org.apache.jena:jena-fuseki-main:3.10.0'










share|improve this question
















When I try to add this jar 'org.apache.jena:jena-fuseki-main:3.10.0, I encountered a run time problem (there is no problem when synchronizing the Gradle). I get duplicate classes. I tried to exclude the duplicate class, but each time I run the app, I get more duplicate classes.



Here is my Gradle



apply plugin: 'com.android.application'

android

compileSdkVersion 28
defaultConfig
applicationId "com.example.childtracker"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"


compileOptions
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8


buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'






dependencies
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'org.apache.jena:jena-fuseki-main:3.10.0'







java android






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 24 at 3:47









Boken

1,6491119




1,6491119










asked Mar 22 at 16:29









RawanRawan

62




62












  • Related: github.com/sbrunk/jena-android and github.com/sbrunk/jena-android/issues/1

    – Morrison Chang
    Mar 22 at 17:16

















  • Related: github.com/sbrunk/jena-android and github.com/sbrunk/jena-android/issues/1

    – Morrison Chang
    Mar 22 at 17:16
















Related: github.com/sbrunk/jena-android and github.com/sbrunk/jena-android/issues/1

– Morrison Chang
Mar 22 at 17:16





Related: github.com/sbrunk/jena-android and github.com/sbrunk/jena-android/issues/1

– Morrison Chang
Mar 22 at 17:16












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55303977%2fadding-a-jar-file-gives-me-duplicate-classes%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55303977%2fadding-a-jar-file-gives-me-duplicate-classes%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript