Questions tagged [android-manifest]

The manifest presents essential information about the application to the Android system

Every application must have an AndroidManifest.xml file (with precisely that name) in its root directory. The manifest presents essential information about the application to the Android system, information the system must have before application can be installed and run any of the application's code.

See AndroidManifest.xml permissions

6006 questions
2
votes
1 answer

multiple apps, sharing same data directory

my end goal is to have two apps, a "main" app (which will do all the work the user wants it to do), and a "licence" app, which will check if the app is licensed. my question is, how can i get my licence app (com.example.myapp.licence) to share the…
92Jacko
  • 523
  • 2
  • 10
  • 18
2
votes
1 answer

How to show meta-data of an installed app by adb?

There is a way to add some metadata to AndroidManifest.xml for an app, a service or an activity (https://stackoverflow.com/a/38699357/1263771):
tse
  • 5,769
  • 6
  • 38
  • 58
2
votes
0 answers

How can we read keys stored from cpp file (NDK Implementation) in manifest and build gradle files

As mentioned, i have an ndk implementation to store and api keys, We can read these keys in activity etc, but is there a way to read these in manifest and build.gradle files? Since keys like google geo api keys are to referenced in manifest. Thank…
2
votes
3 answers

db4o on Honeycomb Db4oException: File format incompatible

I'm using db4o in a small project that works great on Android 2.2, 2.3, etc. On Honeycomb, however, database initialization results in the following error: com.db4o.ext.Db4oException: File format incompatible:…
Rockmaninoff
  • 3,573
  • 5
  • 34
  • 35
2
votes
1 answer

Android/Java: I/System.out: Error :java.io.FileNotFoundException: /storage/emulated/0/heremaps/...: open failed: ENOENT (No such file or directory)

I try to copy a folder from the assets to the external storage but I have the error messages: I/System.out: Error :java.io.FileNotFoundException: /storage/emulated/0/heremaps/appcache/sat/12/CURRENT: open failed: ENOENT (No such file or…
ΩlostA
  • 2,501
  • 5
  • 27
  • 63
2
votes
2 answers

processDebugMainManifest FAILED, I am facing this error while using targetSdkVersion as 31

/Users/paradox/Developer/nturing/services/otus/scanner-android/app/src/main/AndroidManifest.xml Error: android:exported needs to be explicitly specified for . Apps targeting Android 12 and higher are required to specify an explicit…
Shadab K
  • 1,677
  • 1
  • 16
  • 25
2
votes
0 answers

What am I missing in my Android compatible-screens configuration?

I need to restrict the devices to which an app is available in the Play Store (specifically, I need it to be available to phones only, no tablets) After some researching, I got this to do the job