Blame view

app/src/main/AndroidManifest.xml 1.94 KB
af6964e6   Edmur LOPES   create new git
1
2
3
4
5
6
7
8
9
10
11
  <?xml version="1.0" encoding="utf-8"?>
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="ssrmarcsautelet.automation.appli.ssrmarcsautelet">
      <uses-permission android:name="android.permission.INTERNET"></uses-permission>
      <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"></uses-permission>
      <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
  
      <application
          android:allowBackup="true"
          android:icon="@mipmap/ic_launcher"
          android:label="@string/app_name"
2d1b24f6   rcavalie   modifications pou...
12
  
af6964e6   Edmur LOPES   create new git
13
14
15
16
17
          android:supportsRtl="true"
          android:theme="@style/AppTheme">
          <activity
              android:name=".MainActivity"
              android:label="@string/app_name"
2d1b24f6   rcavalie   modifications pou...
18
              >
af6964e6   Edmur LOPES   create new git
19
20
21
22
23
24
25
26
27
28
29
              <intent-filter>
                  <action android:name="android.intent.action.MAIN" />
  
                  <category android:name="android.intent.category.LAUNCHER" />
              </intent-filter>
          </activity>
  
          <activity android:name=".savoirplus" />
          <activity
              android:name=".activity_age1"
              android:label="@string/app_name"
2d1b24f6   rcavalie   modifications pou...
30
              />
af6964e6   Edmur LOPES   create new git
31
32
33
          <activity
              android:name=".activity_age2"
              android:label="@string/app_name"
2d1b24f6   rcavalie   modifications pou...
34
              />
af6964e6   Edmur LOPES   create new git
35
36
37
38
          <activity android:name=".activity_age3" />
          <activity
              android:name=".educ3"
              android:label="@string/app_name"
2d1b24f6   rcavalie   modifications pou...
39
               />
af6964e6   Edmur LOPES   create new git
40
41
42
          <activity
              android:name=".educ2"
              android:label="@string/app_name"
2d1b24f6   rcavalie   modifications pou...
43
              />
af6964e6   Edmur LOPES   create new git
44
45
46
          <activity
              android:name=".educ1"
              android:label="@string/app_name"
2d1b24f6   rcavalie   modifications pou...
47
              />
af6964e6   Edmur LOPES   create new git
48
49
50
          <activity
              android:name=".activity_hop"
              android:label="@string/app_name"
2d1b24f6   rcavalie   modifications pou...
51
              />
af6964e6   Edmur LOPES   create new git
52
53
54
55
56
57
58
          <activity
              android:name=".plan_hospital"
              android:label="@string/app_name"
              android:screenOrientation="landscape" />
      </application>
  
  </manifest>