Newer
Older
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="com.example.fluttern"
4 android:versionCode="1"
5 android:versionName="1.0.0" >
6
7 <uses-sdk
8 android:minSdkVersion="16"
9 android:targetSdkVersion="33" />
10 <!--
11 The INTERNET permission is required for development. Specifically,
12 the Flutter tool needs it to communicate with the running application
13 to allow setting breakpoints, to provide hot reload, etc.
14 -->
15 <uses-permission android:name="android.permission.INTERNET" />
15-->/home/klaranouba/Documents/Armand/Klaranouba/School/University/Master2/Courses/main/Android/TP3/Main/git/fluttertictactoe/android/app/src/debug/AndroidManifest.xml:7:5-66
15-->/home/klaranouba/Documents/Armand/Klaranouba/School/University/Master2/Courses/main/Android/TP3/Main/git/fluttertictactoe/android/app/src/debug/AndroidManifest.xml:7:22-64
16
17 <application
18 android:name="android.app.Application"
19 android:appComponentFactory="androidx.core.app.CoreComponentFactory"
19-->[androidx.core:core:1.6.0] /home/klaranouba/.gradle/caches/transforms-3/4ca28c4a71705f8a687c69dda140a277/transformed/core-1.6.0/AndroidManifest.xml:24:18-86
20 android:debuggable="true"
21 android:icon="@mipmap/ic_launcher"
22 android:label="fluttern" >
23 <activity
24 android:name="com.example.fluttern.MainActivity"
25 android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
26 android:exported="true"
27 android:hardwareAccelerated="true"
28 android:launchMode="singleTop"
29 android:theme="@style/LaunchTheme"
30 android:windowSoftInputMode="adjustResize" >
31
32 <!--
33 Specifies an Android theme to apply to this Activity as soon as
34 the Android process has started. This theme is visible to the user
35 while the Flutter UI initializes. After that, this theme continues
36 to determine the Window background behind the Flutter UI.
37 -->
38 <meta-data
39 android:name="io.flutter.embedding.android.NormalTheme"
40 android:resource="@style/NormalTheme" />
41
42 <intent-filter>
43 <action android:name="android.intent.action.MAIN" />
44
45 <category android:name="android.intent.category.LAUNCHER" />
46 </intent-filter>
47 </activity>
48 <!--
49 Don't delete the meta-data below.
50 This is used by the Flutter tool to generate GeneratedPluginRegistrant.java
51 -->
52 <meta-data
53 android:name="flutterEmbedding"
54 android:value="2" />
55
56 <uses-library
56-->[androidx.window:window:1.0.0-beta04] /home/klaranouba/.gradle/caches/transforms-3/dee59bb480020f42d53c2ea15e4501f7/transformed/jetified-window-1.0.0-beta04/AndroidManifest.xml:25:9-27:40
57 android:name="androidx.window.extensions"
57-->[androidx.window:window:1.0.0-beta04] /home/klaranouba/.gradle/caches/transforms-3/dee59bb480020f42d53c2ea15e4501f7/transformed/jetified-window-1.0.0-beta04/AndroidManifest.xml:26:13-54
58 android:required="false" />
58-->[androidx.window:window:1.0.0-beta04] /home/klaranouba/.gradle/caches/transforms-3/dee59bb480020f42d53c2ea15e4501f7/transformed/jetified-window-1.0.0-beta04/AndroidManifest.xml:27:13-37
59 <uses-library
59-->[androidx.window:window:1.0.0-beta04] /home/klaranouba/.gradle/caches/transforms-3/dee59bb480020f42d53c2ea15e4501f7/transformed/jetified-window-1.0.0-beta04/AndroidManifest.xml:28:9-30:40
60 android:name="androidx.window.sidecar"
60-->[androidx.window:window:1.0.0-beta04] /home/klaranouba/.gradle/caches/transforms-3/dee59bb480020f42d53c2ea15e4501f7/transformed/jetified-window-1.0.0-beta04/AndroidManifest.xml:29:13-51
61 android:required="false" />
61-->[androidx.window:window:1.0.0-beta04] /home/klaranouba/.gradle/caches/transforms-3/dee59bb480020f42d53c2ea15e4501f7/transformed/jetified-window-1.0.0-beta04/AndroidManifest.xml:30:13-37
62 </application>
63
64</manifest>