diff --git a/app/src/normal/AndroidManifest.xml b/app/src/normal/AndroidManifest.xml
index a46d7cf6..79f3a332 100644
--- a/app/src/normal/AndroidManifest.xml
+++ b/app/src/normal/AndroidManifest.xml
@@ -5,15 +5,17 @@
+ android:launchMode="singleTask"
+ android:theme="@style/Theme.AppCompat">
+
-
+
+
-
+
+
\ No newline at end of file
diff --git a/app/src/normal/java/org/love2d/android/AboutActivity.java b/app/src/normal/java/org/love2d/android/AboutActivity.java
new file mode 100644
index 00000000..b5b0aac6
--- /dev/null
+++ b/app/src/normal/java/org/love2d/android/AboutActivity.java
@@ -0,0 +1,30 @@
+package org.love2d.android;
+
+import androidx.appcompat.app.AppCompatActivity;
+
+import android.content.Intent;
+import android.net.Uri;
+import android.os.Bundle;
+import android.widget.Button;
+import android.widget.TextView;
+
+public class AboutActivity extends AppCompatActivity {
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_about);
+
+ // Set button click listener
+ Button button = findViewById(R.id.button);
+ button.setOnClickListener(v -> {
+ Uri uri = Uri.parse("https://love2d.org/");
+ Intent intent = new Intent(Intent.ACTION_VIEW, uri);
+ startActivity(intent);
+ });
+
+ // Set version
+ TextView versionText = findViewById(R.id.textView4);
+ versionText.setText(getString(R.string.version_info, BuildConfig.VERSION_NAME));
+ }
+}
diff --git a/app/src/normal/res/layout/activity_about.xml b/app/src/normal/res/layout/activity_about.xml
new file mode 100644
index 00000000..329c6632
--- /dev/null
+++ b/app/src/normal/res/layout/activity_about.xml
@@ -0,0 +1,87 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/normal/res/values/strings.xml b/app/src/normal/res/values/strings.xml
index 73862c41..a1fb07a2 100644
--- a/app/src/normal/res/values/strings.xml
+++ b/app/src/normal/res/values/strings.xml
@@ -1 +1,6 @@
-
\ No newline at end of file
+
+ Version %1$s
+ Copyright © 2006–2022 LÖVE Development Team
+ This software is provided \'as-is\', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
+ Official Website
+
\ No newline at end of file