From 5fd5d89b232db35b45aeab460cbee1776599f9e8 Mon Sep 17 00:00:00 2001
From: Connor McLaughlin <stenzek@gmail.com>
Date: Fri, 27 Nov 2020 23:10:51 +1000
Subject: [PATCH] Android: Include data files in APK

---
 android/app/build.gradle | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/android/app/build.gradle b/android/app/build.gradle
index 050425ca8..b9b39ec2b 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -35,6 +35,9 @@ android {
             }
         }
     }
+    sourceSets {
+        main.assets.srcDirs += "../../data"
+    }
 }
 
 dependencies {