Questions tagged [package-name]

An Android project package name that uniquely identifies an app.

165 questions
2
votes
3 answers

Android parse error Installation error: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED (because of Capital letters in package name)

This question is linked with my earlier question. please see below link. Android - Change package name of live application So now i am buiding my apk with older package name i.e.,'AnantApps.Moodlytics'. I also have made all required changes for…
iRoid Solutions
  • 415
  • 6
  • 20
1
vote
0 answers

How to get the packagename of the app that is running in the foreground on an Amazon firetv stick 4K Max?

I’m messing around with this problem for a long time and I’m very clueless how to get this going. I want to create an app for the Amazon firetv stick 4k max (Android 9 - API level 28), that monitors if one specific app is in the foreground (or gets…
1
vote
0 answers

Google Play Console: Can I change the package name to the package name of another app on the same account?

On the Google Play Console, I have two apps that have package names com.package1 and com.package2. I want to change com.package1 to com.package2. It doesn't matter to me what com.package2 gets changed to. Is this possible? I know that you can change…
1
vote
2 answers

Not a valid Dart package name - Flutter error

I want my app to be available for the web. I run this command: flutter create . I get this error: "Fredi" is not a valid Dart package name. I know that there shouldn't be any capital letters. However, I do not know how to change the dart package…
Tomas Ward
  • 854
  • 6
  • 23
1
vote
1 answer

Andorid Root package from file in Wizard Template Intellij

Create a file in the application package(top level) using Intellij Wizard Template.It's working in some machine and not working in linux machine. fun getApplicationPackageFile(srcOut: File, applicationPackage: String): File { var…
Taimoor Khan
  • 541
  • 4
  • 20
1
vote
0 answers

Deploying Android app to different app stores with same code but diffent apk package name

I would like to know if it is possible to modify the AndroidStudio project for my app so that different modules or variants are in it that have the same code base, but different apk package name, one for each app store I want publish the app. For…
1
vote
2 answers

A better way to change Bundle Id / Package Name in Android than to Refactor

I have whitelabeling for my apps for different customers that are all based on the same app. Only minor configuration changes needed on the app. One thing I find hard to figure out is a nice way to configure for different Bundle Id and Package Name.…
Axil
  • 3,606
  • 10
  • 62
  • 136
1
vote
0 answers

Change package name without changing file path

Is it possible to change the package name without changing the file path? We have a project and we are considering submitting it to the store with a different package name. We want to be able to merge into the new project when we make changes to the…
enjektor0
  • 483
  • 2
  • 8
1
vote
1 answer

how to get the package name of android messaging App?

I want to get a package name of android messaging application which works with every android device brands like now I'm testing on samsung A31 and it's package name is "com.samsung.android.messaging" but it only works with samsung phones. Is there…
1
vote
0 answers

How can I get the Provider's package name by ContentResolver?

App A has registed a provider, and in App B I can get ContentResolver by that uri. How can I get App A's package name only using the uri or resolver?
1
vote
1 answer

Flutter package name for googleplaystore

Hi I searched how to change package name in flutter.But I'm using Firebase admob in my app. My app package name is "package_name": "com.example.flutter_apptry" I tryed to upload the app to the store but google says Since "com.example" is…
nodermonch
  • 119
  • 1
  • 2
  • 9
1
vote
1 answer

Packagename of Installed apps

I want to work on an app similar to Package Name Viewer 2.0 that could load the packagenames of all the installed apps in the device. Actually I have searched a lot about it even discussed with my seniors and even tried to contact with the owner of…
Shoaib Kakal
  • 1,090
  • 2
  • 16
  • 32
1
vote
1 answer

Where is package folder ? that should stored in android device?

I am having problem i have just created a simple android app.I want to know that the folder of package name i.e. com.xx.xx in Android/data as usually created when we install an app is not present on my device how to solve this problem. Is something…
Md Aman
  • 340
  • 3
  • 10
1
vote
0 answers

Get continuous package name in service

I want to get continuously package name of launch app its working fine but when no one apps open then i want to get default launcher package name,So launcher package name get like below code: PackageManager localPackageManager =…
Makvin
  • 3,475
  • 27
  • 26
1
vote
2 answers

Deploying 1 python package under 2 different names

I am trying to have 2 simultaneous versions of a single package on a server. A production and a testing one. I want these 2 to be on the same git repository on 2 different branches (The testing would merge into production) however i would love to…