Skip to main content
Filter by
Sorted by
Tagged with
1 vote
0 answers
49 views

We are developing an app for a client and the app had always set android:allowBackup="true" in the android manifest. We got the request to not allow backups, so we set allowBackup to false, ...
Ennio's user avatar
  • 40
0 votes
1 answer
536 views

I know that EncryptedSharedPreferences use the android keystore to encrypt preferences securely and that the android keystore is tied to the devices hardware I also read that the keystore cannot be ...
quealegriamasalegre's user avatar
0 votes
0 answers
165 views

I have the following settings AndroidManifest.xml <application android:fullBackupOnly="true" android:allowBackup="true" android:fullBackupContent="@xml/...
Cheok Yan Cheng's user avatar
6 votes
1 answer
4k views

When we don't want to maintain SharedPreferences or any backup file, we can just set android:allowBackup="false" in AndroidManifest.xml. But android:allowBackup="false" is ...
CodingBruceLee's user avatar
1 vote
0 answers
3k views

I extracted the package of the app Dafit successfully with ADB. using this command, adb backup -apk com.crrepa.band.dafit with that command I got a file named backup.ab Now I'm using abe.jar to ...
FLASH's user avatar
  • 11
4 votes
1 answer
1k views

I wonder if it's possible to backup and restore a DataStore via the backup feature on Android. Let's say I have some AppDataStore class which provides a logic to keep some user-related preferences via ...
Sergey Trukhachev's user avatar
1 vote
0 answers
352 views

I have an Flutter app where I store some data using Hive. It seemed everything worked fine. But it happened when I factory reset my android phone. Here's what I did. Data backup at Setting Factory ...
Younghee Kim's user avatar
2 votes
1 answer
2k views

I created notification channel when background service is running if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationChannel channel = new NotificationChannel(channelId, ...
HariKarthick's user avatar
  • 1,508
1 vote
1 answer
369 views

I am using the Android AutoBackup feature in my app. These are my manifest settings. <application android:allowBackup="true" android:backupAgent=".BackupAgentCustom" ...
Nao Kreuzeder's user avatar
5 votes
2 answers
3k views

While integrating Keyclock SDK , I try to exchange authorization code to access token authService.performTokenRequest( resp.createTokenExchangeRequest(), new AuthorizationService.TokenResponseCallback(...
Subin Babu's user avatar
  • 1,555
1 vote
0 answers
98 views

My problem is a bit tricky to explain but I will do my best. I have an object called "Store" that contains a list of URI paths (in String format) that have been previously selected by the ...
JoanaBrew's user avatar
4 votes
2 answers
2k views

We're implementing a loginless system on our web, iOS, and Android app that allows the user to have a persistent identity without requiring any sign-up/sign-in flows whatsoever. A key part of ...
monstermac77's user avatar
1 vote
0 answers
209 views

First of all, please consider that I am a newbie to Xamarin.Forms and mobile app development in general, hence solution to this problem might be something pretty easy. Nevertheless, I did a lot of ...
Matyáš Halász's user avatar
0 votes
0 answers
159 views

Android - how to extract/backup your phone contact list and browser favorites (stock browser, not chrome) - a modern Samsung smartphone. Hi, I am grateful for any replies (pls note that we always ...
johnsmiththelird's user avatar
1 vote
0 answers
212 views

I know there's the Android class BackupAgent class which allow users to backup and restore only their own apps data. However, I'm looking for a way to take over the Android's default backup and ...
LordDraagon's user avatar
1 vote
0 answers
109 views

I want to upload the local database of my Android Application which includes Realm File, Video Folder, Image Folder. It is similar to WhatsApp APP as i need to upload the data on drive to restore it ...
Nitin's user avatar
  • 51
4 votes
1 answer
2k views

In https://developer.android.com/guide/topics/manifest/application-element, android:fullBackupOnly This attribute indicates whether or not to use Auto Backup on devices where it is available....
Cheok Yan Cheng's user avatar
0 votes
1 answer
2k views

Why my Service is not running in background when if remove my app from background or remove from recent apps. I very much confuse between IntentService and Service which one I should prefer. I am ...
Ashwin Vishwakarma's user avatar
0 votes
1 answer
441 views

I want to restrict my app's privacy data when user backup/restore in other device. Can I set android:allowBackup="false" in manifest file to achieve this? I am saving unique Id in sharedprefs with ...
Sun_Josh's user avatar
0 votes
0 answers
354 views

I'm receiving crash reports in Google Play Console for my app, and the stacktrace is as follows: java.lang.UnsatisfiedLinkError: at mono.android.Runtime.register (Native Method) at ...
Elvison's user avatar
  • 163
1 vote
0 answers
644 views

I am trying to use Google Backup Transport. Google transport stores into the user's app folder in their drive account which is a secure location, but there is a warning in their documentation. ...
i am E's user avatar
  • 110
17 votes
3 answers
2k views

I've created backup rules file just like in example https://developer.android.com/guide/topics/data/autobackup: <?xml version="1.0" encoding="utf-8"?> <full-backup-content xmlns:android="...
babay's user avatar
  • 4,894
0 votes
1 answer
284 views

I have an requirement where I need to back up shared preferences data of the android library so that if the user reinstalls the application I can still get back the details. I know we have Android ...
Nikhil's user avatar
  • 101
1 vote
1 answer
1k views

I installed the example BackupRestore from this link. https://android.googlesource.com/platform/development/+/0b3758ea4e53f9bfd0b112eaa4a7dd7b7f4040f5/samples/BackupRestore?autodive=0%2F%2F%2F%2F%2F%...
live-love's user avatar
  • 53.1k
5 votes
3 answers
1k views

I am trying to schedule a job to JobIntentService of another app(2 different processes). ComponentName componentName = new ComponentName(context.getPackageName(), "com.anotherapp....
hacker's user avatar
  • 8,957

1
2 3 4 5