An Android project package name that uniquely identifies an app.
Questions tagged [package-name]
165 questions
0
votes
1 answer
Android Wear Application ID Not Changed
When I started developing my Android Wear companion app I was unaware that the package name had to be exactly the same in order to connect. So instead of naming it com.example.myapp, I named it com.example.wear. I subsequently found out that both…

Bryan
- 14,756
- 10
- 70
- 125
0
votes
2 answers
Check if Android app is a game by packageName
This is a question that I've not been able to fetch from StackOverflow or directly from Google. Is it maybe because I didn't search with the right words?
Well, anyway:
I'm trying to check if an app is a game by its packageName.
What I've…

Rafael Ruiz Muñoz
- 5,333
- 6
- 46
- 92
0
votes
1 answer
Android Package Name Issue
if my developer account is terminated then may i use my previous application package name again?
note: When my developer account terminated, my application is running. Account is terminated due to other app's content policy.
that is i used in my…

kamalupatel
- 31
- 6
0
votes
0 answers
Android: manifest package name for Google Play Store
I have developed an app that has a package name in the manifest called:
com.android.example.XXXXXXXXXXXX.
I took a sample from google and added my own code onto it.
Stupidly, I did not changed my package name to something like the reverse order of…

Simon
- 19,658
- 27
- 149
- 217
0
votes
1 answer
Android app visibility and searchability issue after packagename and title were changed
So we had an android app earlier with packagename
app.myapp.company
format
which we wanted to change to
com.mycompany.myapp
So we created a new app with changed package name and changed the app title
From
mygreatapp - app for…

Jagdish Adusumalli
- 509
- 5
- 9
0
votes
1 answer
Can we use the same packagename in android with Different case?
I had an app in the google play store and I lost the keystore file. So now i am trying to delete the previous app and create a new one with same characters but different case.Is it possible?That is if the previous package name is…

Anu
- 1,303
- 3
- 23
- 38
0
votes
0 answers
how to get .apk file byte array from its packagename in AS3/AIR?
I want to know if it's possible to access a .apk file from an installed application on a device (android), via its package Name in as3/air?
Right now I have an ANE file which helps me to get packageName (ex: com.somesite.someApp or air.myApp), I…

SAS
- 1
- 2
0
votes
1 answer
how to determine package name of a class in a jar file
For example, in the following example of log4j.jar:
to import:
import org.apache.log4j.Logger;
Is package name "org.apache.log4j" determined by the path \org\apache\log4j\Logger.class?

Will-i-Am-Davidon
- 1,532
- 1
- 14
- 15
0
votes
0 answers
Get packagename of stock messaging app
my app needs to get the packagename of the stock messaging app. But because every provider has got it's own I dont really know how to solve this.
My only idea would be to check every packagename on runtime to get the correct one.
Has anyone a better…

Koer
- 1
- 2
0
votes
2 answers
session error while running project on android studio
I have changed the package name, it's changed in manifest, classes and everywhere but still when i create it it gets the old one which is com.menny.android.anysoftkeyboard which should be thesherlabs.menny.android.anysoftkeyboard and gives the…

Sher Shah
- 1
- 1
- 1
0
votes
2 answers
is there any restriction on variable name so that it should not conflict with package name?
Suppose, I have one Test class in test package:
package test;
public class Test {
private static int clarying=20;
public static void main(String[] args) {
clarying.Product.display(clarying); // this line is giving error
…

Prashant
- 2,556
- 2
- 20
- 26
0
votes
1 answer
Possibilities of these two apps running on same Process Resources
What if I install an App having Package Name: com.test.
And then install another app having package name: com.test.deeper
Are there any possibilities of these two apps running on same Process Resources?

Parth Kapoor
- 1,494
- 12
- 23
0
votes
1 answer
How does jaxp internal classes work?
I have a very basic doubt. Please help me understand the following lines from this link
http://docs.oracle.com/javase/1.5.0/docs/guide/xml/jaxp/JAXP-Compatibility_150.html
"The solution in the JAXP 1.3 reference name is to change the package names…

user3292957
- 3
- 1
0
votes
0 answers
Error after changing package name
I change my package name by using refactor option . then i made the reacquired changes in manifest file . then i made changes when imports of previous packages is done . But now all reference are giving erorrs. R cannot be resolved to a variable
I…

tinos07
- 105
- 1
- 11
0
votes
3 answers
Change package name in android
How to change Package name from com.example.abc to com.test.abc . And i am also using google maps so i have to make what changes there?
I have tried refactor option , chnaging the package name from manifest .

tinos07
- 105
- 1
- 11