Skip to content

Instantly share code, notes, and snippets.

@Nazmul56
Created June 7, 2017 10:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nazmul56/87d57f4e5290c8cf67818b1de35d9594 to your computer and use it in GitHub Desktop.
Save Nazmul56/87d57f4e5290c8cf67818b1de35d9594 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.weblinkstech.newhindivideosongs"
android:versionCode="17"
android:versionName="1.7" >
<uses-sdk android:minSdkVersion="16"
android:targetSdkVersion="25" />
<!-- Always Required to get content and check if internet is available -->
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<!--Parse -->
<uses-permission android:name="android.permission.VIBRATE" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
<application
android:icon="@drawable/ic_launcher"
android:theme="@style/AppTheme"
android:label="@string/app_name"
android:name="com.weblinkstech.newhindivideosongs.App"
android:allowBackup="true" >
<!-- Activities -->
<activity
android:name="com.weblinkstech.newhindivideosongs.MainActivity"
android:theme="@style/AppThemeBar"
android:configChanges="orientation|screenSize"
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.weblinkstech.newhindivideosongs.providers.yt.player.YouTubePlayerActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="sensor"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"/>
<activity android:name="com.weblinkstech.newhindivideosongs.providers.rss.ui.RssDetailActivity" />
<activity android:name="com.weblinkstech.newhindivideosongs.providers.yt.ui.YoutubeDetailActivity" />
<activity android:name="com.weblinkstech.newhindivideosongs.providers.wordpress.ui.WordpressDetailActivity" />
<activity android:name="com.weblinkstech.newhindivideosongs.comments.CommentsActivity"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.weblinkstech.newhindivideosongs.util.MediaActivity"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.weblinkstech.newhindivideosongs.HolderActivity"
android:configChanges="orientation|screenSize"/>
<activity android:name="com.weblinkstech.newhindivideosongs.providers.tumblr.ui.TumblrPagerActivity"
android:theme="@android:style/Theme.Holo.NoActionBar" />
<activity android:name="com.weblinkstech.newhindivideosongs.providers.fav.FavRed"
android:noHistory="true"
android:screenOrientation="portrait"/>
<activity
android:name="com.weblinkstech.newhindivideosongs.about_us"
android:configChanges="orientation|screenSize"
android:label="About Us" />
<service android:name=".FirebaseNotificationService">
<intent-filter>
<action android:name="com.google.firebase.MESSAGING_EVENT"></action>
</intent-filter>
</service>
</application>
</manifest>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment