Blame view

PremiereActivite/app/src/main/AndroidManifest.xml 1.07 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
5
6
7
8
9
10
11
  
      <application
          android:allowBackup="true"
          android:icon="@mipmap/ic_launcher"
          android:label="@string/app_name"
          android:supportsRtl="true"
          android:theme="@style/AppTheme">
          <activity
c8059613   JLo'w   Re-fonte de l'app...
12
13
              android:name="com.example.app_10p5.MainActivite"
              android:label="10p5">
4abf4602   Florian Deze   Début Interface g...
14
15
16
17
18
19
              <intent-filter>
                  <action android:name="android.intent.action.MAIN" />
  
                  <category android:name="android.intent.category.LAUNCHER" />
              </intent-filter>
          </activity>
c8059613   JLo'w   Re-fonte de l'app...
20
21
22
23
24
25
26
27
28
          <activity
              android:name="com.example.app_10p5.CarteActivite"
              android:label="CarteActivite"
              android:parentActivityName="com.example.app_10p5.MainActivite" >
              <meta-data
                  android:name="android.support.PARENT_ACTIVITY"
                  android:value="com.example.app_10p5.MainActivite" />
          </activity>
  
4abf4602   Florian Deze   Début Interface g...
29
30
      </application>
  
c8059613   JLo'w   Re-fonte de l'app...
31
  </manifest>