Is there a way to bind 2 java libraries with same namespace, same function names but different functionalitiesUnable to use “Java Bindings Library” ProjectMonoDroid: Binding multiple libraries with multiple dependenciesXamarin.Android using a java binding library with MultiImageChooserXamarin.Android - Java Binding depends on Google Play ServicesBinding an Android Library Project without source in XamarinErrors and warnings when Binding a Java Library in Xamarin?Warning BG8102: has unknown base type android.app.IntentService. (BG8102). When Binding a Java android Library to XamarinJAR Bindings Library issuesXamarin Java Library Binding issuesBinding Native library (*.so) and Java library in Xamarin Android C#
Will a paper be retracted if a flaw in released software code invalidates its central idea?
Are children a reason to be rejected for a job?
Is there a difference between 「目を覚ます」 and 「目覚める」
Traveling from Germany to other countries by train?
How to check a file was encrypted (really & correctly)
Why can I log in to my Facebook account with a misspelled email/password?
Can chords be inferred from melody alone?
Looking for a new job because of relocation - is it okay to tell the real reason?
Count number of occurences of particular numbers in list
Where to pee in London?
Can ads on a page read my password?
How to halve redstone signal strength?
Did silent film actors actually say their lines or did they simply improvise “dialogue” while being filmed?
12V lead acid charger with LM317 not charging
Does the United States guarantee any unique freedoms?
Does this put me at risk for identity theft?
Are certificates without DNS fundamentally flawed?
Getting an entry level IT position later in life
Secure my password from unsafe servers
Do I have to buy filters to control contrast in multigrade papers?
Was Richard I's imprisonment by Leopold of Austria justified?
Does a 4 bladed prop have almost twice the thrust of a 2 bladed prop?
Repeated! Factorials!
Can I enter a rental property without giving notice if I'm afraid a tenant may be hurt?
Is there a way to bind 2 java libraries with same namespace, same function names but different functionalities
Unable to use “Java Bindings Library” ProjectMonoDroid: Binding multiple libraries with multiple dependenciesXamarin.Android using a java binding library with MultiImageChooserXamarin.Android - Java Binding depends on Google Play ServicesBinding an Android Library Project without source in XamarinErrors and warnings when Binding a Java Library in Xamarin?Warning BG8102: has unknown base type android.app.IntentService. (BG8102). When Binding a Java android Library to XamarinJAR Bindings Library issuesXamarin Java Library Binding issuesBinding Native library (*.so) and Java library in Xamarin Android C#
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am creating an android App to read BLE devices of specific manufacturer. I have 2 jar libraries for 2 different BLE devices, but since the manufacturer is same for both the devices, I don't know why, but they have kept the namespace same for both the libraries. Over and above the name of the functions are same but they behave differently.
So the problem is when I use both the libraries together, either in same android java binding project or different, they clashes.
Is there any way to force the libraries to get accessed through different namespaces?
xamarin.android java-binding
add a comment |
I am creating an android App to read BLE devices of specific manufacturer. I have 2 jar libraries for 2 different BLE devices, but since the manufacturer is same for both the devices, I don't know why, but they have kept the namespace same for both the libraries. Over and above the name of the functions are same but they behave differently.
So the problem is when I use both the libraries together, either in same android java binding project or different, they clashes.
Is there any way to force the libraries to get accessed through different namespaces?
xamarin.android java-binding
You can change the namespace using metadata. (in binding jar/aar step)
– Mehdi Dehghani
Mar 27 at 7:33
OK. I will check and let you know whether this approach works or not.
– anurag_it
Mar 27 at 9:00
Are there any updates for this issue?
– Leon Lu - MSFT
Mar 28 at 0:58
I haven't yet tried the @MehdiDehghani's suggestion but read some documentation in this respect and seems to me that can be done. I will be working on it in the next week. Meanwhile, go through the following documentation (developer.xamarin.com/guides/android/advanced_topics/…) for getting any ideas
– anurag_it
Apr 2 at 17:32
add a comment |
I am creating an android App to read BLE devices of specific manufacturer. I have 2 jar libraries for 2 different BLE devices, but since the manufacturer is same for both the devices, I don't know why, but they have kept the namespace same for both the libraries. Over and above the name of the functions are same but they behave differently.
So the problem is when I use both the libraries together, either in same android java binding project or different, they clashes.
Is there any way to force the libraries to get accessed through different namespaces?
xamarin.android java-binding
I am creating an android App to read BLE devices of specific manufacturer. I have 2 jar libraries for 2 different BLE devices, but since the manufacturer is same for both the devices, I don't know why, but they have kept the namespace same for both the libraries. Over and above the name of the functions are same but they behave differently.
So the problem is when I use both the libraries together, either in same android java binding project or different, they clashes.
Is there any way to force the libraries to get accessed through different namespaces?
xamarin.android java-binding
xamarin.android java-binding
asked Mar 27 at 5:15
anurag_itanurag_it
171 silver badge4 bronze badges
171 silver badge4 bronze badges
You can change the namespace using metadata. (in binding jar/aar step)
– Mehdi Dehghani
Mar 27 at 7:33
OK. I will check and let you know whether this approach works or not.
– anurag_it
Mar 27 at 9:00
Are there any updates for this issue?
– Leon Lu - MSFT
Mar 28 at 0:58
I haven't yet tried the @MehdiDehghani's suggestion but read some documentation in this respect and seems to me that can be done. I will be working on it in the next week. Meanwhile, go through the following documentation (developer.xamarin.com/guides/android/advanced_topics/…) for getting any ideas
– anurag_it
Apr 2 at 17:32
add a comment |
You can change the namespace using metadata. (in binding jar/aar step)
– Mehdi Dehghani
Mar 27 at 7:33
OK. I will check and let you know whether this approach works or not.
– anurag_it
Mar 27 at 9:00
Are there any updates for this issue?
– Leon Lu - MSFT
Mar 28 at 0:58
I haven't yet tried the @MehdiDehghani's suggestion but read some documentation in this respect and seems to me that can be done. I will be working on it in the next week. Meanwhile, go through the following documentation (developer.xamarin.com/guides/android/advanced_topics/…) for getting any ideas
– anurag_it
Apr 2 at 17:32
You can change the namespace using metadata. (in binding jar/aar step)
– Mehdi Dehghani
Mar 27 at 7:33
You can change the namespace using metadata. (in binding jar/aar step)
– Mehdi Dehghani
Mar 27 at 7:33
OK. I will check and let you know whether this approach works or not.
– anurag_it
Mar 27 at 9:00
OK. I will check and let you know whether this approach works or not.
– anurag_it
Mar 27 at 9:00
Are there any updates for this issue?
– Leon Lu - MSFT
Mar 28 at 0:58
Are there any updates for this issue?
– Leon Lu - MSFT
Mar 28 at 0:58
I haven't yet tried the @MehdiDehghani's suggestion but read some documentation in this respect and seems to me that can be done. I will be working on it in the next week. Meanwhile, go through the following documentation (developer.xamarin.com/guides/android/advanced_topics/…) for getting any ideas
– anurag_it
Apr 2 at 17:32
I haven't yet tried the @MehdiDehghani's suggestion but read some documentation in this respect and seems to me that can be done. I will be working on it in the next week. Meanwhile, go through the following documentation (developer.xamarin.com/guides/android/advanced_topics/…) for getting any ideas
– anurag_it
Apr 2 at 17:32
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55370223%2fis-there-a-way-to-bind-2-java-libraries-with-same-namespace-same-function-names%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
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55370223%2fis-there-a-way-to-bind-2-java-libraries-with-same-namespace-same-function-names%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
You can change the namespace using metadata. (in binding jar/aar step)
– Mehdi Dehghani
Mar 27 at 7:33
OK. I will check and let you know whether this approach works or not.
– anurag_it
Mar 27 at 9:00
Are there any updates for this issue?
– Leon Lu - MSFT
Mar 28 at 0:58
I haven't yet tried the @MehdiDehghani's suggestion but read some documentation in this respect and seems to me that can be done. I will be working on it in the next week. Meanwhile, go through the following documentation (developer.xamarin.com/guides/android/advanced_topics/…) for getting any ideas
– anurag_it
Apr 2 at 17:32