Adding app module

This commit is contained in:
2021-08-16 13:02:40 +02:00
parent 47a711a371
commit 15cb292af2
22 changed files with 351 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
/build
+11
View File
@@ -0,0 +1,11 @@
plugins {
id("com.android.library")
id("kotlin-android")
}
android {
compileSdk = Apps.compileSdk
defaultConfig {
minSdk = Apps.minSdk
}
}
View File
+21
View File
@@ -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.kts.
#
# 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
+4
View File
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="org.zxconnect.android.beserve.i18n">
</manifest>
+37
View File
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="notification_tabs">
<item>Commandes</item>
<item>Tout</item>
</string-array>
<string-array name="notification_channel_names">
<item>Nouveau fournisseur</item>
<item>Promotions</item>
<item>Commandes</item>
<item>Nouvelle mise à jour</item>
<item>Globale</item>
</string-array>
<string-array name="notification_channel_ids">
<item>stores</item>
<item>products</item>
<item>orders</item>
<item>global</item>
<item>default</item>
</string-array>
<string-array name="notification_channel_descriptions">
<item>Être notifié lorsqu\'un nouveau fournisseur est disponible sur Be Served.</item>
<item>Être notifié lorsqu\'il y a de nouvelles promotions.</item>
<item>Être notifié lorsque l\'état de votre commande change.</item>
<item>Être notifié lorsqu\'une nouvelle version de l\'application est disponible.</item>
<item>Autres notifications.</item>
</string-array>
<string-array name="history_items">
<item>En cours</item>
<item>Refusée</item>
<item>Historique</item>
</string-array>
</resources>
+7
View File
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Study case</string>
<string name="app_channel_name">Be Served Channel</string>
</resources>