Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

android / dayu

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • dayu
  • baseSDK
  • src
  • main
  • AndroidManifest.xml
Find file
BlameHistoryPermalink
  • 罗翻's avatar
    buildgradle统一进行管理 · bc2420be
    罗翻 committed 7 years ago
    bc2420be
AndroidManifest.xml 721 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.dayu.baselibrary">

    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        android:supportsRtl="true">
        <service android:name="com.dayu.base.api.DownloadService" />

        <receiver android:name="com.dayu.utils.NetworkConnectChangedReceiver">
            <intent-filter>
                <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
                <action android:name="android.net.wifi.WIFI_STATE_CHANGED" />
                <action android:name="android.net.wifi.STATE_CHANGE" />
            </intent-filter>
        </receiver>
    </application>
</manifest>