///|
/// Root .gitignore
fn gitignore() -> String {
(
#|*.iml
#|.gradle
#|/local.properties
#|.idea/
#|.DS_Store
#|/build
#|/captures
#|.externalNativeBuild
#|.cxx
#|local.properties
#|_build/
#|.mooncakes/
#|*.jks
)
}
///|
/// app/proguard-rules.pro
fn proguard_rules() -> String {
(
#|# 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
)
}
///|
/// res/values/colors.xml
fn colors_xml() -> String {
(
#|
#|
#| #FFBB86FC
#| #FF6200EE
#| #FF3700B3
#| #FF03DAC5
#| #FF018786
#| #FF000000
#| #FFFFFFFF
#|
)
}
///|
/// res/xml/backup_rules.xml
fn backup_rules_xml() -> String {
(
#|
#|
#|
#|
)
}
///|
/// res/xml/data_extraction_rules.xml
fn data_extraction_rules_xml() -> String {
(
#|
#|
#|
#|
#|
#|
#|
)
}
///|
/// res/drawable/ic_launcher_background.xml
fn ic_launcher_background_xml() -> String {
(
#|
#|
#|
#|
)
}
///|
/// res/drawable/ic_launcher_foreground.xml
fn ic_launcher_foreground_xml() -> String {
(
#|
#|
#|
#|
#|
#|
#|
#|
#|
#|
#|
#|
)
}
///|
/// res/mipmap-anydpi/ic_launcher.xml
fn ic_launcher_xml() -> String {
(
#|
#|
#|
#|
#|
#|
)
}
///|
/// res/mipmap-anydpi/ic_launcher_round.xml
fn ic_launcher_round_xml() -> String {
(
#|
#|
#|
#|
#|
#|
)
}