Commit 4bc01ac29d1038e7c75bd2ffe762cb4276849064
1 parent
09714e75
添加mainifest注释信息
Showing
1 changed file
with
23 additions
and
19 deletions
app/src/main/AndroidManifest.xml
| ... | ... | @@ -30,6 +30,27 @@ |
| 30 | 30 | </intent-filter> |
| 31 | 31 | </activity> |
| 32 | 32 | |
| 33 | + <activity | |
| 34 | + android:name="cn.vlion.simple.BannerActivity" | |
| 35 | + android:configChanges="keyboardHidden|screenSize|orientation" | |
| 36 | + android:screenOrientation="portrait" /> | |
| 37 | + <activity | |
| 38 | + android:name="cn.vlion.simple.SpotActivity" | |
| 39 | + android:configChanges="keyboardHidden|screenSize|orientation" | |
| 40 | + android:screenOrientation="portrait" /> | |
| 41 | + | |
| 42 | + <activity | |
| 43 | + android:name="cn.vlion.simple.MainActivity" | |
| 44 | + android:configChanges="keyboardHidden|screenSize|orientation" | |
| 45 | + android:screenOrientation="portrait" /> | |
| 46 | + | |
| 47 | + <activity | |
| 48 | + android:name="cn.vlion.simple.NativeActivity" | |
| 49 | + android:configChanges="keyboardHidden|screenSize|orientation" | |
| 50 | + android:screenOrientation="portrait" /> | |
| 51 | + | |
| 52 | + <!--使用瑞狮广告SDK需要配置以下信息--> | |
| 53 | + <!--广告SDK配置 Start--> | |
| 33 | 54 | <receiver android:name="cn.vlion.ad.core.VLionReceiver"> |
| 34 | 55 | <intent-filter> |
| 35 | 56 | <action android:name="android.intent.action.DOWNLOAD_COMPLETE" /> |
| ... | ... | @@ -40,6 +61,7 @@ |
| 40 | 61 | </intent-filter> |
| 41 | 62 | </receiver> |
| 42 | 63 | |
| 64 | + <!--authorities为包名--> | |
| 43 | 65 | <provider |
| 44 | 66 | android:name="android.support.v4.content.FileProvider" |
| 45 | 67 | android:authorities="cn.vlion.simple.fileprovider" |
| ... | ... | @@ -50,26 +72,8 @@ |
| 50 | 72 | android:resource="@xml/vlion_file_provider" /> |
| 51 | 73 | </provider> |
| 52 | 74 | |
| 53 | - <activity | |
| 54 | - android:name="cn.vlion.simple.BannerActivity" | |
| 55 | - android:configChanges="keyboardHidden|screenSize|orientation" | |
| 56 | - android:screenOrientation="portrait" /> | |
| 57 | - <activity | |
| 58 | - android:name="cn.vlion.simple.SpotActivity" | |
| 59 | - android:configChanges="keyboardHidden|screenSize|orientation" | |
| 60 | - android:screenOrientation="portrait" /> | |
| 61 | - | |
| 62 | - <activity | |
| 63 | - android:name="cn.vlion.simple.MainActivity" | |
| 64 | - android:configChanges="keyboardHidden|screenSize|orientation" | |
| 65 | - android:screenOrientation="portrait" /> | |
| 66 | - | |
| 67 | - <activity | |
| 68 | - android:name="cn.vlion.simple.NativeActivity" | |
| 69 | - android:configChanges="keyboardHidden|screenSize|orientation" | |
| 70 | - android:screenOrientation="portrait" /> | |
| 71 | - | |
| 72 | 75 | <activity android:name="cn.vlion.ad.view.webview.VLionWebViewActivity" /> |
| 76 | + <!--广告SDK配置 End--> | |
| 73 | 77 | </application> |
| 74 | 78 | |
| 75 | 79 | </manifest> |
| 76 | 80 | \ No newline at end of file | ... | ... |