yandexads-flutter

Форк
0
42 строки · 2.0 Кб
1
<manifest
2
    xmlns:android="http://schemas.android.com/apk/res/android"
3
    xmlns:tools="http://schemas.android.com/tools"
4
    package="ru.kovardin.flutter_yandex_ads_example">
5

6
    <uses-permission android:name="com.google.android.gms.permission.AD_ID" tools:node="remove"/>
7

8
   <application
9
        android:label="flutter_yandex_ads_example"
10
        android:name="${applicationName}"
11
        android:icon="@mipmap/ic_launcher">
12
       <meta-data
13
               android:name="com.google.android.gms.ads.APPLICATION_ID"
14
               android:value="ca-app-pub-3940256099942544~1458002511"/>
15
        <activity
16
            android:name=".MainActivity"
17
            android:exported="true"
18
            android:launchMode="singleTop"
19
            android:theme="@style/LaunchTheme"
20
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
21
            android:hardwareAccelerated="true"
22
            android:windowSoftInputMode="adjustResize">
23
            <!-- Specifies an Android theme to apply to this Activity as soon as
24
                 the Android process has started. This theme is visible to the user
25
                 while the Flutter UI initializes. After that, this theme continues
26
                 to determine the Window background behind the Flutter UI. -->
27
            <meta-data
28
              android:name="io.flutter.embedding.android.NormalTheme"
29
              android:resource="@style/NormalTheme"
30
              />
31
            <intent-filter>
32
                <action android:name="android.intent.action.MAIN"/>
33
                <category android:name="android.intent.category.LAUNCHER"/>
34
            </intent-filter>
35
        </activity>
36
        <!-- Don't delete the meta-data below.
37
             This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
38
        <meta-data
39
            android:name="flutterEmbedding"
40
            android:value="2" />
41
    </application>
42
</manifest>
43

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.