Questions tagged [publisher]
325 questions
2
votes
1 answer
Android Publisher Interstitial Ad displaying after close
My application opens a Publisher InterstitialAd whenever you start but when a user closes it reopens. This process happens constantly and then you can't use application, can anyone help me?
public void getIntertitalAds(boolean isPortraitMode)
{
…

nss
- 121
- 2
- 11
2
votes
2 answers
Recognize setter invocations
I have an application where some var values ought to be published to a message queue on change. That is, if a var's setter is invoked I want this to be noticed somehow and after setting the new value I want it to be published to the MQ.
I did…

tobi
- 81
- 6
2
votes
1 answer
VBA for Publisher vs Word
Trying to build a macro to copy data from Excel into MS Publsiher. I have the code for MS Word but it does not seem to work when applied to Publisher. It fails at this line appPub.ActiveWindow.Bookmarks("Growth").Paste
Word VBA:
Sub SendData()
…

Sarah Broaden
- 59
- 1
- 7
2
votes
3 answers
How do I use an xdoxslt variable inside xsl code, in BI Publisher?
I am trying to create a loop that increments a variable, then use that variable inside of some xsl code. Here is the code I am using to increment the counter:

Angel
- 57
- 1
- 1
- 8
2
votes
1 answer
Remove read data for authenticated user?
In DDS what my requirement is, I have many subscribers but the publisher is single. My subscriber reads the data from the DDS and checks the message is for that particular subscriber. If the checking success then only it takes the data and remove…

Bathakarai
- 1,517
- 6
- 23
- 39
2
votes
0 answers
Google Play Publisher Payments Deductions
I am want to start selling Android Applications on Google Play. I have checked other forums posts, I have found:
Google takes 30% of comission. So If I sell my app for $1 => then I would receive $0.7 as revenue.
Also noticed Google Checkout also…

Farhan Munir
- 89
- 7
2
votes
3 answers
Liferay: How to fetch the first 3 items from an asset publisher?
In Liferay I have used the asset publisher to publish news on my news page. I want to fetch the 3 top news from the page and embed it into another page. How can I do this? The page URL containing the news links looks like the…

Adia
- 1,171
- 5
- 16
- 33
1
vote
1 answer
My subscriber cannot receive subscription
I have a problem of using combine send and sink method.
the publisher like this
//ViewModel
let reviewCellData = CurrentValueSubject<[ArchivingReviewCellModel], Never>([])
I surely checked the promise(.success) called.
//ViewModel
func…

안은노
- 59
- 3
1
vote
1 answer
Electron forge: github publisher doesn't create any release
I created an electron app using yarn create electron-app my-app which I am hosting on github (https://github.com/amblafont/essai-electron). I updated package.json and forge.config.js to add the github publisher. But it doesn't create any new github…

amblaf
- 11
- 2
1
vote
1 answer
Undentified Publisher on a signed setup executable during install with Vista
I have a setup executable which I have signed with a Verisign cert. The executable displays the correct publisher information during installation with XP and Win7, but on Vista it displays it as "Unidentified Publisher". I've checked each and every…

Tony
- 933
- 7
- 15
1
vote
2 answers
Swift Combine Cancel Publishers Without AnyCancellable
I have my networking library based on Combine. Anywhere in my app I can make a request and the networking library returns a publisher, it doesn't have access to the AnyCancellable that is created that actually triggers the pipeline. What I need is…

Kevin
- 483
- 3
- 11
1
vote
1 answer
SwiftUI: @Published for trigger .sheet is crashing when try to save changed value
I wanna make some changes in ViewModel by passing items into the .sheet and decide to save it or leave without changes. But faced the problem when changing the item and dismissing .sheet with @Environment(\.dismiss) the app is crushing. I can't…

Nizami
- 728
- 1
- 6
- 24
1
vote
0 answers
How does the `any Publisher` work in Swift?
I try to create a class implementation skeleton and a test for it. I have already had the function setResult and test testSetResult. Could I have something similar for the function setPublisher and testSetPublisher?
class FakeClass {
// ...
…

Wing Hu
- 11
- 2
1
vote
1 answer
Flatten Combine publisher with an output of [String] to just String
I have a publisher that has an array as its output, I'd like to change it to shoot out just the value without the array.
// in a playground
import Combine
var subj = PassthroughSubject<[String], Never>()
subj.send(["1", "2", "3"])
// create…

Yogurt
- 2,913
- 2
- 32
- 63
1
vote
1 answer
Swift Combine complex api request
I just started to learn Combine and therefore I can't figure out how to make a complex request to the API.
It is necessary to create an application where the user can enter the name of the company's GitHub account in the input field and get a list…

Evgenii Burdiuzha
- 23
- 2