Created
November 6, 2016 09:56
-
-
Save lokesh541/a1168037110b0ca48a2fc7a505bff58e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="com.it.streamin" | |
| android:versionCode="1" | |
| android:versionName="1.0" > | |
| <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | |
| <uses-permission | |
| android:name="android.permission.ACCESS_WIFI_STATE" | |
| android:required="true" /> | |
| <uses-permission | |
| android:name="android.permission.CHANGE_WIFI_STATE" | |
| android:required="true" /> | |
| <uses-permission | |
| android:name="android.permission.INTERNET" | |
| android:required="true" /> | |
| <uses-sdk | |
| android:minSdkVersion="17" | |
| android:targetSdkVersion="18" /> | |
| <application | |
| android:allowBackup="true" | |
| android:icon="@drawable/ic_launcher" | |
| android:label="@string/app_name" | |
| android:theme="@style/AppTheme" > | |
| <activity | |
| android:name="com.it.streamin.SongListActivity" | |
| android:label="@string/app_name" > | |
| <intent-filter> | |
| <action android:name="android.intent.action.MAIN" /> | |
| <category android:name="android.intent.category.LAUNCHER" /> | |
| </intent-filter> | |
| </activity> | |
| <activity | |
| android:name="com.it.streamin.Player" | |
| android:label="@string/title_activity_player" > | |
| </activity> | |
| <activity | |
| android:name="com.it.streamin.Create_service" | |
| android:label="@string/title_activity_create_service" > | |
| </activity> | |
| <activity | |
| android:name="com.it.streamin.Connection" | |
| android:label="@string/title_activity_connection" > | |
| </activity> | |
| <activity | |
| android:name="com.it.streamin.Test" | |
| android:label="@string/title_activity_test" > | |
| </activity> | |
| <activity | |
| android:name="com.it.streamin.ServerSocket" | |
| android:label="@string/title_activity_server_socket" > | |
| </activity> | |
| <activity | |
| android:name="com.it.streamin.Client_Socket" | |
| android:label="@string/title_activity_client__socket" > | |
| </activity> | |
| </application> | |
| </manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment