commit e069ad22deb7893bc193470865cdb106b921f6f5 Author: Paul Schaub Date: Sat Jan 27 03:33:50 2018 +0100 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..39fb081 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.iml +.gradle +/local.properties +/.idea/workspace.xml +/.idea/libraries +.DS_Store +/build +/captures +.externalNativeBuild diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..ead4b88 --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,18 @@ + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..ba7052b --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ddd20ae --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..3cdefb4 --- /dev/null +++ b/build.gradle @@ -0,0 +1,36 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + + repositories { + google() + jcenter() + } + + ext { + smackVersion="4.2.3-SNAPSHOT" + } + + + dependencies { + classpath 'com.android.tools.build:gradle:3.0.1' + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +allprojects { + repositories { + mavenLocal() + mavenCentral() + maven { + url 'https://oss.sonatype.org/content/repositories/snapshots' + } + google() + jcenter() + } +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..aac7c9b --- /dev/null +++ b/gradle.properties @@ -0,0 +1,17 @@ +# Project-wide Gradle settings. + +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. + +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html + +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +org.gradle.jvmargs=-Xmx1536m + +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..13372ae Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..c05b4e8 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Mon Jan 22 17:04:57 CET 2018 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip diff --git a/gradlew b/gradlew new file mode 100755 index 0000000..9d82f78 --- /dev/null +++ b/gradlew @@ -0,0 +1,160 @@ +#!/usr/bin/env bash + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn ( ) { + echo "$*" +} + +die ( ) { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; +esac + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules +function splitJvmOpts() { + JVM_OPTS=("$@") +} +eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS +JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" + +exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..aec9973 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,90 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windowz variants + +if not "%OS%" == "Windows_NT" goto win9xME_args +if "%@eval[2+2]" == "4" goto 4NT_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* +goto execute + +:4NT_args +@rem Get arguments from the 4NT Shell from JP Software +set CMD_LINE_ARGS=%$ + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/mobile/.gitignore b/mobile/.gitignore new file mode 100644 index 0000000..796b96d --- /dev/null +++ b/mobile/.gitignore @@ -0,0 +1 @@ +/build diff --git a/mobile/build.gradle b/mobile/build.gradle new file mode 100644 index 0000000..e66324a --- /dev/null +++ b/mobile/build.gradle @@ -0,0 +1,44 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 27 + defaultConfig { + applicationId "de.vanitasvitae.slam" + minSdkVersion 21 + targetSdkVersion 27 + versionCode 1 + versionName "1.0" + testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } +} + +dependencies { + //implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation 'com.android.support:appcompat-v7:27.0.2' + implementation 'com.android.support:design:27.0.2' + implementation 'com.android.support:support-v4:27.0.2' + implementation 'com.android.support:support-v13:27.0.2' + implementation 'com.android.support:cardview-v7:27.0.2' + implementation 'com.android.support:recyclerview-v7:27.0.2' + implementation 'com.android.support:support-emoji:27.0.2' + + testImplementation 'junit:junit:4.12' + androidTestImplementation 'com.android.support.test:runner:1.0.1' + androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' + + //compile "org.igniterealtime.smack:smack-android-extensions:$smackVersion" + //compile "org.igniterealtime.smack:smack-omemo-signal:$smackVersion" + //compile "org.igniterealtime.smack:smack-tcp:$smackVersion" + //compile "org.igniterealtime.smack:smack-experimental:$smackVersion" + + compile 'com.jakewharton:butterknife:8.8.1' + annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' + + compile 'de.hdodenhof:circleimageview:2.0.0' +} diff --git a/mobile/proguard-rules.pro b/mobile/proguard-rules.pro new file mode 100644 index 0000000..f1b4245 --- /dev/null +++ b/mobile/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile diff --git a/mobile/src/androidTest/java/de/vanitasvitae/slam/ExampleInstrumentedTest.java b/mobile/src/androidTest/java/de/vanitasvitae/slam/ExampleInstrumentedTest.java new file mode 100644 index 0000000..ec1d3db --- /dev/null +++ b/mobile/src/androidTest/java/de/vanitasvitae/slam/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package de.vanitasvitae.slam; + +import android.content.Context; +import android.support.test.InstrumentationRegistry; +import android.support.test.runner.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() throws Exception { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getTargetContext(); + + assertEquals("de.vanitasvitae.slam", appContext.getPackageName()); + } +} diff --git a/mobile/src/main/AndroidManifest.xml b/mobile/src/main/AndroidManifest.xml new file mode 100644 index 0000000..661140a --- /dev/null +++ b/mobile/src/main/AndroidManifest.xml @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mobile/src/main/java/de/vanitasvitae/slam/activity/LoginActivity.java b/mobile/src/main/java/de/vanitasvitae/slam/activity/LoginActivity.java new file mode 100644 index 0000000..1bf23d1 --- /dev/null +++ b/mobile/src/main/java/de/vanitasvitae/slam/activity/LoginActivity.java @@ -0,0 +1,60 @@ +package de.vanitasvitae.slam.activity; + +import android.content.Intent; +import android.os.Bundle; +import android.support.design.widget.TextInputEditText; +import android.support.v7.widget.Toolbar; +import android.view.KeyEvent; +import android.view.Menu; +import android.view.inputmethod.EditorInfo; +import android.widget.TextView; + +import butterknife.BindView; +import butterknife.ButterKnife; +import butterknife.OnClick; +import de.vanitasvitae.slam.R; + +public class LoginActivity extends ThemedAppCompatActivity { + + @BindView(R.id.toolbar) + Toolbar toolbar; + + @BindView(R.id.login_username) + TextInputEditText inputUsername; + + @BindView(R.id.login_password) + TextInputEditText inputPassword; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_login); + ButterKnife.bind(this); + + setSupportActionBar(toolbar); + + inputPassword.setOnEditorActionListener(new TextView.OnEditorActionListener() { + @Override + public boolean onEditorAction(TextView v, int actionId, KeyEvent event) { + if (actionId == EditorInfo.IME_ACTION_DONE) { + login(); + return true; + } + return false; + } + }); + } + + @OnClick(R.id.button_login) + void login() { + startActivity(new Intent(this, MainActivity.class)); + finish(); + } + + @Override + public boolean onCreateOptionsMenu(Menu menu) { + getMenuInflater().inflate(R.menu.menu_login, menu); + return true; + } +} + diff --git a/mobile/src/main/java/de/vanitasvitae/slam/activity/MainActivity.java b/mobile/src/main/java/de/vanitasvitae/slam/activity/MainActivity.java new file mode 100644 index 0000000..1535c07 --- /dev/null +++ b/mobile/src/main/java/de/vanitasvitae/slam/activity/MainActivity.java @@ -0,0 +1,55 @@ +package de.vanitasvitae.slam.activity; + +import android.os.Bundle; +import android.support.design.widget.NavigationView; +import android.support.v4.widget.DrawerLayout; +import android.support.v7.app.ActionBarDrawerToggle; +import android.support.v7.widget.Toolbar; +import android.view.Menu; + +import butterknife.BindView; +import butterknife.ButterKnife; +import de.vanitasvitae.slam.R; + +/** + * Created by vanitas on 22.01.18. + */ +public class MainActivity extends ThemedAppCompatActivity { + + @BindView(R.id.toolbar) + Toolbar toolbar; + + @BindView(R.id.navigation_view) + NavigationView navigationView; + + @BindView(R.id.drawer_layout) + DrawerLayout drawerLayout; + + private ActionBarDrawerToggle drawerToggle; + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + ButterKnife.bind(this); + + setSupportActionBar(toolbar); + + drawerToggle = new ActionBarDrawerToggle( + this, drawerLayout, toolbar, R.string.error_incorrect_password, R.string.error_invalid_jid); + drawerLayout.addDrawerListener(drawerToggle); + } + + @Override + public boolean onCreateOptionsMenu(Menu menu) { + getMenuInflater().inflate(R.menu.menu_main, menu); + return true; + } + + @Override + public void onPostCreate(Bundle savedInstanceState) { + super.onPostCreate(savedInstanceState); + drawerToggle.syncState(); + } + +} diff --git a/mobile/src/main/java/de/vanitasvitae/slam/activity/ThemedAppCompatActivity.java b/mobile/src/main/java/de/vanitasvitae/slam/activity/ThemedAppCompatActivity.java new file mode 100644 index 0000000..a7cefe8 --- /dev/null +++ b/mobile/src/main/java/de/vanitasvitae/slam/activity/ThemedAppCompatActivity.java @@ -0,0 +1,84 @@ +package de.vanitasvitae.slam.activity; + +import android.annotation.SuppressLint; +import android.content.Intent; +import android.content.SharedPreferences; +import android.os.Bundle; +import android.preference.PreferenceManager; +import android.support.v7.app.AppCompatActivity; +import android.view.MenuItem; + +import java.util.Arrays; + +import de.vanitasvitae.slam.R; + +/** + * Created by Paul Schaub on 27.01.18. + */ +public abstract class ThemedAppCompatActivity extends AppCompatActivity implements SharedPreferences.OnSharedPreferenceChangeListener { + + public static final String PREF_APP_THEME = "pref_app_theme"; + private static final String THEME_LIGHT = "defaultTheme"; + private static final String THEME_DARK = "darkTheme"; + + private SharedPreferences preferences; + + @SuppressLint("ApplySharedPref") + protected void onCreate(Bundle savedInstanceState) { + preferences = PreferenceManager.getDefaultSharedPreferences(this); + + String theme = preferences.getString(PREF_APP_THEME, THEME_LIGHT); + switch (theme) { + case THEME_DARK: + setTheme(R.style.Slam_Dark); + break; + // add more themes here... + + default: + setTheme(R.style.Slam); + } + + super.onCreate(savedInstanceState); + } + + @Override + protected void onPause() { + preferences.unregisterOnSharedPreferenceChangeListener(this); + super.onPause(); + } + + protected void onResume() { + preferences.registerOnSharedPreferenceChangeListener(this); + super.onResume(); + } + + @Override + public boolean onOptionsItemSelected(MenuItem item) { + switch (item.getItemId()) { + case R.id.debug_switch_theme: + toggleTheme(); + return true; + } + return super.onOptionsItemSelected(item); + } + + public void toggleTheme() { + // ...and here + String[] themes = new String[]{THEME_LIGHT, THEME_DARK}; + SharedPreferences pref = PreferenceManager.getDefaultSharedPreferences(this); + String current = pref.getString(PREF_APP_THEME, THEME_LIGHT); + int index = Arrays.asList(themes).indexOf(current); + String next = themes[(index + 1) % themes.length]; + pref.edit().putString(PREF_APP_THEME, next).apply(); + } + + @Override + public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) { + if (key.equals(PREF_APP_THEME)) { + finish(); + final Intent intent = getIntent(); + intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP); + startActivity(intent); + } + } +} diff --git a/mobile/src/main/java/de/vanitasvitae/slam/receiver/MessageReadReceiver.java b/mobile/src/main/java/de/vanitasvitae/slam/receiver/MessageReadReceiver.java new file mode 100644 index 0000000..680ce6c --- /dev/null +++ b/mobile/src/main/java/de/vanitasvitae/slam/receiver/MessageReadReceiver.java @@ -0,0 +1,41 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package de.vanitasvitae.slam.receiver; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.support.v4.app.NotificationManagerCompat; +import android.util.Log; + +import de.vanitasvitae.slam.service.MyMessagingService; + +public class MessageReadReceiver extends BroadcastReceiver { + private static final String TAG = MessageReadReceiver.class.getSimpleName(); + + @Override + public void onReceive(Context context, Intent intent) { + if (MyMessagingService.READ_ACTION.equals(intent.getAction())) { + int conversationId = intent.getIntExtra(MyMessagingService.CONVERSATION_ID, -1); + if (conversationId != -1) { + Log.d(TAG, "Conversation " + conversationId + " was read"); + NotificationManagerCompat notificationManager = NotificationManagerCompat.from(context); + notificationManager.cancel(conversationId); + } + } + } +} diff --git a/mobile/src/main/java/de/vanitasvitae/slam/receiver/MessageReplyReceiver.java b/mobile/src/main/java/de/vanitasvitae/slam/receiver/MessageReplyReceiver.java new file mode 100644 index 0000000..51bd583 --- /dev/null +++ b/mobile/src/main/java/de/vanitasvitae/slam/receiver/MessageReplyReceiver.java @@ -0,0 +1,56 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package de.vanitasvitae.slam.receiver; + +import android.content.BroadcastReceiver; +import android.content.Context; +import android.content.Intent; +import android.os.Bundle; +import android.support.v4.app.RemoteInput; +import android.util.Log; + +import de.vanitasvitae.slam.service.MyMessagingService; + +/** + * A receiver that gets called when a reply is sent to a given conversationId + */ +public class MessageReplyReceiver extends BroadcastReceiver { + + private static final String TAG = MessageReplyReceiver.class.getSimpleName(); + + @Override + public void onReceive(Context context, Intent intent) { + if (MyMessagingService.REPLY_ACTION.equals(intent.getAction())) { + int conversationId = intent.getIntExtra(MyMessagingService.CONVERSATION_ID, -1); + CharSequence reply = getMessageText(intent); + Log.d(TAG, "Got reply (" + reply + ") for ConversationId " + conversationId); + } + } + + /** + * Get the message text from the intent. + * Note that you should call {@code RemoteInput#getResultsFromIntent(intent)} to process + * the RemoteInput. + */ + private CharSequence getMessageText(Intent intent) { + Bundle remoteInput = RemoteInput.getResultsFromIntent(intent); + if (remoteInput != null) { + return remoteInput.getCharSequence(MyMessagingService.EXTRA_VOICE_REPLY); + } + return null; + } +} diff --git a/mobile/src/main/java/de/vanitasvitae/slam/service/MyMessagingService.java b/mobile/src/main/java/de/vanitasvitae/slam/service/MyMessagingService.java new file mode 100644 index 0000000..44aa98a --- /dev/null +++ b/mobile/src/main/java/de/vanitasvitae/slam/service/MyMessagingService.java @@ -0,0 +1,119 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package de.vanitasvitae.slam.service; + +import android.app.PendingIntent; +import android.app.Service; +import android.content.Intent; +import android.os.Handler; +import android.os.IBinder; +import android.os.Message; +import android.os.Messenger; +import android.support.v4.app.NotificationCompat; +import android.support.v4.app.NotificationCompat.CarExtender; +import android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation; +import android.support.v4.app.NotificationManagerCompat; +import android.support.v4.app.RemoteInput; + +public class MyMessagingService extends Service { + public static final String READ_ACTION = + "de.vanitasvitae.slam.ACTION_MESSAGE_READ"; + public static final String REPLY_ACTION = + "de.vanitasvitae.slam.ACTION_MESSAGE_REPLY"; + public static final String CONVERSATION_ID = "conversation_id"; + public static final String EXTRA_VOICE_REPLY = "extra_voice_reply"; + private static final String TAG = MyMessagingService.class.getSimpleName(); + private final Messenger mMessenger = new Messenger(new IncomingHandler()); + private NotificationManagerCompat mNotificationManager; + + @Override + public void onCreate() { + mNotificationManager = NotificationManagerCompat.from(getApplicationContext()); + } + + @Override + public IBinder onBind(Intent intent) { + return mMessenger.getBinder(); + } + + @Override + public int onStartCommand(Intent intent, int flags, int startId) { + return START_STICKY; + } + + private Intent createIntent(int conversationId, String action) { + return new Intent() + .addFlags(Intent.FLAG_INCLUDE_STOPPED_PACKAGES) + .setAction(action) + .putExtra(CONVERSATION_ID, conversationId); + } + + private void sendNotification(int conversationId, String message, + String participant, long timestamp) { + // A pending Intent for reads + PendingIntent readPendingIntent = PendingIntent.getBroadcast(getApplicationContext(), + conversationId, + createIntent(conversationId, READ_ACTION), + PendingIntent.FLAG_UPDATE_CURRENT); + + // Build a RemoteInput for receiving voice input in a Car Notification + RemoteInput remoteInput = new RemoteInput.Builder(EXTRA_VOICE_REPLY) + .setLabel("Reply by voice") + .build(); + + // Building a Pending Intent for the reply action to trigger + PendingIntent replyIntent = PendingIntent.getBroadcast(getApplicationContext(), + conversationId, + createIntent(conversationId, REPLY_ACTION), + PendingIntent.FLAG_UPDATE_CURRENT); + + // Create the UnreadConversation and populate it with the participant name, + // read and reply intents. + UnreadConversation.Builder unreadConvBuilder = + new UnreadConversation.Builder(participant) + .setLatestTimestamp(timestamp) + .setReadPendingIntent(readPendingIntent) + .setReplyAction(replyIntent, remoteInput); + + NotificationCompat.Builder builder = new NotificationCompat.Builder(getApplicationContext()) + // Set the application notification icon: + //.setSmallIcon(R.drawable.notification_icon) + + // Set the large icon, for example a picture of the other recipient of the message + //.setLargeIcon(personBitmap) + + .setContentText(message) + .setWhen(timestamp) + .setContentTitle(participant) + .setContentIntent(readPendingIntent) + .extend(new CarExtender() + .setUnreadConversation(unreadConvBuilder.build())); + + mNotificationManager.notify(conversationId, builder.build()); + } + + /** + * Handler of incoming messages from clients. + */ + class IncomingHandler extends Handler { + @Override + public void handleMessage(Message msg) { + sendNotification(1, "This is a sample message", "John Doe", + System.currentTimeMillis()); + } + } +} diff --git a/mobile/src/main/res/drawable-hdpi/ic_account_circle_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_account_circle_black_48dp.png new file mode 100644 index 0000000..3cc0a63 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_account_circle_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_add_a_photo_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_add_a_photo_black_48dp.png new file mode 100644 index 0000000..31dd5eb Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_add_a_photo_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_add_a_photo_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_add_a_photo_white_48dp.png new file mode 100644 index 0000000..e8f8831 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_add_a_photo_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_attach_file_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_attach_file_black_48dp.png new file mode 100644 index 0000000..d8e2bd9 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_attach_file_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_attach_file_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_attach_file_white_48dp.png new file mode 100644 index 0000000..7091eca Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_attach_file_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_check_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_check_black_48dp.png new file mode 100644 index 0000000..b26a2c0 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_check_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_check_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_check_white_48dp.png new file mode 100644 index 0000000..2c2ad77 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_check_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_color_lens_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_color_lens_black_48dp.png new file mode 100644 index 0000000..d93fe2e Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_color_lens_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_color_lens_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_color_lens_white_48dp.png new file mode 100644 index 0000000..119b1fd Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_color_lens_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_done_all_black_24dp.png b/mobile/src/main/res/drawable-hdpi/ic_done_all_black_24dp.png new file mode 100644 index 0000000..0aabe09 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_done_all_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_face_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_face_black_48dp.png new file mode 100644 index 0000000..032c786 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_face_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_format_quote_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_format_quote_black_48dp.png new file mode 100644 index 0000000..310dbaf Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_format_quote_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_format_quote_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_format_quote_white_48dp.png new file mode 100644 index 0000000..c32eeed Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_format_quote_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_group_add_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_group_add_black_48dp.png new file mode 100644 index 0000000..ca85742 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_group_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_group_add_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_group_add_white_48dp.png new file mode 100644 index 0000000..f4acdf4 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_group_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_group_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_group_black_48dp.png new file mode 100644 index 0000000..5a8b5d0 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_group_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_group_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_group_white_48dp.png new file mode 100644 index 0000000..6c68435 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_group_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_image_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_image_black_48dp.png new file mode 100644 index 0000000..7297bd5 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_image_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_image_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_image_white_48dp.png new file mode 100644 index 0000000..f9f1def Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_image_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_lock_black_24dp.png b/mobile/src/main/res/drawable-hdpi/ic_lock_black_24dp.png new file mode 100644 index 0000000..de50295 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_lock_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_lock_open_black_24dp.png b/mobile/src/main/res/drawable-hdpi/ic_lock_open_black_24dp.png new file mode 100644 index 0000000..4a08eca Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_lock_open_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_movie_creation_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_movie_creation_black_48dp.png new file mode 100644 index 0000000..f7b8f8a Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_movie_creation_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_movie_creation_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_movie_creation_white_48dp.png new file mode 100644 index 0000000..429ca8f Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_movie_creation_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_no_encryption_black_24dp.png b/mobile/src/main/res/drawable-hdpi/ic_no_encryption_black_24dp.png new file mode 100644 index 0000000..1fc9563 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_no_encryption_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_notifications_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_notifications_black_48dp.png new file mode 100644 index 0000000..74c46cf Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_notifications_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_notifications_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_notifications_white_48dp.png new file mode 100644 index 0000000..cbd0c1e Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_notifications_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_person_add_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_person_add_black_48dp.png new file mode 100644 index 0000000..48236bc Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_person_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_person_add_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_person_add_white_48dp.png new file mode 100644 index 0000000..8f744f0 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_person_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_person_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_person_black_48dp.png new file mode 100644 index 0000000..f1e1484 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_person_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_person_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_person_white_48dp.png new file mode 100644 index 0000000..184f741 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_person_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_security_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_security_black_48dp.png new file mode 100644 index 0000000..73f1f2a Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_security_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_security_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_security_white_48dp.png new file mode 100644 index 0000000..7bcb2fd Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_security_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_settings_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_settings_black_48dp.png new file mode 100644 index 0000000..3023ff8 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_settings_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_settings_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_settings_white_48dp.png new file mode 100644 index 0000000..eabb0a2 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_settings_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_share_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_share_black_48dp.png new file mode 100644 index 0000000..784933a Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_share_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_share_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_share_white_48dp.png new file mode 100644 index 0000000..a35b3cd Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_share_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_style_black_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_style_black_48dp.png new file mode 100644 index 0000000..5676eb7 Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_style_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-hdpi/ic_style_white_48dp.png b/mobile/src/main/res/drawable-hdpi/ic_style_white_48dp.png new file mode 100644 index 0000000..fe1a45f Binary files /dev/null and b/mobile/src/main/res/drawable-hdpi/ic_style_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_account_circle_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_account_circle_black_48dp.png new file mode 100644 index 0000000..f26b201 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_account_circle_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_add_a_photo_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_add_a_photo_black_48dp.png new file mode 100644 index 0000000..85d97f0 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_add_a_photo_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_add_a_photo_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_add_a_photo_white_48dp.png new file mode 100644 index 0000000..34cd9e5 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_add_a_photo_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_attach_file_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_attach_file_black_48dp.png new file mode 100644 index 0000000..30ac6f9 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_attach_file_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_attach_file_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_attach_file_white_48dp.png new file mode 100644 index 0000000..c3ff2bd Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_attach_file_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_check_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_check_black_48dp.png new file mode 100644 index 0000000..64a4944 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_check_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_check_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_check_white_48dp.png new file mode 100644 index 0000000..3b2b65d Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_check_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_color_lens_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_color_lens_black_48dp.png new file mode 100644 index 0000000..ce3a94c Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_color_lens_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_color_lens_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_color_lens_white_48dp.png new file mode 100644 index 0000000..4af10a4 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_color_lens_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_done_all_black_24dp.png b/mobile/src/main/res/drawable-mdpi/ic_done_all_black_24dp.png new file mode 100644 index 0000000..eb0dc4e Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_done_all_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_face_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_face_black_48dp.png new file mode 100644 index 0000000..ef627af Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_face_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_format_quote_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_format_quote_black_48dp.png new file mode 100644 index 0000000..f88cb40 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_format_quote_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_format_quote_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_format_quote_white_48dp.png new file mode 100644 index 0000000..9cfc262 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_format_quote_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_group_add_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_group_add_black_48dp.png new file mode 100644 index 0000000..428c295 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_group_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_group_add_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_group_add_white_48dp.png new file mode 100644 index 0000000..a769931 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_group_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_group_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_group_black_48dp.png new file mode 100644 index 0000000..c2e9ffe Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_group_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_group_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_group_white_48dp.png new file mode 100644 index 0000000..323981c Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_group_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_image_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_image_black_48dp.png new file mode 100644 index 0000000..6b7cd78 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_image_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_image_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_image_white_48dp.png new file mode 100644 index 0000000..2642b9e Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_image_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_lock_black_24dp.png b/mobile/src/main/res/drawable-mdpi/ic_lock_black_24dp.png new file mode 100644 index 0000000..3a4a158 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_lock_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_lock_open_black_24dp.png b/mobile/src/main/res/drawable-mdpi/ic_lock_open_black_24dp.png new file mode 100644 index 0000000..89e9caa Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_lock_open_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_movie_creation_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_movie_creation_black_48dp.png new file mode 100644 index 0000000..d9565a5 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_movie_creation_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_movie_creation_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_movie_creation_white_48dp.png new file mode 100644 index 0000000..6a84581 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_movie_creation_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_no_encryption_black_24dp.png b/mobile/src/main/res/drawable-mdpi/ic_no_encryption_black_24dp.png new file mode 100644 index 0000000..faa775a Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_no_encryption_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_notifications_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_notifications_black_48dp.png new file mode 100644 index 0000000..98cbec6 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_notifications_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_notifications_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_notifications_white_48dp.png new file mode 100644 index 0000000..9718ccf Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_notifications_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_person_add_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_person_add_black_48dp.png new file mode 100644 index 0000000..f3e8931 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_person_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_person_add_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_person_add_white_48dp.png new file mode 100644 index 0000000..7e7c289 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_person_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_person_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_person_black_48dp.png new file mode 100644 index 0000000..360a32f Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_person_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_person_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_person_white_48dp.png new file mode 100644 index 0000000..aea15f0 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_person_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_security_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_security_black_48dp.png new file mode 100644 index 0000000..160caf1 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_security_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_security_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_security_white_48dp.png new file mode 100644 index 0000000..7e306c3 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_security_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_settings_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_settings_black_48dp.png new file mode 100644 index 0000000..e84e188 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_settings_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_settings_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_settings_white_48dp.png new file mode 100644 index 0000000..5caedc8 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_settings_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_share_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_share_black_48dp.png new file mode 100644 index 0000000..81c80b7 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_share_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_share_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_share_white_48dp.png new file mode 100644 index 0000000..22a8783 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_share_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_style_black_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_style_black_48dp.png new file mode 100644 index 0000000..49aa498 Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_style_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-mdpi/ic_style_white_48dp.png b/mobile/src/main/res/drawable-mdpi/ic_style_white_48dp.png new file mode 100644 index 0000000..d8164fb Binary files /dev/null and b/mobile/src/main/res/drawable-mdpi/ic_style_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-v24/ic_launcher_foreground.xml b/mobile/src/main/res/drawable-v24/ic_launcher_foreground.xml new file mode 100644 index 0000000..c7bd21d --- /dev/null +++ b/mobile/src/main/res/drawable-v24/ic_launcher_foreground.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + diff --git a/mobile/src/main/res/drawable-xhdpi/ic_account_circle_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_account_circle_black_48dp.png new file mode 100644 index 0000000..c6b56c3 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_account_circle_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_add_a_photo_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_add_a_photo_black_48dp.png new file mode 100644 index 0000000..08db7b2 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_add_a_photo_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_add_a_photo_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_add_a_photo_white_48dp.png new file mode 100644 index 0000000..d3af9f2 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_add_a_photo_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_attach_file_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_attach_file_black_48dp.png new file mode 100644 index 0000000..620226d Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_attach_file_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_attach_file_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_attach_file_white_48dp.png new file mode 100644 index 0000000..771425c Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_attach_file_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_check_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_check_black_48dp.png new file mode 100644 index 0000000..2f6d638 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_check_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_check_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_check_white_48dp.png new file mode 100644 index 0000000..d670618 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_check_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_color_lens_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_color_lens_black_48dp.png new file mode 100644 index 0000000..79360b1 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_color_lens_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_color_lens_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_color_lens_white_48dp.png new file mode 100644 index 0000000..dba40d4 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_color_lens_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_done_all_black_24dp.png b/mobile/src/main/res/drawable-xhdpi/ic_done_all_black_24dp.png new file mode 100644 index 0000000..0d871d3 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_done_all_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_face_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_face_black_48dp.png new file mode 100644 index 0000000..1a06d8a Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_face_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_format_quote_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_format_quote_black_48dp.png new file mode 100644 index 0000000..0e03539 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_format_quote_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_format_quote_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_format_quote_white_48dp.png new file mode 100644 index 0000000..dc8d740 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_format_quote_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_group_add_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_group_add_black_48dp.png new file mode 100644 index 0000000..f451a31 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_group_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_group_add_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_group_add_white_48dp.png new file mode 100644 index 0000000..fadcc0f Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_group_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_group_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_group_black_48dp.png new file mode 100644 index 0000000..2994e7c Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_group_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_group_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_group_white_48dp.png new file mode 100644 index 0000000..5676f70 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_group_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_image_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_image_black_48dp.png new file mode 100644 index 0000000..ebe206f Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_image_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_image_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_image_white_48dp.png new file mode 100644 index 0000000..2ffdb55 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_image_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png b/mobile/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png new file mode 100644 index 0000000..2a16694 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_lock_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_lock_open_black_24dp.png b/mobile/src/main/res/drawable-xhdpi/ic_lock_open_black_24dp.png new file mode 100644 index 0000000..d8c6208 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_lock_open_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_movie_creation_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_movie_creation_black_48dp.png new file mode 100644 index 0000000..95d1624 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_movie_creation_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_movie_creation_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_movie_creation_white_48dp.png new file mode 100644 index 0000000..03bca67 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_movie_creation_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_no_encryption_black_24dp.png b/mobile/src/main/res/drawable-xhdpi/ic_no_encryption_black_24dp.png new file mode 100644 index 0000000..d1f4d14 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_no_encryption_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_notifications_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_notifications_black_48dp.png new file mode 100644 index 0000000..b06e6bc Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_notifications_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_notifications_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_notifications_white_48dp.png new file mode 100644 index 0000000..1e70b63 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_notifications_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_person_add_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_person_add_black_48dp.png new file mode 100644 index 0000000..41a4e03 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_person_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_person_add_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_person_add_white_48dp.png new file mode 100644 index 0000000..2fa2cca Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_person_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_person_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_person_black_48dp.png new file mode 100644 index 0000000..1ebc37b Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_person_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_person_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_person_white_48dp.png new file mode 100644 index 0000000..33d40d8 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_person_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_security_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_security_black_48dp.png new file mode 100644 index 0000000..857cacf Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_security_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_security_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_security_white_48dp.png new file mode 100644 index 0000000..b1eddbd Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_security_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_settings_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_settings_black_48dp.png new file mode 100644 index 0000000..476d5c9 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_settings_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_settings_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_settings_white_48dp.png new file mode 100644 index 0000000..507c5ed Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_settings_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_share_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_share_black_48dp.png new file mode 100644 index 0000000..5a8544c Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_share_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_share_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_share_white_48dp.png new file mode 100644 index 0000000..e351c7b Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_share_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_style_black_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_style_black_48dp.png new file mode 100644 index 0000000..ad96bd4 Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_style_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xhdpi/ic_style_white_48dp.png b/mobile/src/main/res/drawable-xhdpi/ic_style_white_48dp.png new file mode 100644 index 0000000..4074e3a Binary files /dev/null and b/mobile/src/main/res/drawable-xhdpi/ic_style_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_account_circle_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_account_circle_black_48dp.png new file mode 100644 index 0000000..d4bee45 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_account_circle_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_add_a_photo_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_add_a_photo_black_48dp.png new file mode 100644 index 0000000..d778db2 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_add_a_photo_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_add_a_photo_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_add_a_photo_white_48dp.png new file mode 100644 index 0000000..52b1102 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_add_a_photo_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_attach_file_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_attach_file_black_48dp.png new file mode 100644 index 0000000..a1d0e24 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_attach_file_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_attach_file_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_attach_file_white_48dp.png new file mode 100644 index 0000000..7ca8a2b Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_attach_file_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_check_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_check_black_48dp.png new file mode 100644 index 0000000..5697dba Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_check_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_check_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_check_white_48dp.png new file mode 100644 index 0000000..bfd7b82 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_check_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_color_lens_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_color_lens_black_48dp.png new file mode 100644 index 0000000..96e053b Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_color_lens_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_color_lens_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_color_lens_white_48dp.png new file mode 100644 index 0000000..ca09726 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_color_lens_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_done_all_black_24dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_done_all_black_24dp.png new file mode 100644 index 0000000..2d49549 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_done_all_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_face_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_face_black_48dp.png new file mode 100644 index 0000000..df47836 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_face_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_format_quote_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_format_quote_black_48dp.png new file mode 100644 index 0000000..c7df0df Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_format_quote_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_format_quote_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_format_quote_white_48dp.png new file mode 100644 index 0000000..0e4c197 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_format_quote_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_group_add_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_group_add_black_48dp.png new file mode 100644 index 0000000..aa76438 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_group_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_group_add_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_group_add_white_48dp.png new file mode 100644 index 0000000..562c923 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_group_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_group_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_group_black_48dp.png new file mode 100644 index 0000000..1fa4b3c Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_group_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_group_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_group_white_48dp.png new file mode 100644 index 0000000..9ec120f Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_group_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_image_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_image_black_48dp.png new file mode 100644 index 0000000..b2a6b64 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_image_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_image_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_image_white_48dp.png new file mode 100644 index 0000000..3fe5c5c Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_image_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png new file mode 100644 index 0000000..a7caa2d Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_lock_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_lock_open_black_24dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_lock_open_black_24dp.png new file mode 100644 index 0000000..0e4cbc2 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_lock_open_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_movie_creation_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_movie_creation_black_48dp.png new file mode 100644 index 0000000..d3c64c1 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_movie_creation_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_movie_creation_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_movie_creation_white_48dp.png new file mode 100644 index 0000000..4e33642 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_movie_creation_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_no_encryption_black_24dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_no_encryption_black_24dp.png new file mode 100644 index 0000000..31d1114 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_no_encryption_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_notifications_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_notifications_black_48dp.png new file mode 100644 index 0000000..eb0103d Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_notifications_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_notifications_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_notifications_white_48dp.png new file mode 100644 index 0000000..c5fb9ef Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_notifications_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_person_add_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_person_add_black_48dp.png new file mode 100644 index 0000000..b04ff0b Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_person_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_person_add_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_person_add_white_48dp.png new file mode 100644 index 0000000..7e3f04b Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_person_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_person_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_person_black_48dp.png new file mode 100644 index 0000000..77e3a18 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_person_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_person_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_person_white_48dp.png new file mode 100644 index 0000000..6a14714 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_person_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_security_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_security_black_48dp.png new file mode 100644 index 0000000..b21a1e7 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_security_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_security_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_security_white_48dp.png new file mode 100644 index 0000000..3a8c936 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_security_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_settings_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_settings_black_48dp.png new file mode 100644 index 0000000..8f2a8bc Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_settings_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_settings_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_settings_white_48dp.png new file mode 100644 index 0000000..55492f6 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_settings_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_share_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_share_black_48dp.png new file mode 100644 index 0000000..97f607b Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_share_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_share_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_share_white_48dp.png new file mode 100644 index 0000000..9c6bdb5 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_share_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_style_black_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_style_black_48dp.png new file mode 100644 index 0000000..768d13f Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_style_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxhdpi/ic_style_white_48dp.png b/mobile/src/main/res/drawable-xxhdpi/ic_style_white_48dp.png new file mode 100644 index 0000000..1fdbbf1 Binary files /dev/null and b/mobile/src/main/res/drawable-xxhdpi/ic_style_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_account_circle_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_account_circle_black_48dp.png new file mode 100644 index 0000000..d1e3328 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_account_circle_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_add_a_photo_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_add_a_photo_black_48dp.png new file mode 100644 index 0000000..1401ce8 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_add_a_photo_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_add_a_photo_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_add_a_photo_white_48dp.png new file mode 100644 index 0000000..6520768 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_add_a_photo_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_attach_file_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_attach_file_black_48dp.png new file mode 100644 index 0000000..a6ec08c Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_attach_file_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_attach_file_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_attach_file_white_48dp.png new file mode 100644 index 0000000..12b0195 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_attach_file_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_check_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_check_black_48dp.png new file mode 100644 index 0000000..0875136 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_check_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_check_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_check_white_48dp.png new file mode 100644 index 0000000..23a1970 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_check_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_color_lens_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_color_lens_black_48dp.png new file mode 100644 index 0000000..647c699 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_color_lens_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_color_lens_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_color_lens_white_48dp.png new file mode 100644 index 0000000..df9f5c2 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_color_lens_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_done_all_black_24dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_done_all_black_24dp.png new file mode 100644 index 0000000..6b5fd32 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_done_all_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_face_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_face_black_48dp.png new file mode 100644 index 0000000..8bb1d03 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_face_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_format_quote_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_format_quote_black_48dp.png new file mode 100644 index 0000000..deb8480 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_format_quote_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_format_quote_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_format_quote_white_48dp.png new file mode 100644 index 0000000..4d0b09e Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_format_quote_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_group_add_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_group_add_black_48dp.png new file mode 100644 index 0000000..914bf2c Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_group_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_group_add_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_group_add_white_48dp.png new file mode 100644 index 0000000..8186047 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_group_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_group_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_group_black_48dp.png new file mode 100644 index 0000000..b9f2b92 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_group_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_group_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_group_white_48dp.png new file mode 100644 index 0000000..67da07f Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_group_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_image_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_image_black_48dp.png new file mode 100644 index 0000000..ab700a3 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_image_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_image_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_image_white_48dp.png new file mode 100644 index 0000000..7d5091d Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_image_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_lock_black_24dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_lock_black_24dp.png new file mode 100644 index 0000000..e66dd96 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_lock_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_lock_open_black_24dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_lock_open_black_24dp.png new file mode 100644 index 0000000..53a7c77 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_lock_open_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_movie_creation_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_movie_creation_black_48dp.png new file mode 100644 index 0000000..7723c3b Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_movie_creation_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_movie_creation_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_movie_creation_white_48dp.png new file mode 100644 index 0000000..efa7077 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_movie_creation_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_no_encryption_black_24dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_no_encryption_black_24dp.png new file mode 100644 index 0000000..58aa0b3 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_no_encryption_black_24dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_notifications_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_notifications_black_48dp.png new file mode 100644 index 0000000..5161675 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_notifications_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_notifications_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_notifications_white_48dp.png new file mode 100644 index 0000000..3b6b651 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_notifications_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_person_add_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_person_add_black_48dp.png new file mode 100644 index 0000000..3f4da3d Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_person_add_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_person_add_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_person_add_white_48dp.png new file mode 100644 index 0000000..19c0427 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_person_add_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_person_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_person_black_48dp.png new file mode 100644 index 0000000..6be3e30 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_person_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_person_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_person_white_48dp.png new file mode 100644 index 0000000..4242a56 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_person_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_security_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_security_black_48dp.png new file mode 100644 index 0000000..37655f9 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_security_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_security_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_security_white_48dp.png new file mode 100644 index 0000000..d422ce2 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_security_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_settings_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_settings_black_48dp.png new file mode 100644 index 0000000..e4d24ea Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_settings_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_settings_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_settings_white_48dp.png new file mode 100644 index 0000000..9e242e7 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_settings_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_share_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_share_black_48dp.png new file mode 100644 index 0000000..2ab8108 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_share_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_share_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_share_white_48dp.png new file mode 100644 index 0000000..3d4f6e9 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_share_white_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_style_black_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_style_black_48dp.png new file mode 100644 index 0000000..8e57270 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_style_black_48dp.png differ diff --git a/mobile/src/main/res/drawable-xxxhdpi/ic_style_white_48dp.png b/mobile/src/main/res/drawable-xxxhdpi/ic_style_white_48dp.png new file mode 100644 index 0000000..3f36552 Binary files /dev/null and b/mobile/src/main/res/drawable-xxxhdpi/ic_style_white_48dp.png differ diff --git a/mobile/src/main/res/drawable/ic_launcher_background.xml b/mobile/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..d5fccc5 --- /dev/null +++ b/mobile/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/mobile/src/main/res/drawable/ic_search_black_24dp.xml b/mobile/src/main/res/drawable/ic_search_black_24dp.xml new file mode 100644 index 0000000..affc7ba --- /dev/null +++ b/mobile/src/main/res/drawable/ic_search_black_24dp.xml @@ -0,0 +1,9 @@ + + + diff --git a/mobile/src/main/res/drawable/ic_send_black_48px.xml b/mobile/src/main/res/drawable/ic_send_black_48px.xml new file mode 100644 index 0000000..8dad5ab --- /dev/null +++ b/mobile/src/main/res/drawable/ic_send_black_48px.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/mobile/src/main/res/drawable/ic_send_white_48px.xml b/mobile/src/main/res/drawable/ic_send_white_48px.xml new file mode 100644 index 0000000..5d4ddd7 --- /dev/null +++ b/mobile/src/main/res/drawable/ic_send_white_48px.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/mobile/src/main/res/drawable/material_bg.xml b/mobile/src/main/res/drawable/material_bg.xml new file mode 100644 index 0000000..dce3235 --- /dev/null +++ b/mobile/src/main/res/drawable/material_bg.xml @@ -0,0 +1,20 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/mobile/src/main/res/drawable/roundcorner.xml b/mobile/src/main/res/drawable/roundcorner.xml new file mode 100644 index 0000000..997b04f --- /dev/null +++ b/mobile/src/main/res/drawable/roundcorner.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/mobile/src/main/res/layout/activity_login.xml b/mobile/src/main/res/layout/activity_login.xml new file mode 100644 index 0000000..b698cc0 --- /dev/null +++ b/mobile/src/main/res/layout/activity_login.xml @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +