Skip to content

Instantly share code, notes, and snippets.

@csemrm
Created March 29, 2016 08:56
Show Gist options
  • Save csemrm/a33ad966296006694799 to your computer and use it in GitHub Desktop.
Save csemrm/a33ad966296006694799 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Light" parent="Theme.AppCompat.Light"/>
<style name="Dark" parent="Theme.AppCompat"/>
<style name="Theme.CustomActionBar" parent="@style/Theme.AppCompat.Light">
<!-- Specify an Action Bar style to use -->
</style>
</resources>
............
<android xmlns:android="http://schemas.android.com/apk/res/android">
<manifest android:versionCode="1" android:versionName="1.0"
package="mobi.wapZone" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="23"/>
<application android:debuggable="false"
android:icon="@drawable/appicon" android:label="wapZone"
android:name="WapzoneApplication" android:theme="@style/Theme.CustomActionBar">
<activity
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:name=".WapzoneActivity"
android:screenOrientation="nosensor" android:theme="@style/Theme.CustomActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
</application>
</manifest>
</android>
............
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment