Skip to content

Commit

Permalink
Merge pull request #803 from gerhardol/feature/debug-app-suffix
Browse files Browse the repository at this point in the history
Remove Runnerup alpha
  • Loading branch information
gerhardol authored Jul 14, 2019
2 parents a0c00f9 + c16aef7 commit b7a3498
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 18 deletions.
16 changes: 8 additions & 8 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="org.runnerup.view.MainLayout"/>
android:value=".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="org.runnerup.view.MainLayout"/>
android:value=".view.MainLayout"/>
</activity>

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

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

<activity android:name=".view.UploadActivity"/>
Expand All @@ -164,7 +164,7 @@
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.runnerup.view.MainLayout"/>
android:value=".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 @@ -203,7 +203,7 @@
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.runnerup.view.AccountListActivity"/>
android:value=".view.AccountListActivity"/>
</activity>

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

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

<service android:name=".tracker.Tracker"/>
Expand Down
5 changes: 5 additions & 0 deletions app/assets/changes.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@
</head>
<body>
<h1>What's new</h1>
<h2>v2.0.0.7</h2>
<p>
<ul>
<li>#799 Froyo startup fix</li>
</ul>
<h2>v2.0.0.6</h2>
<p>
<ul>
Expand Down
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ android {
}

defaultConfig {
applicationIdSuffix rootProject.ext.applicationIdSuffix
applicationId = doExtractStringFromManifest("package")
vectorDrawables.useSupportLibrary = true
//By default all AppCompat translations are included, saves 350KB
Expand All @@ -91,6 +90,9 @@ android {
}

buildTypes {
debug {
applicationIdSuffix ".debug"
}
release {
minifyEnabled true
shrinkResources true
Expand Down
10 changes: 5 additions & 5 deletions app/res/xml/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@
android:key="cue_configure_hr"
android:title="@string/Heart_Rate_Monitor">
<intent
android:targetPackage="org.runnerup.alpha"
android:targetPackage="org.runnerup"
android:targetClass="org.runnerup.view.HRSettingsActivity" />
</Preference>

<Preference
android:key="@string/cue_configure_hrzones"
android:title="@string/Heart_Rate_Zones">
<intent
android:targetPackage="org.runnerup.alpha"
android:targetPackage="org.runnerup"
android:targetClass="org.runnerup.view.HRZonesActivity" />
</Preference>

Expand Down Expand Up @@ -244,7 +244,7 @@
android:title="@string/Accounts"
android:summary="@string/Configure_accounts">
<intent
android:targetPackage="org.runnerup.alpha"
android:targetPackage="org.runnerup"
android:targetClass="org.runnerup.view.AccountListActivity" />
</Preference>

Expand All @@ -260,7 +260,7 @@
android:title="@string/Audio_cues"
android:summary="@string/Configure_audio_cues">
<intent
android:targetPackage="org.runnerup.alpha"
android:targetPackage="org.runnerup"
android:targetClass="org.runnerup.view.AudioCueSettingsActivity" />
</Preference>

Expand All @@ -273,7 +273,7 @@
android:title="@string/Manage_workouts"
android:summary="@string/Downloadeditremove_workouts">
<intent
android:targetPackage="org.runnerup.alpha"
android:targetPackage="org.runnerup"
android:targetClass="org.runnerup.view.ManageWorkoutsActivity" />
</Preference>

Expand Down
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,8 @@ project.ext {
junitVersion = '4.12'
mockitoVersion = '2.3.7'

versionName = '2.0.0.6'
versionName = '2.0.0.7'
versionCode = 200
//Set a specific name to this app. Also need to be changed in settings.xml
applicationIdSuffix = ".alpha"

travisBuild = System.getenv("TRAVIS") == "true"
// allows for -Dpre-dex=false to be set
Expand Down
1 change: 0 additions & 1 deletion wear/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ android {
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
applicationIdSuffix rootProject.ext.applicationIdSuffix
minSdkVersion 23
targetSdkVersion rootProject.ext.compileSdkVersion
versionName rootProject.ext.versionName
Expand Down

0 comments on commit b7a3498

Please sign in to comment.