Questions tagged [publisher]

325 questions
64
votes
3 answers

How to change publisher name in Google Play

I just recently posted my first app to Google Play. When I search for my app, I would see my app name, and underneath the app name it says who published it. In my case, my app says it is published under my full legal name. I would like to change it…
user2969777
  • 665
  • 1
  • 5
  • 4
31
votes
3 answers

publishOn vs subscribeOn in Project Reactor 3

I am using publishOn vs subscribeOn both on the same flux as follows: System.out.println("*********Calling Concurrency************"); List elements = new ArrayList<>(); Flux.just(1, 2, 3, 4) .map(i -> i * 2) .log() …
27
votes
5 answers

Create a Timer Publisher using Swift Combine

I've been watching the Data Flow Through SwiftUI WWDC talk. They have a slide with a sample code where they use a Timer publisher that gets connected to a SwiftUI View, and updates the UI with the time. I'm working on some code where I want to do…
eivindml
  • 2,197
  • 7
  • 36
  • 68
25
votes
2 answers

Changing "Publisher" information for a ".exe" file

HOW I CAME ACROSS THIS I wrote code for a simple stopwatch which can also double up as a Rubik's cube timer. The source code and the executable are here: Cube timer Anyway my doubt is not regarding this code(It works fine). I downloaded the…
IcyFlame
  • 5,059
  • 21
  • 50
  • 74
19
votes
1 answer

Use service account to verify Google InAppPurchase

I want to verify an inAppPurchase that has been made in my Android app. I created a new service account in the Google API console. a. The service account is listed under permissions and has "can view" permission I'm using the most current version…
glutorange
  • 993
  • 1
  • 10
  • 17
15
votes
2 answers

How to be a verified publisher?

I wrote an app and I want to sell it online, so I uploaded it to my website and tried to download and run it as a test, but a window appeared, it said : "The publisher could not be verified. Are you sure you want to run this software ?", and it also…
Frank
  • 30,590
  • 58
  • 161
  • 244
13
votes
1 answer

Java 9 - how publisher and subscriber works

I am trying to understand how Subscriber and Publisher works in java 9. Here I have created one subscriber here and using SubmissionPublisher for publishing item . I am trying to publish 100 strings to subscriber. If I do not make the Client program…
Shiva
  • 1,962
  • 2
  • 13
  • 31
8
votes
1 answer

Combine: Convert Closure into Publisher

How to convert: func getResults(completion: ([Result]?, Error) -> Void) Into var resultsPublisher: AnyPublisher<[Result], Error> Just a scheme how I see it is (this syntax doesn't exist): var resultsPublisher: AnyPublisher<[Result], Error> { let…
Paul T.
  • 4,938
  • 7
  • 45
  • 93
8
votes
2 answers

Pyinstaller .exe throws Windows Defender [no publisher]

I developed a Python code and I converted it to an .exe with pyinstaller but the problem is that there is no publisher so each time a computer runs my program, Windows Defender throws an alert that says that there is no publisher so the program is…
No Braves Studio
  • 151
  • 1
  • 2
  • 12
8
votes
1 answer

SQL Server 2005 Replication and different indexes on the subscriber

We have SQL Server database setup. We are setting up a replication scenarios where we have one publisher and on subscriber. The subscriber will be used as a reporting platform so that we can run all the BI queries that we need and have to hit the…
Kinlan
  • 16,315
  • 5
  • 56
  • 88
7
votes
4 answers

How can I link to all publisher apps on Android Amazon Appstore?

I cannot figure what the Amazon Appstore equivalent is for: market://search?q=pub:smallte.ch This simply lists all the apps for a given developer. Note that I know the format for specific apps: market://details?id=com.adobe.air becomes either of…
blackjack75
  • 502
  • 7
  • 12
6
votes
2 answers

How do you run a Swift Combine Publisher for a certain amount of time?

I have a publisher when the sink, scans for a list of wifi. I only want to scan for about 10 seconds and stop. Is there a way to do this within the publisher chain of calls?
Unikorn
  • 1,140
  • 1
  • 13
  • 27
6
votes
1 answer

Reason to set queue size of ROS publisher or subscriver to a large value

When I look over the tutorial of Robot Operating system (ROS), I found most example codes set the publisher's queue size to a larger value such as 1000. I think this leads to losing real-time response of the node. For what purpose, do people set it…
orematasaburo
  • 1,207
  • 10
  • 20
5
votes
2 answers

Get different style sections in Microsoft Publisher via Interop

I have a little C# app that is extracting text from a Microsoft Publisher file via the COM Interop API. This works fine, but I'm struggling if I have multiple styles in one section. Potentially every character in a word could have a different font,…
Remy
  • 12,555
  • 14
  • 64
  • 104
5
votes
1 answer

Unexpected Combine Publisher Behavior

I'm building a mortgage calculator as an exercise to learn Combine. Everything has been going swimmingly until I encountered a situation where I'm not getting deterministic published output from one of my Publishers when I unit test it. I'm not…
Adrian
  • 16,233
  • 18
  • 112
  • 180
1
2 3
21 22