core.tex 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347
  1. \documentclass[aspectratio=169]{beamer}
  2. % get rid of clickable beamer buttons
  3. \beamertemplatenavigationsymbolsempty
  4. % parse most utf-8 correctly
  5. \usepackage[utf8]{inputenc}
  6. \usepackage[ngerman]{babel}
  7. % better graphics
  8. \usepackage{graphicx}
  9. \title{
  10. Eine Email-Client-App entwickeln\\
  11. \vspace{.1cm}
  12. \normalsize snailmail
  13. }
  14. \author{Noah Vogt \& Simon Hammer}
  15. \date{5. Februar 2022}
  16. \institute{Gymnasium Kirschgarten}
  17. \usetheme{Copenhagen}
  18. \usepackage{varwidth}
  19. \usepackage{graphicx,calc}
  20. \newlength\myheight
  21. \newlength\mydepth
  22. \settototalheight\myheight{Xygp}
  23. \settodepth\mydepth{Xygp}
  24. \setlength\fboxsep{0pt}
  25. \newcommand*\inlinegraphics[1]{
  26. \settototalheight\myheight{Xygp}
  27. \settodepth\mydepth{Xygp}
  28. \raisebox{-\mydepth}{\includegraphics[height=\myheight]{#1}}%
  29. }
  30. % for code snippits
  31. \usepackage{listings}
  32. \usepackage{color}
  33. \definecolor{dkgreen}{rgb}{0,0.6,0}
  34. \definecolor{gray}{rgb}{0.5,0.5,0.5}
  35. \definecolor{mauve}{rgb}{0.58,0,0.82}
  36. \definecolor{background}{rgb}{0.36,0.36,0.36}
  37. \lstset{
  38. numbersep=3pt,
  39. keywordstyle=\color{blue},
  40. commentstyle=\color{dkgreen},
  41. stringstyle=\color{mauve},
  42. breaklines=true,
  43. numbers=left,
  44. numberstyle=\scriptsize\color{black},
  45. frame=none,
  46. basicstyle = \small\ttfamily,
  47. breaklines=true
  48. breakatwhitespace=false,
  49. columns=flexible,
  50. xleftmargin=0.5cm,framesep=8pt,framerule=0pt,
  51. aboveskip=3mm,
  52. belowskip=3mm,
  53. }
  54. % Package to use videos
  55. \usepackage{multimedia}
  56. %for table
  57. \usepackage{array}
  58. \newcolumntype{C}[1]{>{\centering\arraybackslash}m{#1}}
  59. %% Putting the background image in the frames
  60. \usebackgroundtemplate{%
  61. %\vbox to \paperheight{\hfil\hbox to \paperwidth{\hfil\includegraphics[width=1\paperwidth]{../../logo/version2grey.pdf}\hfil}\vfil}
  62. \hspace{5.2cm}\includegraphics[width=0.8\paperwidth]{../logo/version2grey.pdf}
  63. }
  64. \begin{document}
  65. \begin{frame}[plain]
  66. \maketitle
  67. \end{frame}
  68. \begin{frame}[plain]{Inhaltsverzeichniss}
  69. \tableofcontents
  70. \end{frame}
  71. \section{Vorwort}
  72. \subsection{Motivation}
  73. \begin{frame}[plain]{Motivation}
  74. \begin{varwidth}{.5\textwidth}
  75. \begin{figure}
  76. \centering
  77. \includegraphics[width=.9\textwidth]{media/macbook.jpg}
  78. \end{figure}
  79. \end{varwidth}
  80. \hfill
  81. \begin{varwidth}{.5\textwidth}
  82. \begin{itemize}\pause
  83. \item allgemeines Interesse\pause
  84. \item fehlender Edubs-Mail-Client\pause
  85. \item persönliche Bedürfnisse
  86. \end{itemize}
  87. \end{varwidth}
  88. \end{frame}
  89. \subsection{Ziele}
  90. \begin{frame}[plain]{Ziele}
  91. \begin{varwidth}{.5\textwidth}
  92. \begin{figure}
  93. \centering
  94. \includegraphics[width=.8\textwidth]{../logo/version3d.png}
  95. \end{figure}
  96. \end{varwidth}
  97. \hfill
  98. \begin{varwidth}{.5\textwidth}
  99. \begin{itemize}\pause
  100. \item Basisfunktionen \inlinegraphics{media/mail.png} \pause
  101. \item Account Manager\inlinegraphics{media/business.png}\pause
  102. \item Mobil und Modern\inlinegraphics{media/mobile.png}\pause
  103. \item Einstellungen\inlinegraphics{media/settings.png}\pause
  104. \item Schnell, Frei und Simpel\inlinegraphics{media/run.png}
  105. \end{itemize}
  106. \end{varwidth}
  107. \end{frame}
  108. \begin{frame}[plain]{Inspiration Design}
  109. \begin{varwidth}{.3\textwidth}\pause
  110. \begin{figure}
  111. \centering
  112. \includegraphics[width=.8\textwidth]{media/gmail-screenshot.png}\\
  113. \vspace{.5cm}
  114. \includegraphics[width=.25\textwidth]{media/gmail-logo.png}
  115. \end{figure}
  116. \end{varwidth}
  117. \hfill
  118. \begin{varwidth}{.3\textwidth}\pause
  119. \begin{figure}
  120. \centering
  121. \includegraphics[width=.8\textwidth]{media/k9-screenshot.png}\\
  122. \vspace{.5cm}
  123. \includegraphics[width=.25\textwidth]{media/k9-logo.png}
  124. \end{figure}
  125. \end{varwidth}
  126. \hfill
  127. \begin{varwidth}{.3\textwidth}\pause
  128. \begin{figure}
  129. \centering
  130. \includegraphics[width=.8\textwidth]{media/fairmail-screenshot.png}\\
  131. \vspace{.5cm}
  132. \includegraphics[width=.25\textwidth]{media/fairmail-logo.png}
  133. \end{figure}
  134. \end{varwidth}
  135. \end{frame}
  136. \section{Haupteil}
  137. \subsection{App mit Film}
  138. \begin{frame}[plain]{Demo}
  139. \center
  140. \movie[externalviewer, autostart]{\includegraphics[height=0.8\textheight]{../logo/version3b.png}}{media/appWithMusic.mp4}
  141. \end{frame}
  142. \subsection{App Inhalte}
  143. \begin{frame}[plain]{Was alles drin ist}
  144. \centering
  145. \begin{figure}[h]
  146. \includegraphics[height=.9\textheight]{media/errorMessage.png}
  147. \hspace{2.5cm}
  148. \pause
  149. \includegraphics[height=.9\textheight]{media/moreSettings.jpg}
  150. \end{figure}
  151. \end{frame}
  152. \subsection{App-Struktur}
  153. \begin{frame}[plain]{Allgemeine App-Struktur}
  154. \begin{varwidth}{.3\textwidth}
  155. \pause
  156. \begin{figure}
  157. \centering
  158. \includegraphics[height=.8\textheight]{../maturText/media/AppStructureFull.png}
  159. \end{figure}
  160. \end{varwidth}
  161. \hfill
  162. \begin{varwidth}{.5\textwidth}
  163. \begin{itemize}\pause
  164. \item User Interface \pause
  165. \item Server Connection \pause
  166. \item Database \pause
  167. \end{itemize}
  168. \end{varwidth}
  169. \end{frame}
  170. \begin{frame}[plain]{Database}
  171. \begin{block}{Allgemein}
  172. \textbf{Datenbank:} eine organisierte Ansammlung von strukturierter Information oder Daten
  173. \end{block}
  174. \begin{block}{in Der App}
  175. \pause
  176. \begin{tabular}{ |C{1.4Cm} |C{0.9Cm} |C{0.5Cm} |C{0.65Cm} |C{0.95Cm} |C{0.85Cm} |C{1.05Cm} |C{1.55Cm} |C{1.05Cm} |C{0.8Cm}|}
  177. \hline
  178. \multicolumn{10}{|c|}{Database Table} \\
  179. \hline
  180. \small{ObejctKey} &To & cc & bcc & from & date & subject & \small{textContent} & folder & seen \\
  181. \hline
  182. \pause
  183. 01 & \small{Sam} & null & null & \small{Anna} & \small{1.3.13} & Schule & Hallo Herr & Draft & true \\
  184. \hline
  185. \end{tabular}
  186. \end{block}
  187. \end{frame}
  188. \begin{frame}[plain]{Email Connection}
  189. %\centering
  190. %\includegraphics[width=.8\textwidth]{../maturText/media/connection-diagram.png}
  191. \includegraphics<1>[height=.8\textheight]{media/empty.png}
  192. \pause
  193. \includegraphics<2>[height=.8\textheight]{media/mail-diagram-01.png}
  194. \pause
  195. \includegraphics<3>[height=.8\textheight]{media/mail-diagram-02.png}
  196. \pause
  197. \includegraphics<4>[height=.8\textheight]{media/mail-diagram-03.png}
  198. \pause
  199. \includegraphics<5>[height=.8\textheight]{media/mail-diagram-04.png}
  200. \pause
  201. \includegraphics<6>[height=.8\textheight]{media/mail-diagram-05.png}
  202. \pause
  203. \includegraphics<7>[height=.8\textheight]{media/mail-diagram-06.png}
  204. \pause
  205. \includegraphics<8>[height=.8\textheight]{media/mail-diagram-07.png}
  206. \pause
  207. \includegraphics<9>[height=.8\textheight]{media/mail-diagram-08.png}
  208. \end{frame}
  209. \begin{frame}[plain]{Senden einer Email}
  210. \begin{figure}[h]
  211. \includegraphics[width=.8\textwidth]{media/codeFragment.png}
  212. \end{figure}
  213. \end{frame}
  214. \subsection{Librarys}
  215. \begin{frame}[plain]{Material Design}
  216. \begin{varwidth}{.5\textwidth}
  217. \begin{figure}
  218. \centering
  219. \includegraphics[width=\textwidth]{media/material-design-in-action.jpg}
  220. \end{figure}
  221. \end{varwidth}
  222. \hfill
  223. \begin{varwidth}{.4\textwidth}
  224. \includegraphics[width=\textwidth]{media/material-android.png}
  225. \begin{itemize}\pause
  226. \item GUI-Framework\pause
  227. \item beliebt\pause
  228. \item in Google Apps
  229. \end{itemize}
  230. \end{varwidth}
  231. \end{frame}
  232. \begin{frame}[plain]{Bugs}
  233. \begin{figure}[h]
  234. \includegraphics[width=.8\textwidth]{media/bug.png}
  235. \end{figure}
  236. \end{frame}
  237. \section{Resultate}
  238. \begin{frame}[plain]{Resultate}
  239. \begin{itemize}\pause
  240. \item User Interface\pause
  241. \item chaquopy\pause
  242. \item Funktionalität\pause
  243. \item abschliessend
  244. \end{itemize}
  245. \end{frame}
  246. \section{Gelerntes}
  247. \begin{frame}[plain]{Was wir gelernt haben}
  248. \begin{varwidth}{.5\textwidth}
  249. \begin{figure}
  250. \centering
  251. \includegraphics[width=.95\textwidth]{media/monetary-success.jpeg}
  252. \end{figure}
  253. \end{varwidth}
  254. \hfill
  255. \begin{varwidth}{.5\textwidth}
  256. \begin{itemize}\pause
  257. \item Java\inlinegraphics{media/java-only-logo.png}\pause
  258. \item Android Apps\inlinegraphics{media/android-robot.png}\pause
  259. \item Database \& SQL\inlinegraphics{media/database.png}\pause
  260. \item Gradle\inlinegraphics{media/gradle.png}\pause
  261. \item Zusammenarbeit\inlinegraphics{media/handschlag.jpeg}
  262. \end{itemize}
  263. \end{varwidth}
  264. \end{frame}
  265. \section{Persönliche Meinung}
  266. \begin{frame}[plain]{Persönliche Meinung: Simon}
  267. \begin{varwidth}{.4\textwidth}
  268. \begin{figure}
  269. \centering
  270. \includegraphics[width=.95\textwidth]{media/git-logo.png}
  271. \end{figure}
  272. \end{varwidth}
  273. \hfill
  274. \begin{varwidth}{.5\textwidth}
  275. \begin{itemize}\pause
  276. \item VCS $\rightarrow$ Git $\rightarrow$ GitHub\pause
  277. \item Treffen \& Absprachen
  278. \end{itemize}
  279. \end{varwidth}
  280. \end{frame}
  281. \begin{frame}[plain]{persönliche Meinung: Noah}
  282. \begin{varwidth}{.4\textwidth}
  283. \begin{figure}
  284. \centering
  285. \includegraphics[width=.95\textwidth]{media/gradle-logo.png}
  286. \end{figure}
  287. \end{varwidth}
  288. \hfill
  289. \begin{varwidth}{.5\textwidth}
  290. \begin{itemize}\pause
  291. \item fehlende Erfahrung\pause
  292. \item Java Libraries\pause
  293. \item persönlicher \& beruflicher Vorteil
  294. \end{itemize}
  295. \end{varwidth}
  296. \end{frame}
  297. \begin{frame}[plain]{Zukunft: Wie geht es weiter?}
  298. \begin{figure}
  299. \centering
  300. \includegraphics[height=.7\textheight]{media/github-repo.jpg}
  301. \end{figure}
  302. \begin{itemize}
  303. \centering
  304. \item https://github.com/noahvogt/snailmail
  305. \item https://git.noahvogt.com/me/snailmail
  306. \end{itemize}
  307. \end{frame}
  308. \end{document}