Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
21 views

Can you tell me what I need to do to get the APK through the console? How do I check that all the needed tools are installed? And which command or set of commands will create the APK file? I can ...
tunkimi's user avatar
  • 11
1 vote
0 answers
51 views

What is the last version of Android that is supported for Xamarin Forms? I'm trying to update my app to the last possible version of Android for Xamarin Forms. I know I'll have to switch to MAUI ...
t_m27's user avatar
  • 143
1 vote
0 answers
112 views

I'm building a cross-platform app in C# (Avalonia), but am seeing inconsistent/unreliable behavior when accessing the filesystem on Android. This manifests in a variety of ways, but the easiest to ...
J23's user avatar
  • 3,271
0 votes
0 answers
462 views

I received a message from the Google Play Store after uploading the app that the current libraries do not support a 16kb page size: base/lib/arm64-v8a/libSkiaSharp.so base/lib/arm64-v8a/libmonodroid....
Piotr Mackus's user avatar
0 votes
1 answer
44 views

I can save a photo from camera intent to Mediastore Public Picture Directory, but the photo cannot be read back by the app. private bool DoPhoto(int KeepAsking) { Intent intent = new Intent(...
olivier Goossens Bara's user avatar
3 votes
1 answer
2k views

I recently got a critical warning from Google Play Console: "2 of your apps are targeting an old version of Android. Google Play requires all apps to meet target API level requirements before ...
GainzNCode's user avatar
1 vote
1 answer
115 views

I am figuring out how can I run my machine learning model in C#.NET Xamarin Android app. I am testing it inside Android device created using Android Device Manager that comes with VS2022. I have ...
Mahesha999's user avatar
  • 25.3k
0 votes
0 answers
32 views

I've a .jar library for Android. I need to use it from the Xamarin.Forms code (we do not use ios project, only android). So I followed Microsoft guide for Jar Binding, but when I build the app project ...
user18107302's user avatar
0 votes
0 answers
47 views

I'm working on a C# native android project using net8.0-android34.0 as framework version and one of the projects in the solution imports those android libraries: <AndroidLibrary Update="Jars\...
Jesoo's user avatar
  • 104
0 votes
0 answers
56 views

I have tried a lot but not able to fire this OnNotificationOpened or OnNewIntent when I send a Firebase call using notification only or mixed type (using HTTP v1 API https://fcm.googleapis.com/v1/...
Abdul Rashid's user avatar
0 votes
1 answer
37 views

In Android device or emulator, there will be a set of fonts available as system fonts. The list of fonts can be obtained by using this API AvailableFonts Questions: How to display a TextView with the ...
kumar's user avatar
  • 108
0 votes
0 answers
25 views

The type or namespace name 'SalesRecordManager' could not be found (are you missing a using directive or an assembly reference?) The name 'SalesRecordManager' does not exist in the current context The ...
Abhishek Srivastava's user avatar
0 votes
1 answer
75 views

I am trying to bind aar library called "autoreplyprint.aar", following is the aar file link autoreplyprint.aar I have added following itemgroups for the .aar and its .so files <ItemGroup ...
Nikhil Sathawara's user avatar
0 votes
0 answers
44 views

I'm currently working on a Xamarin.Android application where I'm trying to modify the device keyboard's default behavior. Desired Functionality: When editing a non-empty text field, the keyboard ...
Drakdy's user avatar
  • 13
0 votes
0 answers
112 views

Unable to access certificate deployed by SOTI MobiControl in Android app I'm trying to access a certificate that was deployed through SOTI MobiControl in my Xamarin.Android/.NET MAUI Android app. The ...
OTHMAN TEFFAHI's user avatar
0 votes
1 answer
91 views

Has anyone managed to use google play services lately? I found one person who did: Xamarin Android - How to sign in Google Play Services? But I am not sure how because after I install the Xamarin....
Noobius's user avatar
  • 13
2 votes
0 answers
96 views

I have an app created in Xamarin Forms in the store. I recently migrated to Maui. I was using Xamarin.Essentials.Preferences in my Xamarin Forms, and in my Maui I had to change it to Microsoft.Maui....
helper's user avatar
  • 117
0 votes
0 answers
63 views

I am developing an application in Xamarin Android using .NET Standard 2.0. I need to send emails to users within my organization at a certain time. I am trying to implement OAuth 2 authentication ...
user2171002's user avatar
0 votes
0 answers
26 views

I have Visual Studio 2022 (Version 17.12.4) but I can't debug to existing application as its showing debug on IDE but some time not able to launch on devices and sometime if it installs on device also ...
Abhishek Srivastava's user avatar
0 votes
1 answer
241 views

I have an Android Library (.aar) built with Android Studio that uses Compose @Composable. I am trying to create an Android Binding Library in Visual Studio to use my Android Library in a MAUI ...
Foxan's user avatar
  • 21
0 votes
2 answers
64 views

I have a view pager set up and running exactly how I want it to. Once the user is done swiping through the images and data, I need to close/exit the view/viewpager. I put a button on the View that ...
Prescott Chartier's user avatar
2 votes
0 answers
230 views

After migrating to MAUI I have a problem with showing RefreshView Content when the RefreshView is wrapped around Grid and RowDefinition is Auto. <Grid RowDefiniot="Auto"> <...
Rajzer's user avatar
  • 1,296
0 votes
1 answer
48 views

I had to use WorkManager on a mobile app, so it can gather current user emergencies using a PeriodicWorkRequest. But because of my lack of documentation, I implemented it in a bad way, and I ended up ...
Baptiste's user avatar
0 votes
0 answers
36 views

I cannot figure out why I am getting the following build error in my DevOps Pipeline when building a Xamarin Android app. The APK builds find but the AAB build always fails. [error]Core\...
theDoke's user avatar
  • 575
0 votes
0 answers
77 views

There is probably a very simple straightforward answer, but I can't seem to find it. In a previous Project I had the following using statement: using Microsoft.Maui.ApplicationModel; However, I now ...
Nathan Sokalski's user avatar
0 votes
0 answers
22 views

I am receiving a KeyUp in a Xamarin App while the key is still pressed. This only occurs on one device out of several Android 11 devices with the same hardware and configured the same. The device is ...
SPerkins's user avatar
0 votes
1 answer
59 views

Can someone explain to me why my content is not showing when I add the Button with Binding, but if I don't add the Binding, it will show the content of my page? HomePage.xaml <?xml version="1....
Raven's user avatar
  • 5
0 votes
2 answers
76 views

I have several Fragment(s) and a single FragmentActivity in a .NET for Android app. There are multiple external classes (such as RecyclerView.Adapter) that require access to the current Fragment (I ...
Nathan Sokalski's user avatar
0 votes
1 answer
392 views

I am encountering a crash in my Xamarin Android application, but it occurs only on Android 15. The app crashes with the following error: * Assertion at /Users/builder/jenkins/workspace/archive-mono/...
amitpandey00's user avatar
0 votes
0 answers
73 views

I am developing a MAUI application that fetches data from an API (CoinDesk API) to display current Bitcoin price data. The data fetching works fine in Debug mode, but the API call fails to show any ...
Sweathkumar's user avatar
-1 votes
1 answer
99 views

Severity Code Description Project File Line Suppression State Error (active) XALNS7028 System.IO.FileNotFoundException: Could not load assembly 'Xamarin.Android.Support.v7.RecyclerView, ...
Lalit Chauhan's user avatar
0 votes
1 answer
73 views

Suppression State Error (active) MSB4184 The expression """.0-windows10" cannot be evaluated. Method 'System.String.0-windows10' not found. MauiApp1 (net8.0-android), MauiApp1 (...
Mohammad Mamaghaniyan's user avatar
0 votes
0 answers
83 views

I have recently created new android java library binding project in my MAUI 8 solution for use a java .aar library in my MAUI project. I have been added .aar file into Jars/ directory and configured ....
TheMajidz's user avatar
0 votes
0 answers
76 views

I have a Xamarin.Android app in which I am trying to use ViewPager2. The ViewPager2 is defined in my layout as follows: <androidx.viewpager2.widget.ViewPager2 android:id="@+id/vpStartScore&...
Nathan Sokalski's user avatar
0 votes
1 answer
292 views

I have a Xamarin Forms app that I've upgraded to Android 14 which builds fine but it fails when I try to run it in the emulator. I'm running Visual Studio 17.6.3 (build 421) on the Mac. I get the ...
USA's user avatar
  • 11
2 votes
1 answer
388 views

After switching to Api 34 in my Xamarin android project, I get the error 'one of receiver_exported or receiver_not_exported should be specified when a receiver isn't being registered exclusively for ...
Busraaaguler's user avatar
0 votes
1 answer
59 views

I encountered an issue with Xamarin Forms where not all text is displayed in the label, and elements that are off-screen are not shown. Rotating the smartphone temporarily resolves the issue until the ...
N44's user avatar
  • 1
0 votes
0 answers
51 views

How to get filepath to cached bitmap ? When loading from url like below, I'm able to get filePath to the cached image var obj = Glide.With(this) .Load("url") ....
Henrik's user avatar
  • 1,817
2 votes
0 answers
92 views

I have implemented refit from here and it is working for any png image on any site, but for dropbox, when I download from url it gives html text instead of encoded png text [Get("/{url}")] ...
Angularjsguy's user avatar
0 votes
0 answers
30 views

I want to create category list as attached images. Please provide solution how to achieve this. As in image it is seen that there is not static column for each row. Category manage width itself. If ...
Kirti Zare's user avatar
1 vote
1 answer
1k views

First, I'm a complete noob on this. But I have a working MAUI project that builds. But when trying to start using Firebase I run into a problem that I've spent 10 hours googling and chaptGPTing. The ...
Dennis Liljedahl's user avatar
2 votes
0 answers
61 views

I am migrating my xamarin android app to the new .net8.0 framework. This is a nightmare of a task and I have almost completed it apart from migrating my web references successfully. On my previous ...
Christy's user avatar
  • 43
0 votes
1 answer
1k views

.net SDK 8 Android project build log shows below error and creates all ABI combined build. /usr/local/share/dotnet/sdk/8.0.303/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.Sdk....
Santosh P.'s user avatar
0 votes
0 answers
114 views

I would like to read some user settings from the old (another package name) Xamarin.Android app in my new MAUI app. In my old application, I used to save settings by calling the method ...
dkmorb's user avatar
  • 11
1 vote
1 answer
1k views

I created a .Net MAUI application that has a native Android DatePicker. In the directory Platforms/Android/Resources I have two folders, values and values-night for the styles.xml of the Android ...
testsonic_T's user avatar
-1 votes
1 answer
27 views

in xamarin android i have a class class Classdaysun { public int daysun { get; set; } public int monthsun { get; set; } public DateTime time { get; set; } } and ...
ShayW's user avatar
  • 21
0 votes
2 answers
72 views

I'm experiencing an issue with changing the background color of selected items in my Xamarin.Forms application. Despite my efforts, the background color does not change as expected, and it seems like ...
zombie's user avatar
  • 1
0 votes
1 answer
67 views

Yesterday I decided to export my game (on which I'm currently working) to Android. I'm using Monogame for development and also integrated FMOD API (both Core and Studio) using C# wrapper which comes ...
Code Watermelon's user avatar
1 vote
0 answers
763 views

I am very new Xamarin. I have a Xamarin native application for Android and iOS. I want to update it to .NET 8 but not migrate to MAUI. Is there any way I can do this? As i got to know it support till ....
vikash's user avatar
  • 23
0 votes
2 answers
362 views

HTTP Request Error: InternalServerError Internal server error: An error occurred while saving the entity changes. See the inner exception for details. i got this error while trying to save into ...
Mohammed Elyaakoubi's user avatar

1
2 3 4 5
377