Skip to content

Commit

Permalink
Merge pull request #14 from mofosyne/androidStudioPorting
Browse files Browse the repository at this point in the history
Generated APK for google
  • Loading branch information
mofosyne authored Mar 8, 2024
2 parents 7e56e63 + 1fc5ee5 commit 0781b18
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 14 deletions.
Binary file modified app/release/app-release.aab
Binary file not shown.
Binary file added app/release/app-release.apk
Binary file not shown.
21 changes: 21 additions & 0 deletions app/release/output-metadata.json
Original file line number Diff line number Diff line change
@@ -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
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 0781b18

Please sign in to comment.