Issue In my application, we need to display the Video frame receives from server to our android application, Server is sending video data @ 50 frame per second, having encoded in WebM i.e. using libvpx to encode and decode the
Continue readingTag: android
View Mat content while debugging
Issue I’m coding some image processing algorithms using Android OpenCV and I’m going crazy to debug some parts. Say that my steps are: threshold source image (Mat src) so I get a Mat with the result (Mat dst) get objects
Continue readingSupersampling implementation for high quality downscaling
Issue I want to create down-scaled Bitmaps ( original Bitmap loaded from asset) with high quality comparable to the quality of bitmaps scaled with professional software like Paint.net (in Paint.NET the algorithm for scaling is choosen in a field called
Continue readingunable to load the haarcascadeshaarcascade.xml in opencv
Issue Im trying face detection using opencv in android but I unable to load the object detection xml files. The code is as follows, ….. static CvHaarClassifierCascade* cascade = 0; CvMemStorage* storage = 0; LOGI(“before haarcascade”); if (!cascade) { const
Continue readingHow to programmatically change contrast of a bitmap in android?
Issue I want to programmatically change the contrast of bitmap. Till now I have tried this. private Bitmap adjustedContrast(Bitmap src, double value) { // image size int width = src.getWidth(); int height = src.getHeight(); // create output bitmap Bitmap bmOut
Continue readingJava / Kotlin – best approach for fast pixel wise image operations
Issue Overall Problem – I want to do fast image modification in Android, and my current naive solution is too slow I’m building an Android app that will involve fast modification of streaming images. I am running it on a
Continue readingRadAutoCompleteTextView with events not working
Issue I am trying to trigger an event on city selected by the user in RadAutoCompleteTextView but is not working (tokenSelected)=”onTokenSelected($event)” // not working (tokenAdded)=”onTokenAdded($event)” // not working (textChanged)=”onTextChanged($event)” // working Also I want to select a city by typing
Continue readingNativeScript android BetterVideoPlayer implement
Issue I am trying to implement BetterVideoPlayer (implementation ‘com.github.halilozercan:BetterVideoPlayer:1.2.alpha1’) for NativeScript Android. So, in an Angular project I have created separate component like this: import { View } from “tns-core-modules/ui/core/view”; declare var com, android; export class BetterPlayer extends View {
Continue readingclipToBounds with value false is not supported on Android. You can use this.android.getParent().setClipChildren(false) as an alternative
Issue clipToBounds is not working in android and getting this warning clipToBounds with value false is not supported on Android. You can use this.android.getParent().setClipChildren(false) as an alternative I tried to replace clipToBounds with setClipChildren with true but it did not
Continue readingHow to change application name in NativeScript
Issue I’m working with NativeScript from Telerik and I made an app with a debug name (“notiApp”) but now I can’t change the app’s name in launcher and action bar. I already tried configuring my AndroidManifest.xml in /app/App_Resources/Android/ modifying the
Continue readingHow can I specify or get the resource id of a nativescript textfield
Issue We are using nativescript with angular for our mobile app. I want to use the Google Play pre-launch report feature, but our app requires a password to be entered. Google Play allows specifying a password but you need a
Continue readingApplication entry point file not found. nativescript
Issue I create Angular 2 nativescript project and after adding android platform, i run the project in a connected nexus 6p with android version 7.1.1 and when app deployed to the device i got this error: An uncaught Exception occurred
Continue readingHow to make a tap-blocking overlay in nativescript?
Issue I am creating a custom dialog popup, overlay is fine, except that my taps go through it. Is there a way to make a layout tap-blocking? Like a button does. Can’t really listen for all gestures and manually control
Continue readingNativeScript: Disable all controls while ActivityIndicator is shown
Issue Lets say there is a login page with username\password TextFields and login Button. When the button is pressed a request is set to a server and ActivityIndicator is shown. Currently I put StackLayout on top of all other controls
Continue readingNativescript Vertical Screen Slide / ViewPager
Issue What is the easiest way to implement a screen slide in Nativescript like shown in Android Viewpager , but in a vertical direction ? Another example of this functionality would be the rss reader feedly where you can change
Continue readingNativescript searchBar property keyboardType not working
Issue I have this element: <SearchBar hint=”Search…” textFieldHintColor=”whitesmoke” keyboardType=”TYPE_CLASS_NUMBER” > </SearchBar> But still showing normal keyboard. How can I achieve this? Solution keyboardType is not a valid attribute on SearchBar. But you may able to achieve it by calling setInputType(…)
Continue readingNativeScript ListView isn't updating
Issue So I have a ListView like this <ListView height=”150″ [items]=”countries”> <ng-template let-country=”item”> <Image src={{country.imgSrc}}></Image> <Label text={{country.name}}></Label> </ng-template> </ListView> I have a subscription to an Observable that is returning an array of countries. countries: any[] = []; ngOnInit() { this.countryService.countriesUpdated.subscribe(
Continue readingNativescript CLI says Android SDK not configured properly, but I don't know how to fix it
Issue I am developing a Nativescript app and would like to run it on my physical Android device (Huawei P10 lite) via USB. I downloaded the Android SDK CLI tools and extracted it into my ~/Android/ directory and I’ve set
Continue readingNativescript accessing localhost access in android and ios
Issue I have a local node rest api running on my system. My question is ,when accessing localhost from android we are supposed to use 10.0.2.2. And When using ios we can use localhost . So is there a way
Continue readingHow to get the reference of a Nativescript angular modal's native view window?
Issue I am trying to set Immersive mode only in modal page but when I do the below in ngOnInit of the modal component Application.android.foregroundActivity.getWindow().getDecorView().setSystemUiVisibility( // tslint:disable-next-line:no-bitwise View.SYSTEM_UI_FLAG_LAYOUT_STABLE | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION // hide nav bar | View.SYSTEM_UI_FLAG_IMMERSIVE ); It
Continue readingHow can I choose picture from android gallery using Nativescript?
Issue I have been browsing Nativescript website and did not manage to find a way to get a picture locally from my phone. If anyone knows a way to do it on both android and ios I would be really
Continue readingHow can I generate a random number in a certain range?
Issue How can I create an app that generates a random number in Android using Eclipse and then show the result in a TextView field? The random number has to be in a range selected by the user. So, the
Continue readingnativescript "Install Android SDK Platform 25" failed
Issue I am creating an app using nativescript. I have add the android platform as follows tns platform add android –sdk 22 as I want to build for API level 22. And when I build the app I get the
Continue readingCannot read property MyToast.java of undefined
Issue I have been following this Tutorial to achieve Write Java code in nativescript and use directly in typescript But I got an error Cannot read property ‘MyToast’ of undefined app.component.ts: import {Component} from “@angular/core”; let application = require(“application”); declare
Continue readingnative modules are not working correctly in nativescript
Issue I am trying to use this android package to make a blur effect in nativescript. https://github.com/wasabeef/Blurry so in nativescript included the compile in my app.gradle in the /app/App_Resources/Android/app.gradle then rebuild everything works good and builds great. but when I
Continue readingAndroid and IOS application cross-platform development
Issue I have to develop a simple application for Android and IOS (Gui with use standard android/ ios components – both have equivalent components for what I want use). So I’m looking for a cross-platform solution that can make it
Continue readingAssets Folder Not Including HTML Files In NativeScript Android Build
Issue I am trying to display a local html file with JS and CSS and PNG images referenced by it. I put the files into my assets folder of a NativeScript x Angular app for Android. When I run tns
Continue readingCall android method (sdk, aar or jar) from nativescript
Issue I need to develop a nativescript app integrated with a sdk android native. I created a sample app in android studio and generated a aar file, then I build a nativescript plugin using this file. Finally I included that
Continue readingNativeScript navigate to another page from custom Android activity
Issue I am developing an APP with wechat login feature. After getting approval from wechat it will call a custom activity of my NativeScript APP. I am getting response correctly but how can I move to another page instated of
Continue readingError NativeScript- empty app is shown instead of content
Issue I created a web app with Angular v7 and now I want to migrate my web app to a NativeScript mobile app. I followed the instruction from the official site of NativeScript and everything worked perfectly until I adjusted
Continue readingHow to create a custom navigation bar in NativeScript?
Issue I am new to NativeScript and experimenting with it a little via the playground. There are some UIs that i’d like to implement and don’t see samples of and I was wondering what would it take to implement? specifically,
Continue readingRemote image on NavigationButton in Nativescript/Angular
Issue I want to put the user’s avatar on the left of my app’s header. It works fine in IOS, but it doesn’t work in android. I tried to do this: <NavigationButton [icon]=”customImage” color=”#a81b38″ (tap)=”toggleSideDrawer()” *ngIf=”isAndroid”> <StackLayout verticalAlignment=”center”> <Label id=”avatarImg”
Continue readingSet size to icon in NavigationButton on Android
Issue In a Nativescript/Angular app I have the avatar of the user on the left in the header. For Android, I have to use NavigationButton: <NavigationButton #navigationButton *ngIf=”isAndroid” [loaded]=”navigationButtonLoaded()” [icon]=”customImage” (tap)=”toggleSideDrawer()”> </NavigationButton> The customImage is a https resource; NavigationButton wants
Continue readingIssue in android:pathPrefix on AndroidManifest.xml with special character #
Issue I have the following link: https://thus.customapp.it/#/app/customapp/itemDetail/45289348293423 I want that this link is captured and opened with my app. So, I added these lines on AndroidManifest file: <intent-filter> <action android:name=”android.intent.action.VIEW” /> <category android:name=”android.intent.category.DEFAULT” /> <category android:name=”android.intent.category.BROWSABLE” /> <data android:scheme=”https” android:host=”thus.customapp.it”
Continue readingClose selected day in Nativescript RadCalendar
Issue In my Nativescript + Angular application I’m using RadCalendar component. I have a custom button that go to current day. With an android phone I have an issue: if I swipe 2 months and click a day cell, it
Continue readingHow to override an overload Java method in nativescript?
Issue I have an Android-Java class that have two overloaded methods package com.test; public class A{ public void theMethod(Bitmap bitmap){ … } public void theMethod(int resource){ … } } And I am trying to extends the class in a Nativescript-Angular
Continue readingCreate Spinner dropdown list in nativescript-angular app
Issue How can I create dropdown list spinner in nativescript angular application that can be used for both the platform android and ios https://i.stack.imgur.com/hxS9J.png Solution Use the DropDown plugin tns plugin add nativescript-drop-down Note: The DropDown in the image is
Continue readingHow to make geolocation background services work in my nativescript-angular app?
Issue I’m using this geolocation-plugin (https://github.com/NativeScript/nativescript-geolocation/tree/e125998c07ced42a215aca1a8feac1b7dbe7b6d6) to get constant location updates while app is in the background. I tried using the code in the demo, but I’m not figuring out how to make it work. I would like the user
Continue readingAfter upgrading to Nativescript 6 with AndroidX support Google map stopped working in Android
Issue Before the upgrade to Nativescript 6, everything worked perfectly. After that, whithout any changes to configuration, Android started to throw exception while loading MapView: ERROR Error: java.lang.RuntimeException: API key not found. Check that <meta-data android:name=”com.google.android.geo.API_KEY” android:value=”your API key”/> is
Continue readingHow to access component method inside my ios delegate class
Issue How to access a method from the app component to main.ts file?? I am developing android and ios mobile application using Nativescript angular. I have created a ios delegate class for application onResume. I want to call the native
Continue readingActivityCompat always undefined on android.support.v4.app
Issue Recently I have created native script angular app. I’m trying to get read permissions for SMS but getting below error ERROR TypeError: Cannot read property ‘requestPermissions’ of undefined (<any>android.support.v4.app.ActivityCompat).requestPermissions(app.android.context, [(<any>android).Manifest.permission.RECEIVE_SMS], REQUEST_REQUIRED_PERMISSIONS); added below lines to manifest.xml <uses-permission android:name=”android.permission.RECEIVE_SMS”/> <uses-permission
Continue readingNativeScript won't run local build from Sidekick
Issue I freshly installed Sidekick for NativeScript. When I press “Run on Device” button application throws “Your system is not configured for local builds” Weirdly running the app from cmd with tsc run command works perfectly and application compiles and
Continue readingConnecting the emulator to vagrant laravel homestead
Issue i have project, its backend uses laravel and I put it to vagrant in virtualbox machine. I have succeeded to access from my local browser. and now I must build android app that calls api from the backend. but
Continue readingNativeScript Android Build fails with an exception – Unsupported class file major version 57
Issue I have nativescript angular app in which I have implemented following plugins. “@agm/core”: “^1.0.0-beta.7”, “@angular/animations”: “~8.2.0”, “@angular/cdk”: “^8.2.3”, “@angular/common”: “~8.2.0”, “@angular/compiler”: “~8.2.0”, “@angular/core”: “~8.2.0”, “@angular/forms”: “~8.2.0”, “@angular/http”: “8.0.0-beta.10”, “@angular/material”: “^8.2.3”, “@angular/material-moment-adapter”: “^8.1.4”, “@angular/platform-browser”: “~8.2.0”, “@angular/platform-browser-dynamic”: “~8.2.0”, “@angular/router”: “~8.2.0”, “@material-extended/mde”:
Continue readingNativeScript Angular Cleartext HTTP traffic to localhost not permitted
Issue I am working with angular version of native script and trying to create a login system to my network. Below is my code that attempts to log into the network. home.component.ts import { LoginService } from ‘../Services/login/login.service’; export class
Continue readinguse Android Native code (JAVA) in NativeScript
Issue i want to use native android code in my NativeScript app to check if there is update available in play store. I am using official android docs. Support in app updates Android The native java code is below //
Continue readingNativeScript CleartextHTTPTrafficNotPermitted
Issue I want to make a HTTP-Request to my local Node-Backend. So I configured my AndroidManifest.xml and my network_security_config.xml to allow cleartext HTTP traffic. But it seems that my NativeScript App is not correctly initializing the AndroidManifest.xml. <manifest xmlns:android=”http://schemas.android.com/apk/res/android” package=”__PACKAGE__”
Continue readingis there a way to clear AppURL via handleOpenURL in Nativescript?
Issue appURL values remain in the scope of app after it is suspended and then resumed. I am trying to reset the values of appURL after it has been received in App Component initialized in Nativescript Application import { handleOpenURL,
Continue readingNavigating nested routes in NativeScript Angular
Issue In my NativeScript Angular Project this is my router module: export const routes = [ {path: “user”, component: UserComponent, children: [ { path: “dashboard”, component: DashboardComponent }, { path: “notice”, component: NoticeComponent }, { path: “attendance”, component: AttendanceComponent },
Continue readingAndroid Sentry is Undefined after providing DSN
Issue I just recently added Sentry into my Android application. The App is built using Nativescript but trying to release it on the Google Play store. I added the implementation of android sentry in my build.gradle file, and added the
Continue readingNativeScript Angular – How can I add an android service to handle notifications? (java.lang.RuntimeException: Unable to instantiate service)
Issue I am trying to create an android service for handling Firebase messages (the nativescript-plugin-firebase library does not allow me to utilize data-only messages in the background), but I cannot seem to get the service to function correctly. Specifically, I
Continue readingWhite screen after saving changes with NativeScript Angular HMR on Android emulator
Issue I created a NativeScript 7.1 project with Angular 11 using tns create my-blank-ng –template @nativescript/template-blank-ng and then run it using tns run. The app at first runs perfectly, but it only shows a white screen after saving changes which
Continue readingHow can I run android in bundle for Nativescript
Issue When I followed the steps to migrate a web project to code sharing using angular, after doing tns run android –bundle, I got the following error: ERROR in Could not resolve module C:\Ideas\Source\b2bAngular\src\app.module Webpack compilation complete. Watching for file
Continue readingAfter tns build android –release app doesn't make REST calls
Issue Releted to this I wrote a cross-platform app with NativeScript + Angular. I create the .keystore file with this command (as shown in the documentation): keytool -genkey -v -keystore <my-release-key>.keystore -alias <alias_name> -keyalg RSA -keysize 2048 -validity 10000 I
Continue readingNativescript ListPicker breaks strings into individual characters
Issue I’m trying to use Nativescript’s ListPicker to collect data in my ios/android application. I’m running into a problem where instead of showing each individual string or number, it breaks everything down into individual characters. For example, I want to
Continue readingNativescript Cannot fit requested classes in a single dex file
Issue I’ve been having trouble with this issue for quite a while and I have run out of things to try. I think I’ve tried every similar solution to this problem to no avail. I would like to see if
Continue readingAndroid Nativescript app crashing on start up
Issue I’m building a Nativescript app that will handle both the iOS and Android platforms. It’s an app that uses bluetooth permissions, firebase, and it’s targetSDK is 30 (due to Google Play Policy) My app is crashing on start up,
Continue readingHow to correct read file from "Downloads" folder in NativeScript app?
Issue I write a Android app on NativeScript. I have defined required permissions in App_Resources/Android/AndroidManifest.xml: <uses-permission android:name=”android.permission.READ_EXTERNAL_STORAGE”/> I know that it’s not enough for getting access to storage, so I have requested permission in runtime and check it in System
Continue readingHow to properly get Android Application Context in Nativescript
Issue I am creating a Nativescript Application with some specific native handling on Android. As it was needed to initialize a plugin on onCreate() method of Android, I extended Nativescript’s Main Application by following: https://docs.nativescript.org/core-concepts/android-runtime/advanced-topics/extend-application-activity I also can confirm that
Continue readingCss overflow:scroll does not work on mobile
Issue I have a website and I want to display comments in a div. I tried to use an overflow scroll div but it overflowed on mobile devices. It does work on my computer What am I doing wrong? Solution
Continue readingCapacitor Hard ware back button closing the app in release build
Issue I am handling the back button by adding a listener in the _app.tsx of my react project like so useEffect(() => { CapacitorApp.addListener("backButton", () => { if (router.pathname === "/") { CapacitorApp.exitApp(); } else { router.back(); } }); return
Continue readingOneSignal Notifications delay
Issue I have an ionic 2 app running on android with a wordpress site providing the data. I have notifications working with onesignal. The problem is that the notification arrives before the rest API data is updated. The App can
Continue readingupdating an ionic app results in data loss
Issue Working on an update for an existing (live) ionic/cordova app. When making an android upgrade test to the new version of the app, all data of the old version is lost. I first thought it has something to do
Continue readingWhy is the second background image not displaying after rotating my device?
Issue I have two background images to create a layered effect and to keep the file sizes small. There’s a repeating star pattern in the back, and a white "cutout" on top (there are two versions of the latter: for
Continue readingHow to use dependecy injection in flutter?
Issue I wan to use di. in flutter and I add this https://pub.dartlang.org/packages/di packages my project and I started to read this https://webdev.dartlang.org/angular/guide/dependency-injection article, but I don’t fully understand. So it’s ok: use @Injectable() annotation on services class(e.g: MyServices), but
Continue readingOpen email application using expo-intent-launcher
Issue I am using expo intent launcher to open email application in android devices (open mail only/not compose email) https://docs.expo.dev/versions/v43.0.0/sdk/intent-launcher/ and it is working fine using expo-intent-launcher version ~9.1.0, but after upgrading the expo-intent-launcher to version ~10.0.3 it does not
Continue readinghow to encrypt text with accent using aes-256-gcm in android
Issue I try to encrypt the text with accent and the node js server fails to decrypt it I get the response "Error: Unsupported state or unable to authenticate data". How can I do? Here is Android file to encrypt
Continue readingAndroid WebView crashes trying to play .mp4 video via <video> tag
Issue We have Android Studio 2.0 installed. Using android studio 2.0 we have created new application. Inside that application we added WebView. We try to open our webpage inside webview. Our webpage contains following video tag: <video id=”my_video” width=”100%” height=”100%”
Continue readingError:Unable to locate adb within SDK in Android Studio
Issue Does anyone know what this means? When I click the "run" button on my simulator I get this message. Throwable: Unable to locate adb within SDK I am running the latest version, 0.8.14. Solution The ADB is now located
Continue readingHow to prevent mobile keyboard from rising footer over the text fields?
Issue I am having trouble with my footer. I want the footer to stay at the bottom of the screen, but there is a slight problem. When using mobile browser, some fields get blocked by the footer when opening the
Continue readingHow do I get a string that contains a link in Android?
Issue following problem: I have got a method that generates the result of some computation and returns this result as a string. Now I would like this result to contain a clickable link. How do I do that? Here is
Continue readingERROR: Failed to launch application on device: ERROR: Failed to install apk to device: not installing on Android api level 23
Issue I am currently working on developing hybrid app using ionic. At this moment everything works fine as expected when i try to run it in browser using ionic run and grunt serve. But when i try to install app
Continue readingSet rowSpan or colSpan of a child of a GridLayout programmatically?
Issue I have a GridLayout with 5 columns and 3 rows. Now I can insert arbitrary child views, which is great. Even better is, that I can assign columnSpan=2 to some item in order to span it to 2 columns
Continue readingHamburger Menu not working in Android WebView
Issue I have a weird problem with Andriod WebView. My website’s Humberger menu expands and closes fine in my mobile browser but on my Android WebView app when the menu is clicked it’s not working (doesn’t expand fully to show
Continue readingHTML responsive font size for mobile devices
Issue I have an application that runs on Android and IOS. The application has some WebView components that displays HTML From what I found there are “em” and “viewport” units as well as “@media” in css. I’m new to HTML5
Continue readingHTML: Why does Android browser show "Go" instead of "Next" in keyboard?
Issue I have an HTML login form that contains following elements (in this order): input type=text (user name input) input type=password (password) input type=submit (Login button) Why does the Android browser show “Go” button in soft keyboard instead of “Next”
Continue readingHow to build expo apk using eas build
Issue After updating expo it no longer supports building apk files using expo build:android -t apk and instead advices to using eas builds using the command eas build -p android –profile preview but it ended up building an aab instead
Continue readingCan't install nodejs in Termux on Android
Issue When I do pkg install nodejs or pkg install nodejs-lts it gives me a this message: Checking availability of current mirror: ok Ign:1 https://dl.bintray.com/grimler/game-packages-24 games InRelease Ign:2 https://dl.bintray.com/grimler/science-packages-24 science InRelease Err:3 https://dl.bintray.com/grimler/game-packages-24 games Release OpenSSL SSL_connect: SSL_ERROR_SYSCALL in connection
Continue readingHandling refresh tokens for FCM device groups
Issue I am trying to implement Firebase cloud messaging in my Android app through a Node.js server and I have got stuck at a usecase. I saw the Firebase tutorial of creating a device group using registration tokens to send
Continue readingIonic build fails at "Could not resolve com.google.android.gms:play-services-ads-identifier:[15.0.0, 16.0.99]"
Issue So building was always fine until it wasn’t. Nothing new was added, nothing was removed, no packages installed, nothing. Everything was working fine until the build issues happened. This is the full error report > Configure project :app Error
Continue readingSomething went wrong with Google Auth only on Android
Issue My firebase authentication used to work smoothly on my IONIC app on both iOS and Android. Testing on Android after quite a few changes working on IOS side, I can no longer make a google login, though it still
Continue readingHow do I stop Brave browser on Android turning static text into web links?
Issue While testing my web page on Brave browser on Android, there was an unexpected behaviour where a person’s name that was displayed in the page within a td element was automatically turned into a web search link, e.g. <td>James
Continue readingCordova Android Build Dose Not Consider Some Of my Styles
Issue Hello Guys I am using angular for developing an application my output on web is totally fine but when i use cordova to build for android its seems like some of my styles does not considered i checked style.css
Continue readingHow to display HTML in TextView?
Issue I have simple HTML: <h2>Title</h2><br> <p>description here</p> I want to display HTML styled text it in TextView. How to do this? Solution You need to use Html.fromHtml() to use HTML in your XML Strings. Simply referencing a String with
Continue readingHow to display HTML img tag inside Android TextView
Issue Hi I am new to android development. I have a string which looks like this String source = "Hi <b>Ram</b>. This is the Formula <img src=\"https://i.postimg.cc/wTXjVKDf/ste.png\"/> Check it Out"; I want to display it in TextView. I used textView.setText(Html.fromHtml(source,
Continue readingCreate a link that opens the appropriate map app on any device, with directions to destination
Issue I rather thought this would not be so hard to find out but appearantly it is not easy to find an awesome cross device article, like you’d expect. I want to create a link which opens either the mobile
Continue reading100% width tables don't work in Gmail Android
Issue I’m trying to build a responsive email – it’s actually working pretty great across the board, except for some small pieces that aren’t co-operating in Gmail for Android. I have these seriously simple black stripes that sit at the
Continue readingHow to decrypt JSON data in android from node js
Issue I try to decrypt to json response in Android from node js server and it does not decrypt it correctly. But it decrypted correctly a string or JSONArray. When i decrypt json object in node js from android, it
Continue readingHandling refresh tokens for FCM device groups
Issue I am trying to implement Firebase cloud messaging in my Android app through a Node.js server and I have got stuck at a usecase. I saw the Firebase tutorial of creating a device group using registration tokens to send
Continue readingNo option to upload APK in play console
Issue I cannot find an option to upload APK, only option available is to upload app bundle. I have a signed APK that I need to publish. Solution Now we can not upload .apk files in the google play console,
Continue readingSet date and get Date from Material Date Picker in Kotlin Android
Issue I’m learning kotlin and at the moment I don’t know much, I want to change a datepicker that I have for one of type Material, the problem is that I don’t know how to pass the data to this
Continue readingAndroid signed APK can not make API calls
Issue Our app has started hanging when making API calls despite not being updated in production for months. We can replicate the issue using the Play Store version of the app or by creating a locally built APK file and
Continue readingKeyboard.hide() doesn't work in capacitor / ionic 6 project
Issue I have a simple form that the user can enter a value and those two values are added together. This is my form code: <form (ngSubmit)="calculateTwo(value1, value2)"> <ion-grid> <ion-row> <ion-col> <ion-item> <ion-input name="value1" type="number" [(ngModel)]="value1" (keyup.enter)="calculateTwo(value1, value2)"> </ion-input> </ion-item>
Continue readingHow to remove unneeded permissions on Ionic 5 capacitor Android app?
Issue I am setting up my first Ionic React app. I created an app with Ionic 5 and used the In-app Purchase 2 plugin. I wanted to test this, so I uploaded the signed APK to the Play Store. When
Continue readingAndroid signed APK can not make API calls
Issue Our app has started hanging when making API calls despite not being updated in production for months. We can replicate the issue using the Play Store version of the app or by creating a locally built APK file and
Continue readingAndroid signed APK can not make API calls
Issue Our app has started hanging when making API calls despite not being updated in production for months. We can replicate the issue using the Play Store version of the app or by creating a locally built APK file and
Continue readingHow to style the Android status bar on Nativescript?
Issue The problem I’m having (and for which I haven’t been able to find a solution) is how to style the status bar in NativeScript. I tried to use this but when I put the <x:StatusBar android:barStyle="#0E0A0E"/> line wherever in
Continue readingHow to style the Android status bar on Nativescript?
Issue The problem I’m having (and for which I haven’t been able to find a solution) is how to style the status bar in NativeScript. I tried to use this but when I put the <x:StatusBar android:barStyle="#0E0A0E"/> line wherever in
Continue readingLinear-Gradient not working on Android device (NativeScript 8)
Issue I implemented a linear-gradient to an image in my NativeScript 8 app. it works fine on iOS but Android somehow has some issues with it. I also tried solutions like using -webkit-linear-gradient() but it still doesn’t do what I
Continue readingLinear-Gradient not working on Android device (NativeScript 8)
Issue I implemented a linear-gradient to an image in my NativeScript 8 app. it works fine on iOS but Android somehow has some issues with it. I also tried solutions like using -webkit-linear-gradient() but it still doesn’t do what I
Continue reading