diff --git a/app/release/app-release.aab b/app/release/app-release.aab
index 1d25c26..eeec28f 100644
Binary files a/app/release/app-release.aab and b/app/release/app-release.aab differ
diff --git a/app/release/app-release.apk b/app/release/app-release.apk
new file mode 100644
index 0000000..00ac6e5
Binary files /dev/null and b/app/release/app-release.apk differ
diff --git a/app/release/output-metadata.json b/app/release/output-metadata.json
new file mode 100644
index 0000000..cd6e73f
--- /dev/null
+++ b/app/release/output-metadata.json
@@ -0,0 +1,21 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "APK",
+ "kind": "Directory"
+ },
+ "applicationId": "com.briankhuu.nfcmessageboard",
+ "variantName": "release",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 18,
+ "versionName": "4.0",
+ "outputFile": "app-release.apk"
+ }
+ ],
+ "elementType": "File",
+ "minSdkVersionForDexing": 19
+}
\ No newline at end of file
diff --git a/app/src/androidTest/java/com/briankhuu/nfcmessageboard/ApplicationTest.java b/app/src/androidTest/java/com/briankhuu/nfcmessageboard/ApplicationTest.java
deleted file mode 100644
index a7ad2ec..0000000
--- a/app/src/androidTest/java/com/briankhuu/nfcmessageboard/ApplicationTest.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.briankhuu.nfcmessageboard;
-
-import android.app.Application;
-import android.test.ApplicationTestCase;
-
-/**
- * Testing Fundamentals
- */
-public class ApplicationTest extends ApplicationTestCase {
- public ApplicationTest() {
- super(Application.class);
- }
-}
\ No newline at end of file
diff --git a/app/src/main/java/com/briankhuu/nfcmessageboard/ReadHtmlTags.java b/app/src/main/java/com/briankhuu/nfcmessageboard/ReadHtmlTags.java
index ee70325..29f0582 100644
--- a/app/src/main/java/com/briankhuu/nfcmessageboard/ReadHtmlTags.java
+++ b/app/src/main/java/com/briankhuu/nfcmessageboard/ReadHtmlTags.java
@@ -261,7 +261,7 @@ public static void setupForegroundDispatch(final Activity activity, NfcAdapter a
// Set up Intent
intent = new Intent(activity.getApplicationContext(), activity.getClass());
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
- pendingIntent = PendingIntent.getActivity(activity.getApplicationContext(), 0, intent, 0);
+ pendingIntent = PendingIntent.getActivity(activity.getApplicationContext(), 0, intent, PendingIntent.FLAG_IMMUTABLE);
// Setting Up Intent Filter And Tech List
IntentFilter[] filters = new IntentFilter[1];