aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsteckbrief <steckbrief@chefmail.de>2020-04-09 14:40:18 +0200
committersteckbrief <steckbrief@chefmail.de>2020-04-09 14:40:18 +0200
commit65ed07ffa90b9a02b957eea6a48bf64509535ce7 (patch)
treeb7e293c10f0b64c34b5cb4d01dd6bbbb58d83e8a
parent8d9eb1d35fb2b3bdb7970e5b48172b3b6b159a45 (diff)
adds notes to version control
-rw-r--r--Notes.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/Notes.md b/Notes.md
new file mode 100644
index 000000000..c5df56a8b
--- /dev/null
+++ b/Notes.md
@@ -0,0 +1,17 @@
+# Research Notes
+
+## Q & A
+
+### What is the MultiDex?
+```
+Android application (APK) files contain executable bytecode files in the form of Dalvik Executable (DEX) files, which contain the compiled code used to run your app. The Dalvik Executable specification limits the total number of methods that can be referenced within a single DEX file to 65,536, including Android framework methods, library methods, and methods in your own code. Getting past this limit requires that you configure your app build process to generate more than one DEX file, known as a multidex configuration.
+```
+https://stackoverflow.com/questions/33588459/what-is-android-multidex
+
+### What is android:appCategory?
+
+### What is android:largeHeap?
+
+### What does " tools:ignore="GoogleAppIndexingWarning"" mean?
+
+### What does "tools:replace="android:label, android:allowBackup"" mean? \ No newline at end of file