Blame view

PremiereActivite/app/src/main/AndroidManifest.xml 1.19 KB
4abf4602   Florian Deze   Début Interface g...
1
2
  <?xml version="1.0" encoding="utf-8"?>
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
c8059613   JLo'w   Re-fonte de l'app...
3
      package="com.example.app_10p5">
4abf4602   Florian Deze   Début Interface g...
4
  
93f90e35   JLo'w   NFC et foreground
5
      <!-- Nécessaire pour utiliser les cartes NFC -->
b3d818d0   JLo'w   Mise a jour du ma...
6
      <uses-permission android:name="android.permission.NFC" />
520cecde   JLo'w   Un petit plus, un...
7
      <uses-permission android:name="android.permission.INTERNET" />
b3d818d0   JLo'w   Mise a jour du ma...
8
9
      <uses-feature android:name="android.hardware.nfc" android:required="true" />
  
4abf4602   Florian Deze   Début Interface g...
10
11
12
13
14
15
16
      <application
          android:allowBackup="true"
          android:icon="@mipmap/ic_launcher"
          android:label="@string/app_name"
          android:supportsRtl="true"
          android:theme="@style/AppTheme">
          <activity
93f90e35   JLo'w   NFC et foreground
17
18
19
20
21
22
23
24
25
              android:name=".CarteActivite"
              android:launchMode="singleTask"
              android:label="CarteActivite"
              android:parentActivityName="com.example.app_10p5.MainActivite" >
          </activity>
  
          <activity
              android:name=".MainActivite"
              android:label="MainActivite">
4abf4602   Florian Deze   Début Interface g...
26
27
              <intent-filter>
                  <action android:name="android.intent.action.MAIN" />
4abf4602   Florian Deze   Début Interface g...
28
29
30
                  <category android:name="android.intent.category.LAUNCHER" />
              </intent-filter>
          </activity>
4abf4602   Florian Deze   Début Interface g...
31
32
      </application>
  
93f90e35   JLo'w   NFC et foreground
33
  </manifest>