Skip to content

Commit

Permalink
Android version bump.
Browse files Browse the repository at this point in the history
  • Loading branch information
BleuBleu committed Feb 6, 2022
1 parent e976e9c commit 5340c12
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Version history / release notes for each release.

## Version 3.2.3 (Desktop-only Hotfix)
## Version 3.2.3 (Hotfix)

Fixes/Changes:
* Fixed OpenGL crash at startup when SDL2.dll is found
Expand Down
1 change: 1 addition & 0 deletions FamiStudio/FamiStudio.Android.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,7 @@
<EmbeddedResource Include="Resources\Sequencer%402x.png" />
<EmbeddedResource Include="Resources\Slide%402x.png" />
<EmbeddedResource Include="Resources\Snap%402x.png" />
<EmbeddedResource Include="Resources\SnapOff%402x.png" />
<EmbeddedResource Include="Resources\Stop%402x.png" />
<EmbeddedResource Include="Resources\Transform%402x.png" />
<EmbeddedResource Include="Resources\Undo%402x.png" />
Expand Down
2 changes: 1 addition & 1 deletion FamiStudio/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="7" android:versionName="3.2.2" package="org.famistudio" android:installLocation="auto">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="8" android:versionName="3.2.3" package="org.famistudio" android:installLocation="auto">
<uses-sdk android:minSdkVersion="26" android:targetSdkVersion="30" />
<uses-permission android:name="android.permission.VIBRATE" />
<application android:allowBackup="true" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:supportsRtl="true" android:theme="@style/AppTheme">
Expand Down
6 changes: 3 additions & 3 deletions FamiStudio/Source/UI/Droid/FamiStudioForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ public void OnScaleEnd(ScaleGestureDetector detector)
}
}

public bool OnDoubleTap(MotionEvent? e)
public bool OnDoubleTap(MotionEvent e)
{
if (!IsAsyncDialogInProgress)
{
Expand All @@ -771,13 +771,13 @@ public bool OnDoubleTap(MotionEvent? e)
}
}

public bool OnDoubleTapEvent(MotionEvent? e)
public bool OnDoubleTapEvent(MotionEvent e)
{
//Debug.WriteLine($"OnDoubleTapEvent ({e.GetX()}, {e.GetY()})");
return false;
}

public bool OnSingleTapConfirmed(MotionEvent? e)
public bool OnSingleTapConfirmed(MotionEvent e)
{
//Debug.WriteLine($"OnSingleTapConfirmed ({e.GetX()}, {e.GetY()})");
return false;
Expand Down

0 comments on commit 5340c12

Please sign in to comment.