1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ xmlns : tools =" http://schemas.android.com/tools"
4
+ package =" jp.fluct.sample.samplefluctsdkapp" >
5
+
6
+ <!-- FluctSDK using permission -->
7
+ <uses-permission android : name =" android.permission.INTERNET" />
8
+ <uses-permission android : name =" android.permission.ACCESS_NETWORK_STATE" />
9
+
10
+ <application
11
+ android : allowBackup =" true"
12
+ android : icon =" @mipmap/ic_launcher"
13
+ android : label =" @string/app_name"
14
+ android : supportsRtl =" true"
15
+ android : theme =" @style/AppTheme"
16
+ android : fullBackupContent =" false"
17
+ tools : ignore =" GoogleAppIndexingWarning" >
18
+
19
+ <!-- Required Google play services definition for using FluctSDK -->
20
+ <meta-data android : name =" com.google.android.gms.version"
21
+ android : value =" @integer/google_play_services_version" />
22
+
23
+ <!-- Required Activity definition for using FluctInterstitial -->
24
+ <activity
25
+ android : name =" jp.fluct.fluctsdk.FluctInterstitialActivity"
26
+ android : configChanges =" orientation|keyboardHidden|screenSize"
27
+ android : theme =" @android:style/Theme.Translucent.NoTitleBar"
28
+ android : launchMode =" singleTask" >
29
+ </activity >
30
+
31
+ <activity android : name =" .MainActivity" >
32
+ <intent-filter >
33
+ <action android : name =" android.intent.action.MAIN" />
34
+
35
+ <category android : name =" android.intent.category.LAUNCHER" />
36
+ </intent-filter >
37
+ </activity >
38
+
39
+ <activity android : name =" .BannerActivity" />
40
+ <activity android : name =" .InterstitialActivity" />
41
+ <activity android : name =" .InfeedActivity" />
42
+
43
+ </application >
44
+
45
+ </manifest >
0 commit comments