Questions tagged [provider]

DO NOT USE — this tag is being cleaned up. Use [android-contentprovider], [flutter-provider], [provider-model], or whatever more specific tag is appropriate instead.

DO NOT USE — this tag is being cleaned up. Instead, use:

1714 questions
0
votes
1 answer

AndroidKeyStore cannot generate certificate

I have been trying to solve this issue regarding AndroidKeyStore. My app seems to not getting Android native provider for NONEwithRSA signing algorithm. This is the code reference: Calendar startDate = Calendar.getInstance(); Calendar endDate =…
Jeff
  • 293
  • 4
  • 13
0
votes
0 answers

ModelMapper with multiple converters and providers

I have two providers and ModelMapper is using the one to the wrong property! In my case I have UserProvider and UfProvider, it is calling UserProvider to a instance of UfUi and I got this error: Failed to set value 'UserModel [dtNasc=null,…
LottaLava
  • 889
  • 1
  • 9
  • 21
0
votes
1 answer

Problems injecting a custom service into a custom provider with Symfony2

I have problems calling my ImageEncoderService inside my LdapUserProvider.php with Symfony2. On the internet, I only find discussions on how to call services inside repositories, controllers, entities, and commands. Doing this: class…
metad00r
  • 134
  • 1
  • 8
0
votes
3 answers

android Provider initial data

all. I want to insert some initial data in db(sqlite) when it was created. if there is no insert operations, the programe works fine. but when I add it, It cause error.I can't understand.It seems to be android get a read-able db-handle to write…
9nix00
  • 3,852
  • 2
  • 21
  • 27
0
votes
1 answer

Puppet repository for Installing package

I would like to know from where does a package gets installed in Puppet when we write a manifest in Puppet for a package resource with below attribute. ensure => installed, I'm aware that there are providers in puppet which send the request to…
Mayur Kadam
  • 145
  • 1
  • 12
0
votes
0 answers

IONIC 3 : Publish event from handle error function in rest provider

I hope we could help me. I'am a beginner with ionic framework. I have an app with a restfull api server side. I make a rest provider client to interact with this api : In this provider i have a function to handle error in each request. When the…
jeob
  • 13
  • 3
0
votes
1 answer

Retrive data with promises ( ionic and angular)

Hi developers I am trying to retrieve data from my API with promises and work with these values in my functions.... this is my function in the service getetudiant() { return new Promise((resolve, reject) => { …
0
votes
1 answer

Authentication custom redirect callback

I have integrated Firebase/authentication with my React web app using the Javascript SDK. I setup Github sign-in using the redirect method. After a user successfully authenticates with Github, they are redirected back to my login form. I have set…
Nicholas Mueller
  • 482
  • 1
  • 6
  • 14
0
votes
1 answer

Form with redux in react

So I have made a form using react and redux. However, I'm not sure I totally understand store and Provider. Below is the code for my component. I've omitted imports for readability. const validate = values => { const errors = {} const…
UndisclosedCurtain
  • 143
  • 1
  • 2
  • 14
0
votes
1 answer

Changes done in one component view doesn't reflect in another component view in angular 4

Here I am changing some data in one component ex: change user profile picture of one module and the same profile picture should be reflected in another component of some other module. These are not parent/child components. Hence I am importing the…
Thilak Raj
  • 880
  • 3
  • 10
  • 25
0
votes
1 answer

JPA from EclipseLink to which provider?

Hallo all. I'm using EclipseLink as JPA provider in our project. As described here we have e big problem with char trimming with a DB char column with EclipseLink I tried the way to remove the jdbc bind parameter but I cannot make this change for…
Massimo Ugues
  • 4,373
  • 8
  • 43
  • 56
0
votes
2 answers

How to use provider in class in ionic

I created a class (not component) and I want it to use data from a provider (MyService). ex: export class MyClass { arg1 : Number; constructor(arg : Number, private myService : MyService) { this.arg1 = arg; } calc() { …
Moshe Kohavi
  • 387
  • 3
  • 8
0
votes
1 answer

Setting Ringtones Inside Android App

I would like the ability to set the systems ringtones from within my Android application. I face a slightly interesting issue because I never once in my code refer to the sounds directly, and instead am using a setup that refers to them via ints,…
Raphy
  • 5
  • 1
  • 3
0
votes
1 answer

Two providers in android manifest conflict

I have two providers in manifest. It brings error depending what is written first.
panpanda
  • 1
  • 2
0
votes
2 answers

How to set the path for provider in ionic in this project?

I am building an ionic application with pages ...trying to import a provider into about component but unable to find the module while it is till finding the module in app.component.ts \ //I am trying to import dbserviceprovider into about.ts …