Adding app module
This commit is contained in:
@@ -0,0 +1 @@
|
||||
/build
|
||||
@@ -0,0 +1,11 @@
|
||||
plugins {
|
||||
id("com.android.library")
|
||||
id("kotlin-android")
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdk = Apps.compileSdk
|
||||
defaultConfig {
|
||||
minSdk = Apps.minSdk
|
||||
}
|
||||
}
|
||||
Vendored
+21
@@ -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
|
||||
@@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest package="org.zxconnect.android.beserve.i18n">
|
||||
|
||||
</manifest>
|
||||
@@ -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>
|
||||
@@ -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>
|
||||
Reference in New Issue
Block a user