Questions tagged [nativeapplication]
81 questions
13
votes
4 answers
encode image to base64, get a invalid base64 string (ios using base64EncodedStringWithOptions)
Here is my code.
UIImage *img = [UIImage imageNamed:@"white.jpeg"];
NSData *imageData = UIImagePNGRepresentation(img);
NSString *imageString = [imageData base64EncodedStringWithOptions:0];
NSLog(@"%@", imageString);
And I always get invalid…

Yu-Shing Shen
- 373
- 1
- 5
- 10
6
votes
1 answer
Native app (hybrid) to use django-social-auth
I already have implemented social authentication using facebook and google in my web application (Django + used django-social-auth). I want my native app built with (Kendo UI + Icenium) to re-use the Oauth from my web application.
What is the best…

CIF
- 1,754
- 2
- 18
- 30
4
votes
1 answer
Secure the Auth Code in Oauth2 with native apps (Android)
That question is hardly related to AppLinks assetlinks.json appears not to be used for validation
I am implementing Oauth2 apps on Android. I would like to do SSO (single sign-on) and I have a concern about AppLink to secure the Autorization…

MalikDe
- 157
- 7
4
votes
1 answer
Is it possible to develop a Chrome Bookmarks manager app that is not a chrome extension, i.e. that runs independently of the chrome browser?
I understand that the chrome.bookmarks API (documented at http://goo.gl/tIb6V6) is meant to be used to develop Chrome Extensions (to be used, of course, within the Chrome browser) that access/manipulate my Chrome Bookmarks. I have even used that…

rinaus
- 41
- 2
4
votes
3 answers
Not able to start appium session
I am not able to start the session can you help. I have done the following steps:
Started a Appium server from Appium for windows package (ran appium.exe file)
Started a simulator for android
Started selenium server
Ran the script via TestNG
I am…

user2991309
- 41
- 1
- 1
- 3
3
votes
0 answers
Azure Application Proxy MSAL Auth issue
Implemented test windows application based on official manual:
https://learn.microsoft.com/en-us/azure/active-directory/manage-apps/application-proxy-configure-native-client-application
Following code is a result:
IPublicClientApplication clientApp…
3
votes
2 answers
iOS Callkit - incoming Call Recents History
I've implemented call kit in our app only for received incoming call when the app is close or on background (push call notification). I just noticed that every time I received a call and use callkit to display it, this call automatically appear in…

Arnaud Skrumble
- 33
- 1
- 3
3
votes
1 answer
Open ID Connect and native public app...no implicit flow, no hybrid flow...so what?
We are currently developing a native mobile application, and we need to authenticate end-user with our identity server (made with thinktecture identity server v3), and/or external social identity providers,
to consume some resources in our…

Harween
- 51
- 4
3
votes
1 answer
Native Android Development Or Adobe AIR?
What are the benefits and disadvantages of using android AIR instead of Android native application?

Ilya Gazman
- 31,250
- 24
- 137
- 216
3
votes
0 answers
How can I share a link to facebook using native app on browser
I want to make a button sharing a link to facebook on android mobile web site via native facebook app.
I found "fb://publish" url can open native app.
but I couldn't find How to send image, title, description like meta tag information to native…

Lion.k
- 2,519
- 8
- 28
- 43
3
votes
1 answer
Is there any way to compress a video in Android native app?
I am working on an Android native application with video recording. Everything works like a charm but video uploading is very slow.
I'm using mp4parser for Pause/Record. I tried reference of Video compression API but I couldn't find anything.
Is…

Sudharsan
- 417
- 1
- 7
- 10
2
votes
2 answers
Should I use PKCE for OpenID Connect with Native Desktop Application?
I want to use OpenID Connect for my native windows and Linux desktop applications to authenticate my users.
As stated in "OAuth 2.0 for Native Apps" Section 7.3 I want to open a local TCP port to redirect from the Authentication Server to get the…

jcrosel
- 349
- 2
- 5
- 13
2
votes
0 answers
How to export React native code for windows platform
I am having react native code which is running on both iOS & Android. Also I have used some dependencies like image picker or other but now I have to run that application in windows phone also so for this I followed this link for set up a dummy…

priyanka
- 171
- 2
- 12
2
votes
1 answer
webextension native application c++ hello world
I want to create a webextension on firefox, that communicate with a simple c++ application, I would like to send a message to the c++ application, and to recieve a simple message(Hello world by example).
For now this is what I have done :…

yeho
- 33
- 6
2
votes
0 answers
Electron Desktop app that can open web URL using proxy ip address
i have just discovered about electron js. i want to create desktop app which can help to open website with proxy server. i have tried following code, please help me.and please comment any working example.
const electron = require('electron');
const…

Vinay Pandya
- 3,020
- 2
- 26
- 42