Skip to main content
6
results
Andrew Fletcher
I'm receiving an issue with a previous release on Google Play android.permission.REQUEST_INSTALL_PACKAGESI'm seeing the following message in Google Play Request install packages permission error - Not started - Your app isn't compliant A permission that allows your app to install packages. If your app doesn't need access to this permission, you must remove it from your app.To check the offending release go to App bundle explorer, and view each of the active releases. In my situation, I'm seeing...
Andrew Fletcher
The "keystore password was incorrect" error in keytool indicates that the...
Andrew Fletcher
How to generate a new private key and submit it to Google Play for signing your...
Andrew Fletcher
By default the maximum file upload size is set to 2MB.  It is not a...
Andrew Fletcher
Issues with sign in key... When attempting to upload a APK package, I'm getting...
Andrew Fletcher
Building a contact list using SwiftUI has many challenges. One challenge is having multiple lists displayed on the one screen.  For example, known contacts using your app against contacts on the phone.  Initially, I tried the following code SearchBarView(text: $searchText, placeholder: "Type here") List { Section(header: ContactListHeader(listTitle: "rivals list")) { ForEach(self.userData.rivals.filter{ self.searchText.isEmpty ? true : $0.name.lowercased() ...