Skip to content

Commit a5e64a6

Browse files
author
Anirudh S
committed
Renaming AppTheme and AppBaseTheme with a HS prefix
1 parent a4eea2d commit a5e64a6

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

HelpStackExample/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
android:allowBackup="true"
1616
android:icon="@drawable/hs_launcher"
1717
android:label="@string/app_name"
18-
android:theme="@style/AppBaseTheme" android:name="HSApplication"
18+
android:theme="@style/HSAppBaseTheme" android:name="HSApplication"
1919
tools:replace="theme, label">
2020
<activity
2121
android:name="com.example.helpstackexample.MainActivity"

HelpStackExample/res/values-v11/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Base application theme for API 11+. This theme completely replaces
55
AppBaseTheme from res/values/styles.xml on API 11+ devices.
66
-->
7-
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
7+
<style name="HSAppBaseTheme" parent="Theme.AppCompat.Light">
88
<!-- API 11 theme customizations can go here. -->
99
</style>
1010

HelpStackExample/res/values-v14/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
AppBaseTheme from BOTH res/values/styles.xml and
66
res/values-v11/styles.xml on API 14+ devices.
77
-->
8-
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
8+
<style name="HSAppBaseTheme" parent="Theme.AppCompat.Light">
99
<!-- API 14 theme customizations can go here. -->
1010
<!-- <item name="android:actionBarStyle">@style/MyActionBar</item> -->
1111
</style>

HelpStackExample/res/values/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Base application theme, dependent on API level. This theme is replaced
55
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
66
-->
7-
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
7+
<style name="HSAppBaseTheme" parent="Theme.AppCompat.Light">
88
<!--
99
Theme customizations available in newer API levels can go in
1010
res/values-vXX/styles.xml, while customizations related to

helpstack/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
android:allowBackup="true"
1616
android:icon="@drawable/hs_launcher"
1717
android:label="@string/hs_app_name"
18-
android:theme="@style/AppTheme" >
18+
android:theme="@style/HSAppTheme" >
1919
<activity
2020
android:name="com.tenmiles.helpstack.activities.HomeActivity"
2121
android:label="@string/hs_app_name" android:exported="false">

helpstack/res/values-v11/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Base application theme for API 11+. This theme completely replaces
55
AppBaseTheme from res/values/styles.xml on API 11+ devices.
66
-->
7-
<style name="AppTheme" parent="AppBaseTheme">
7+
<style name="HSAppTheme" parent="HSAppBaseTheme">
88
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
99
</style>
1010

helpstack/res/values-v14/styles.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
AppBaseTheme from BOTH res/values/styles.xml and
66
res/values-v11/styles.xml on API 14+ devices.
77
-->
8-
<style name="AppTheme" parent="AppBaseTheme">
8+
<style name="HSAppTheme" parent="HSAppBaseTheme">
99
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
1010
</style>
1111

helpstack/res/values/hs_default_theme.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- Override the properties of the following styles to create custom Styles -->
55

66
<!-- Application Style. -->
7-
<style name="AppTheme" parent="AppBaseTheme">
7+
<style name="HSAppTheme" parent="HSAppBaseTheme">
88
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
99
</style>
1010

helpstack/res/values/hs_default_theme_base.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<!-- Default/Base Themes -->
55
<!-- The base characteristics are defined in the default themes -->
66

7-
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
7+
<style name="HSAppBaseTheme" parent="Theme.AppCompat.Light">
88
</style>
99

1010
<!-- Background default Style -->

0 commit comments

Comments
 (0)