Skip to content

Commit

Permalink
Release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Heufneutje committed Dec 1, 2024
1 parent 8ffce99 commit 4c3a0bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
5 changes: 2 additions & 3 deletions SpeedrunTracker/App.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@

namespace SpeedrunTracker;
namespace SpeedrunTracker;

public partial class App : Application
{
public const string Version = "1.0.3";
public const string Version = "1.0.4";

public App(ILocalSettingsService settingsService)
{
Expand Down
13 changes: 3 additions & 10 deletions SpeedrunTracker/Platforms/Android/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application
android:allowBackup="true"
android:backupAgent="android.app.backup.FullBackupAgent"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/appicon"
android:roundIcon="@mipmap/appicon_round"
android:supportsRtl="true"
android:usesCleartextTraffic="false" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.heufneutje.speedruntracker" android:versionCode="104" android:versionName="1.0.4">
<application android:allowBackup="true" android:backupAgent="android.app.backup.FullBackupAgent" android:fullBackupContent="@xml/backup_rules" android:icon="@mipmap/appicon" android:supportsRtl="true" android:usesCleartextTraffic="false" android:label="SpeedrunTracker"></application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
</manifest>

0 comments on commit 4c3a0bb

Please sign in to comment.