Skip to content

Commit

Permalink
Backbutton in toolbar for 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
gerhardol committed Jun 15, 2019
1 parent f23808d commit 997f875
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 12 deletions.
38 changes: 31 additions & 7 deletions app/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".view.MainLayout"/>
android:value="org.runnerup.view.MainLayout"/>
</activity>

<activity
Expand All @@ -130,7 +130,7 @@
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".view.MainLayout"/>
android:value="org.runnerup.view.MainLayout"/>
</activity>

<activity
Expand All @@ -141,13 +141,18 @@
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".view.MainLayout"/>
android:value="org.runnerup.view.MainLayout"/>
</activity>

<activity
android:name=".view.AccountActivity"
android:parentActivityName=".view.AccountListActivity"
android:theme="@style/AppTheme"/>
android:theme="@style/AppTheme">
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.runnerup.view.AccountListActivity"/>
</activity>

<activity android:name=".view.UploadActivity"/>

Expand All @@ -156,6 +161,10 @@
android:label="@string/Manage_workouts"
android:parentActivityName=".view.MainLayout"
android:theme="@style/AppTheme">
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.runnerup.view.MainLayout"/>
<intent-filter tools:ignore="GoogleAppIndexingWarning,AppLinkUrlError">
<action android:name="android.intent.action.VIEW"/>
<action android:name="android.intent.action.EDIT"/>
Expand Down Expand Up @@ -190,19 +199,34 @@
<activity
android:name=".export.oauth2client.OAuth2Activity"
android:parentActivityName=".view.AccountListActivity"
android:theme="@style/AppTheme"/>
android:theme="@style/AppTheme">
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.runnerup.view.AccountListActivity"/>
</activity>

<activity
android:name=".view.HRSettingsActivity"
android:label="@string/Heart_Rate_Monitor"
android:parentActivityName=".view.SettingsActivity"
android:theme="@style/AppTheme"/>
android:theme="@style/AppTheme">
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.runnerup.view.SettingsActivity"/>
</activity>

<activity
android:name=".view.HRZonesActivity"
android:label="@string/Heart_Rate_Zones"
android:parentActivityName=".view.SettingsActivity"
android:theme="@style/AppTheme"/>
android:theme="@style/AppTheme">
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.runnerup.view.SettingsActivity"/>
</activity>

<service android:name=".tracker.Tracker"/>
<service android:name=".export.RunnerUpLiveSynchronizer$LiveService"/>
Expand Down
5 changes: 2 additions & 3 deletions app/froyo/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,9 @@
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.runnerup">
xmlns:tools="http://schemas.android.com/tools">

<uses-sdk tools:overrideLibrary="com.mapbox.mapboxsdk, com.jjoe64.graphview" />
<uses-sdk tools:overrideLibrary="com.mapbox.mapboxsdk, com.jjoe64.graphview, android.support.graphics.drawable.animated" />

<application
android:label="@string/app_name"
Expand Down
3 changes: 1 addition & 2 deletions app/latest/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.runnerup">
xmlns:tools="http://schemas.android.com/tools">


<application
Expand Down

0 comments on commit 997f875

Please sign in to comment.