Bonjour,
J'ai développé une application Android (image featuring)
Depuis un mois elle ne démarre plus sur mon téléphone.
Dans le Google store, la page affiche "désinstaller" et lorsque je clique sur l'icône le navigateur ouvre la page "informations sur l'application".
Je me demande si c'est mes changements dans le Manifest de l'application qui en sont la cause.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 <activity android:name=".MyCameraActivity" android:exported="true" android:theme="@style/Theme.Design.Light"> <!-- Register as a system camera app --> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> <action android:name="android.intent.action.CREATE_DOCUMENT" /> <action android:name="android.media.action.IMAGE_CAPTURE" /> <action android:name="android.media.action.STILL_IMAGE_CAMERA" /> <action android:name="android.media.action.VIDEO_CAMERA" /> <action android:name="android.intent.action.EDIT" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> <!-- App links for http/s --> <intent-filter android:autoVerify="true"> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="http" /> <data android:scheme="https" /> <data android:host="empty3.one" /> <data android:pathPattern="/camerax" /> </intent-filter> </activity>
Partager